:root {
  --ink: #17211f;
  --muted: #5c6b66;
  --paper: #fbfbf7;
  --surface: #ffffff;
  --line: #dce5df;
  --teal: #0f766e;
  --teal-dark: #0b4d49;
  --coral: #d45d44;
  --gold: #bd9655;
  --sky: #d9edf2;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif,
    "Noto Sans", "Noto Sans CJK SC";
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(251, 251, 247, 0.94);
  box-shadow: 0 12px 30px rgba(23, 33, 31, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .language-switcher,
.site-header.menu-open .language-switcher {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.language-switcher button {
  min-width: 42px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: #ffffff;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 72svh;
  overflow: hidden;
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 29, 28, 0.74), rgba(8, 29, 28, 0.3) 54%, rgba(8, 29, 28, 0.08)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2400&q=85")
      center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 86px;
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7c88f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 126px;
  padding: 28px clamp(18px, 4vw, 46px);
  background: var(--surface);
}

.trust-strip strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.trust-strip span {
  display: block;
  max-width: 30ch;
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(70px, 9vw, 124px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.prose p,
.section-heading p,
.contact-layout > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.prose p + p {
  margin-top: 18px;
}

.commitments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.commitments span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--teal-dark);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.section-process,
.section-pricing {
  background: #eef6f2;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading p:last-child {
  margin-top: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.price-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(23, 33, 31, 0.07);
}

.steps article {
  min-height: 252px;
  padding: 28px;
}

.steps span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.steps p,
.review-content p,
.price-card p,
.flight-list p {
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  overflow: hidden;
}

.review-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-content {
  padding: 24px;
}

.review-content p:last-child {
  margin-bottom: 0;
}

.section-flights {
  background: #ffffff;
}

.flight-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.flight-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.flight-list {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 52px);
}

.flight-list article + article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  min-height: 314px;
  padding: 28px;
}

.featured-price {
  border-color: rgba(15, 118, 110, 0.55);
  box-shadow: 0 20px 60px rgba(15, 118, 110, 0.16);
}

.price {
  margin: 22px 0;
  color: var(--teal-dark) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 900;
}

.section-contact {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(212, 93, 68, 0.08)),
    var(--paper);
}

.contact-details {
  margin-top: 28px;
  color: var(--muted);
}

.contact-details p {
  margin: 8px 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.two-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8d2;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.form-submit {
  width: fit-content;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  padding: 28px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .language-switcher {
    justify-self: end;
  }

  .two-column,
  .contact-layout,
  .flight-panel {
    grid-template-columns: 1fr;
  }

  .steps,
  .review-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .flight-panel img {
    min-height: 340px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .site-nav {
    top: 68px;
  }

  .language-switcher button {
    min-width: 36px;
    height: 30px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding-top: 78px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.3rem);
  }

  .hero-actions,
  .button,
  .form-submit {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
  }

  .section {
    padding: 62px 0;
  }

  .two-fields {
    grid-template-columns: 1fr;
  }

  .steps article,
  .price-card,
  .review-content,
  .contact-form {
    padding: 22px;
  }
}
