/* =================================================================
   VOYA TRAVEL — Cinematic editorial design system
   Palette: warm ivory · deep ocean teal · midnight navy · sunlit gold
   Type:    Zodiak (display serif) + Satoshi (UI sans, Fontshare)
   ================================================================= */

:root {
  /* color */
  --ivory:        #F4EFE6;   /* page bg */
  --ivory-2:      #EDE6D8;   /* alt surface */
  --paper:        #FBF8F1;   /* card surface */
  --ink:          #1A2530;   /* primary text */
  --ink-muted:    #5C6873;   /* secondary text */
  --ink-faint:    #97A1AB;   /* tertiary */
  --hairline:     #DDD3C1;   /* dividers */
  --hairline-2:   #C8BDA8;
  --teal:         #0F5B66;   /* ocean teal */
  --teal-deep:    #0A3F47;
  --teal-soft:    #E1ECEC;
  --navy:         #0B1F2A;   /* midnight navy */
  --navy-2:       #122A38;
  --gold:         #C99344;   /* sunlit gold */
  --gold-soft:    #E8C079;
  --success:      #4F7A4D;
  --error:        #9C3B2E;

  /* type */
  --font-display: 'Zodiak', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-eyebrow: 0.78rem;   /* 12.5px */
  --fs-body:    1.0625rem; /* 17px */
  --fs-lede:    1.1875rem; /* 19px */
  --fs-h3:      1.5rem;    /* 24px */
  --fs-h2:      clamp(2rem, 4.2vw, 3.5rem);
  --fs-hero:    clamp(2.6rem, 7vw, 5.75rem);

  /* spacing */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.25rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);

  /* radii / shadow */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-soft: 0 12px 40px -16px rgba(11,31,42,.18), 0 2px 8px -2px rgba(11,31,42,.06);
  --shadow-lift: 0 24px 60px -20px rgba(11,31,42,.32);

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv01';
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
fieldset, legend { border: 0; padding: 0; }
input, select { font: inherit; color: inherit; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--paper);
  padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.012em; line-height: 1.08; }
h3 { font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -0.01em; }
h4 { font-family: var(--font-body); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-muted); margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow-light { color: var(--gold-soft); }
.eyebrow::before {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: .6;
}

.section-title { font-size: var(--fs-h2); margin: .75rem 0 1.25rem; max-width: 22ch; overflow-wrap: break-word; }
.section-title-light { color: var(--paper); }
.section-lede { font-size: var(--fs-lede); color: var(--ink-muted); max-width: 58ch; }
.section-lede-light { color: rgba(244,239,230,.78); }

.text-link {
  font-family: var(--font-body);
  font-weight: 600; font-size: .95rem;
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s var(--ease);
}
.text-link:hover { color: var(--teal-deep); }

.muted { color: var(--ink-muted); }

/* ---------- buttons ---------- */
.primary-btn,
.ghost-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  border-radius: 999px;
  letter-spacing: -.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.primary-btn {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 18px -8px rgba(11,31,42,.45);
}
.primary-btn:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 14px 32px -12px rgba(11,31,42,.55); }
.primary-btn-lg { padding: 1.05rem 1.8rem; font-size: 1rem; }
.primary-btn-sm { padding: .65rem 1.1rem; font-size: .85rem; min-height: 38px; }
.primary-btn-gold { background: var(--gold); color: var(--navy); }
.primary-btn-gold:hover { background: var(--gold-soft); }

.ghost-btn {
  background: transparent; color: var(--ink);
  border: 1px solid var(--hairline-2);
}
.ghost-btn:hover { border-color: var(--ink); background: var(--paper); }
.ghost-btn-lg { padding: 1.05rem 1.8rem; font-size: 1rem; }
.ghost-btn-sm { padding: .55rem 1rem; font-size: .85rem; min-height: 38px; }
.ghost-btn-light { color: var(--paper); border-color: rgba(244,239,230,.45); }
.ghost-btn-light:hover { background: rgba(244,239,230,.08); border-color: var(--paper); }
.ghost-btn-dark { color: var(--ink); border-color: var(--ink); }
.ghost-btn-dark:hover { background: var(--ink); color: var(--paper); }

.icon-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .85rem; font-size: .85rem; font-weight: 500;
  color: inherit; border-radius: 999px;
  min-height: 38px;
}
.icon-btn:hover { background: rgba(255,255,255,.12); }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  color: var(--paper);
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header[data-state="solid"] {
  background: rgba(244,239,230,.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  color: var(--ink);
  border-bottom-color: var(--hairline);
  box-shadow: 0 4px 24px -16px rgba(11,31,42,.2);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: inherit;
}
.brand-mark { color: inherit; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -.01em;
}

.primary-nav ul { display: flex; gap: 2rem; justify-content: center; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .94rem; font-weight: 500;
  padding: .5rem 0;
  color: inherit;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover::after, .nav-link[aria-expanded="true"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-actions .ghost-btn,
.header-actions .icon-btn { color: inherit; border-color: currentColor; }
.site-header[data-state="transparent"] .header-actions .ghost-btn { border-color: rgba(244,239,230,.45); }
.site-header[data-state="transparent"] .header-actions .ghost-btn:hover { background: rgba(244,239,230,.1); }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 .65rem;
  color: inherit;
  background: rgba(255,255,255,.05);
}
.site-header[data-state="transparent"] .lang-switcher { border-color: rgba(244,239,230,.45); }
.lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: 700 .78rem/1 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .15rem .05rem;
  cursor: pointer;
}
.lang-switcher select option {
  color: var(--ink);
  background: var(--paper);
}

.menu-btn { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-btn span { width: 22px; height: 1.5px; background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* mega menus */
.mega-panel {
  position: absolute; left: 0; right: 0; top: 76px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 2.5rem 0;
  box-shadow: 0 24px 48px -24px rgba(11,31,42,.25);
  animation: megaIn .25s var(--ease);
}
@keyframes megaIn { from { opacity: 0; transform: translateY(-6px); } }
.mega-grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 3rem; align-items: start;
}
.mega-feature { border-radius: var(--r-md); overflow: hidden; background: var(--ivory); }
.mega-feature-image { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.mega-feature-body { padding: 1.25rem 1.5rem 1.5rem; }
.mega-feature-body h3 { font-size: 1.2rem; margin: .5rem 0 .9rem; }
.mega-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.mega-columns ul li { padding: .35rem 0; }
.mega-columns ul a { font-size: .95rem; color: var(--ink-muted); transition: color .2s; }
.mega-columns ul a:hover { color: var(--teal); }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; padding-top: 76px; padding-bottom: 7rem; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  transform: scale(1.05);
  animation: heroKen 18s ease-in-out infinite alternate;
}
.hero-slide.is-active { opacity: 1; }
@keyframes heroKen { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,42,.55) 0%, rgba(11,31,42,.05) 30%, rgba(11,31,42,.1) 60%, rgba(11,31,42,.85) 100%),
    linear-gradient(90deg, rgba(11,31,42,.55) 0%, rgba(11,31,42,0) 55%);
}

.hero-content {
  padding-top: clamp(3rem, 9vw, 6rem);
  padding-bottom: 14rem;
  color: var(--paper);
  position: relative; z-index: 2;
  max-width: 920px;
}
.hero-title {
  font-size: var(--fs-hero);
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -.02em;
  max-width: 18ch;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 52ch;
  color: rgba(244,239,230,.86);
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-trust { font-size: .9rem; color: rgba(244,239,230,.7); max-width: 52ch; }

/* hero planning panel — anchored at the bottom of the hero, overlapping into next section */
.hero-panel {
  position: absolute;
  left: 0; right: 0; bottom: -3rem;
  z-index: 3;
}
.hero-panel-inner {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: .5rem;
  align-items: end;
  box-shadow: var(--shadow-lift);
}
.hp-field {
  padding: .6rem .9rem;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: .25rem;
}
.hp-field:last-of-type { border-right: 0; }
.hp-field label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  color: var(--ink-muted);
}
.hp-field input {
  border: 0; background: transparent; font-size: .98rem; font-weight: 500;
  width: 100%; padding: .2rem 0;
}
.hp-field input::placeholder { color: var(--ink-faint); }
.hp-cta { justify-content: center; }

/* scene rail */
.scene-rail {
  position: absolute;
  right: clamp(1rem, 3vw, 2.25rem);
  top: 50%;
  transform: translateY(-40%);
  width: 270px;
  z-index: 4;
  display: flex; flex-direction: column; gap: .75rem;
}
.rail-track { position: relative; height: 200px; }
.rail-card {
  position: absolute; inset: 0;
  background: rgba(11,31,42,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(244,239,230,.18);
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0; transform: translateX(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  color: var(--paper);
}
.rail-card.is-active { opacity: 1; transform: translateX(0); }
.rail-img { background-size: cover; background-position: center; }
.rail-text { padding: .85rem 1rem; }
.rail-eyebrow {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
  color: var(--gold-soft); display: block; margin-bottom: .25rem;
}
.rail-text p { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.25; }
.rail-dots { display: flex; gap: .35rem; justify-content: flex-end; padding-right: 4px; }
.rail-dot { width: 16px; height: 2px; background: rgba(244,239,230,.4); border-radius: 0; padding: 0; }
.rail-dot.is-active { background: var(--gold-soft); }

.hero-scroll {
  position: absolute; bottom: 8rem; left: var(--gutter);
  display: flex; align-items: center; gap: .65rem;
  color: rgba(244,239,230,.6);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .18em;
  z-index: 3;
}
.scroll-line { width: 48px; height: 1px; background: currentColor; position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; left: -50%; top: 0; width: 50%; height: 100%; background: var(--gold-soft);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { left: -50%; } 100% { left: 100%; }
}

/* =================================================================
   SECTION basics
   ================================================================= */
.section { padding: var(--section-y) 0; position: relative; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.section-head-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-head-center .section-title { max-width: none; }

/* =================================================================
   AI CONCIERGE
   ================================================================= */
.concierge { background: var(--paper); padding-top: calc(var(--section-y) + 3rem); }
.concierge-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.concierge-intro .section-title { max-width: 16ch; }
.chat-mock {
  margin: 2.5rem 0;
  display: flex; flex-direction: column; gap: .75rem;
  max-width: 480px;
}
.chat-bubble {
  background: var(--ivory);
  border-radius: var(--r-md);
  padding: 1rem 1.15rem;
  border: 1px solid var(--hairline);
  position: relative;
}
.chat-user { align-self: flex-end; background: var(--ink); color: var(--paper); border-color: transparent; max-width: 80%; }
.chat-ai   { align-self: flex-start; background: var(--teal-soft); border-color: rgba(15,91,102,.12); max-width: 90%; }
.chat-human { align-self: flex-start; background: var(--paper); border-color: var(--gold-soft); max-width: 90%; }
.chat-name {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
  color: var(--ink-muted); display: block; margin-bottom: .25rem;
}
.chat-user .chat-name { color: var(--gold-soft); }
.chat-meta { font-size: .8rem; color: var(--ink-muted); margin-top: .5rem; display: inline-flex; align-items: center; gap: .4rem; }
.chat-meta .dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.concierge-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.micro-note { font-size: .85rem; color: var(--ink-muted); margin-top: 1.25rem; max-width: 46ch; }

/* workflow steps */
.workflow {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0;
}
.workflow-line {
  position: absolute;
  left: 27px; top: 2.5rem; bottom: 2.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--hairline), transparent 30%, var(--hairline) 60%, transparent);
}
.step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.step-num {
  position: absolute; left: 1.25rem; top: 1.5rem;
  width: 32px; height: 32px;
  background: var(--ink); color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: 0;
  z-index: 1;
}
.step h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.step p { font-size: .98rem; color: var(--ink-muted); }

/* =================================================================
   DESTINATION GRID
   ================================================================= */
.destinations { background: var(--ivory); }
.filter-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip {
  padding: .5rem 1rem;
  font-size: .85rem; font-weight: 500;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-muted);
  min-height: 36px;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.dest-feature { grid-row: span 2; }
.dest-img {
  flex: 1;
  background-size: cover; background-position: center;
  min-height: 200px;
  transition: transform 1.2s var(--ease);
}
.dest-card:hover .dest-img { transform: scale(1.035); }
.dest-feature .dest-img { min-height: 360px; }
.save-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 38px; height: 38px;
  background: rgba(244,239,230,.92); color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
  transition: background .2s, color .2s;
}
.save-btn:hover { background: var(--ink); color: var(--paper); }

.dest-body { padding: 1.1rem 1.25rem 1.35rem; }
.dest-feature .dest-body { padding: 1.5rem 1.75rem 1.75rem; }
.dest-meta {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-muted); font-weight: 600;
  display: block; margin-bottom: .5rem;
}
.dest-meta.gold { color: var(--gold); }
.dest-card h3 { font-size: 1.15rem; line-height: 1.25; }
.dest-feature h3 { font-size: 1.65rem; line-height: 1.15; max-width: 22ch; }
.dest-body p { font-size: .95rem; color: var(--ink-muted); margin-top: .5rem; }
.dest-foot {
  margin-top: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-top: .9rem; border-top: 1px solid var(--hairline);
}
.price { font-size: .85rem; color: var(--ink-muted); }
.price strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* =================================================================
   TOURS
   ================================================================= */
.tours { background: var(--paper); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tour-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tour-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.tour-wide { grid-column: span 2; flex-direction: row; }
.tour-wide .tour-img { width: 50%; min-height: 360px; }
.tour-wide .tour-body { flex: 1; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.tour-img {
  background-size: cover; background-position: center;
  min-height: 240px;
  transition: transform 1.2s var(--ease);
}
.tour-card:hover .tour-img { transform: scale(1.035); }
.tour-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  z-index: 2;
}
.tour-body { padding: 1.25rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.tour-card h3 { font-size: 1.25rem; line-height: 1.2; margin: .25rem 0 .85rem; }
.tour-wide h3 { font-size: 1.85rem; line-height: 1.15; max-width: 22ch; }
.tour-stats {
  display: flex; flex-wrap: wrap; gap: 1rem 1.4rem;
  margin: .5rem 0 1.25rem;
  padding: .85rem 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.tour-stats li {
  font-size: .78rem; color: var(--ink-muted); display: flex; flex-direction: column; gap: .15rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.tour-stats strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em; text-transform: none; }
.tour-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}

.tour-ai {
  background: var(--navy);
  color: var(--paper);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.tour-ai-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,147,68,.25), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(15,91,102,.4), transparent 50%);
  z-index: 0;
}
.tour-ai .tour-body { position: relative; z-index: 1; justify-content: center; padding: 2rem; gap: 1rem; }
.tour-ai h3 { font-size: 1.6rem; max-width: 14ch; }
.tour-ai p { color: rgba(244,239,230,.8); font-size: .98rem; margin-bottom: .5rem; }

/* =================================================================
   TRIP BUILDER
   ================================================================= */
.builder { background: var(--navy); color: var(--paper); position: relative; overflow: hidden; }
.builder::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px circle at 100% 0%, rgba(15,91,102,.45), transparent 60%),
    radial-gradient(600px circle at 0% 100%, rgba(201,147,68,.18), transparent 60%);
  pointer-events: none;
}
.builder-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.builder-card {
  background: rgba(244,239,230,.05);
  border: 1px solid rgba(244,239,230,.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.builder-inputs { display: flex; flex-direction: column; gap: 1.5rem; }
.builder-inputs legend {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
  color: var(--gold-soft); margin-bottom: .65rem;
}
.builder-inputs .chip {
  background: rgba(244,239,230,.06); border-color: rgba(244,239,230,.18); color: rgba(244,239,230,.8);
}
.builder-inputs .chip:hover { border-color: var(--gold-soft); color: var(--paper); }
.builder-inputs .chip.is-active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.slider-wrap { display: flex; align-items: center; gap: 1rem; }
.slider-wrap input { flex: 1; accent-color: var(--gold); }
.slider-wrap output { font-family: var(--font-display); font-size: 1.4rem; min-width: 80px; }

.builder-output {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.builder-output h3 { font-size: 1.45rem; margin-top: .25rem; }
.match-list { display: flex; flex-direction: column; gap: .5rem; margin: 1rem 0; }
.match-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; border-bottom: 1px solid var(--hairline);
  font-size: .92rem;
}
.match-list li:last-child { border-bottom: 0; }
.match-list span { color: var(--ink-muted); }
.match-list strong { font-weight: 600; font-variant-numeric: tabular-nums; }

/* =================================================================
   TRUST
   ================================================================= */
.trust { background: var(--ivory); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.trust-card {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .65rem;
  min-height: 200px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.trust-num {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--gold);
  line-height: 1; letter-spacing: -.02em;
}
.trust-card h3 { font-size: 1.3rem; }
.trust-card p { color: var(--ink-muted); font-size: .95rem; }
.trust-cta {
  background: var(--ink); color: var(--paper);
  justify-content: center;
}
.trust-cta h3 { color: var(--paper); font-size: 1.4rem; max-width: 14ch; }
.trust-cta .ghost-btn { color: var(--paper); border-color: rgba(244,239,230,.4); align-self: flex-start; }
.trust-cta .ghost-btn:hover { background: var(--paper); color: var(--ink); }

/* =================================================================
   STORIES
   ================================================================= */
.stories { background: var(--paper); }
.stories-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}
.story-feature {
  position: relative;
  border-radius: var(--r-md); overflow: hidden;
  min-height: 540px;
  isolation: isolate;
  color: var(--paper);
}
.story-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
}
.story-feature::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,42,0) 30%, rgba(11,31,42,.88) 100%);
  z-index: -1;
}
.story-quote { padding: 2.5rem; margin-top: auto; position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.quote-mark { color: var(--gold-soft); margin-bottom: 1rem; }
.story-quote blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.3; max-width: 28ch; }
.story-quote blockquote em { color: var(--gold-soft); font-style: italic; }
.story-byline { display: flex; flex-wrap: wrap; gap: .25rem 1rem; margin-top: 1.5rem; align-items: baseline; }
.story-byline strong { font-weight: 600; }
.story-byline span { font-size: .85rem; opacity: .8; }
.rating { color: var(--gold-soft); letter-spacing: .15em; }

.story-list { display: flex; flex-direction: column; gap: 1.25rem; }
.story-card {
  background: var(--ivory); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 1.5rem 1.6rem;
  flex: 1;
  display: flex; flex-direction: column; gap: .55rem;
}
.story-before { font-size: .9rem; color: var(--ink-muted); }
.story-card .story-byline { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--hairline); color: var(--ink); }
.story-card .rating { color: var(--gold); }

/* =================================================================
   JOURNAL
   ================================================================= */
.journal { background: var(--ivory); }
.journal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.journal-card {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.journal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.journal-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.journal-body { padding: 1.25rem 1.4rem 1.5rem; }
.journal-body h3 { font-size: 1.1rem; line-height: 1.3; margin-top: .5rem; }
.journal-inline-cta {
  background: var(--ink); color: var(--paper); border-color: transparent;
  padding: 1.75rem;
  justify-content: center; gap: 1rem;
}
.journal-inline-cta h3 { color: var(--paper); font-size: 1.25rem; }
.journal-inline-cta .ghost-btn { color: var(--paper); border-color: rgba(244,239,230,.45); align-self: flex-start; }
.journal-inline-cta .ghost-btn:hover { background: var(--paper); color: var(--ink); }

/* =================================================================
   FINAL CTA
   ================================================================= */
.final-cta { position: relative; isolation: isolate; color: var(--paper); padding: clamp(6rem, 11vw, 9rem) 0; text-align: center; overflow: hidden; }
.final-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.final-cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,31,42,.8) 0%, rgba(11,31,42,.92) 100%);
}
.final-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; max-width: 760px; margin: 0 auto; }
.final-inner .section-title { max-width: 18ch; }
.final-input {
  margin-top: 1rem;
  display: flex; gap: .5rem;
  width: 100%;
  background: rgba(244,239,230,.08);
  border: 1px solid rgba(244,239,230,.2);
  border-radius: 999px;
  padding: .35rem .35rem .35rem 1.5rem;
  backdrop-filter: blur(8px);
}
.final-input input {
  flex: 1; border: 0; background: transparent;
  color: var(--paper); font-size: 1rem; padding: .85rem 0;
}
.final-input input::placeholder { color: rgba(244,239,230,.55); }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--navy); color: var(--paper); padding: clamp(3.5rem, 7vw, 5rem) 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244,239,230,.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; max-width: 320px; }
.brand-footer { color: var(--paper); }
.footer-tag { color: rgba(244,239,230,.7); font-size: .95rem; }
.site-footer h4 { color: var(--gold-soft); }
.site-footer ul { display: flex; flex-direction: column; gap: .5rem; }
.site-footer ul a { font-size: .92rem; color: rgba(244,239,230,.75); transition: color .2s; }
.site-footer ul a:hover { color: var(--paper); }

.footer-trust {
  padding: 1.5rem 0; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1rem; font-size: .85rem; color: rgba(244,239,230,.6);
  border-bottom: 1px solid rgba(244,239,230,.12);
}
.footer-base {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: rgba(244,239,230,.6);
}
.footer-base ul { display: flex; gap: 1.25rem; }

/* =================================================================
   MOBILE STICKY BAR & DRAWER
   ================================================================= */
.mobile-sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(244,239,230,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  padding: .75rem var(--gutter) calc(.75rem + env(safe-area-inset-bottom));
  gap: .5rem;
  justify-content: stretch;
}
.mobile-sticky .primary-btn,
.mobile-sticky .ghost-btn { flex: 1; justify-content: center; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(90vw, 380px);
  max-width: 100vw;
  z-index: 80;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform .35s var(--ease);
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.drawer-inner { padding: 1.25rem; height: 100%; display: flex; flex-direction: column; gap: 1.5rem; overflow-y: auto; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; }
.drawer-search {
  display: flex; align-items: center; gap: .55rem;
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: .65rem 1rem;
}
.drawer-search input { border: 0; background: transparent; width: 100%; }
.drawer-nav { display: flex; flex-direction: column; gap: .15rem; }
.drawer-nav a {
  padding: 1rem 0; font-family: var(--font-display); font-size: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}
.drawer-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.drawer-chips span {
  padding: .4rem .85rem; border: 1px solid var(--hairline);
  border-radius: 999px; font-size: .85rem; color: var(--ink-muted);
}
.drawer-contact { margin-top: auto; padding: 1.25rem; background: var(--ivory); border-radius: var(--r-md); }
.drawer-scrim { position: fixed; inset: 0; background: rgba(11,31,42,.4); z-index: 70; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
  .hero-panel-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: .25rem; }
  .hp-field { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .hp-field:nth-last-child(2) { border-bottom: 0; }
  .hp-cta { grid-column: span 2; margin-top: .5rem; }
  .scene-rail { display: none; }
  .concierge-grid { grid-template-columns: 1fr; }
  .tour-wide { flex-direction: column; grid-column: span 1; }
  .tour-wide .tour-img { width: 100%; min-height: 240px; }
  .builder-card { grid-template-columns: 1fr; }
  .builder-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 880px) {
  .primary-nav { display: none; }
  .header-actions .icon-btn,
  .header-actions .ghost-btn,
  .header-actions .primary-btn { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-sticky { display: flex; }

  .hero-content { padding-bottom: 12rem; }
  .hero-title { letter-spacing: -.015em; }
  .hero-panel { bottom: -2rem; }
  .hero-panel-inner { padding: .8rem; }
  .hero-scroll { display: none; }
  .hero { padding-bottom: 5rem; }

  .section-head { flex-direction: column; align-items: start; gap: 1rem; }
  .filter-row { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); -webkit-overflow-scrolling: touch; max-width: 100vw; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-row .chip { flex-shrink: 0; }

  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .dest-feature { grid-row: span 1; }
  .dest-feature .dest-img { min-height: 280px; }
  .tours-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-feature { min-height: 420px; }
  .journal-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-base { flex-direction: column; align-items: start; }

  body { padding-bottom: 80px; }

  .final-input { flex-direction: column; border-radius: var(--r-md); padding: .85rem; }
  .final-input input { padding: .65rem .35rem; }
  .final-input .primary-btn { justify-content: center; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero-panel-inner { grid-template-columns: 1fr; }
  .hp-field { border-bottom: 1px solid var(--hairline); }
  .hp-cta { grid-column: span 1; }
  .mega-panel { display: none !important; }

  .chat-user, .chat-ai, .chat-human { max-width: 95%; }
  .builder-card { padding: 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide { animation: none; }
}

/* =================================================================
   SHARED PAGE COMPONENTS (added in multi-page expansion)
   - sub-hero for inner pages
   - search/filter bars
   - region tabs
   - itinerary accordion
   - route map visual
   - sticky booking panel
   - inclusions / exclusions / FAQs / add-ons
   - concierge workflow steps & progress
   ================================================================= */

/* ---------- Sub-hero (inner pages) ---------- */
.subhero {
  position: relative;
  min-height: 64vh;
  padding: calc(76px + 4rem) 0 4rem;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.subhero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroKen 22s ease-in-out infinite alternate;
}
.subhero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,31,42,.55) 0%, rgba(11,31,42,.2) 35%, rgba(11,31,42,.85) 100%),
    linear-gradient(90deg, rgba(11,31,42,.65) 0%, rgba(11,31,42,0) 50%);
}
.subhero-inner { max-width: 760px; }
.subhero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 1rem 0 1.25rem;
}
.subhero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(244,239,230,.85);
  max-width: 56ch;
}
.subhero .eyebrow-light::before { background: var(--gold-soft); opacity: 1; }
.crumb {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(244,239,230,.65); font-weight: 600;
}
.crumb a { color: inherit; text-decoration: none; transition: color .2s; }
.crumb a:hover { color: var(--gold-soft); }
.crumb svg { opacity: .6; }

/* ---------- Search / Filter bar ---------- */
.search-bar {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  padding: .9rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: .25rem;
  align-items: center;
  position: relative;
  z-index: 5;
}
.search-bar.is-floating { margin-top: -3.5rem; }
.search-field {
  padding: .55rem 1rem;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: .15rem;
  min-width: 0;
}
.search-field:last-of-type { border-right: 0; }
.search-field label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  color: var(--ink-muted);
}
.search-field input,
.search-field select {
  border: 0; background: transparent; font-size: .98rem; font-weight: 500;
  padding: .25rem 0; width: 100%;
  appearance: none; -webkit-appearance: none;
  background-image: none;
}
.search-cta { justify-content: center; }

/* ---------- Region tabs ---------- */
.region-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--hairline);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 2.5rem;
}
.region-tabs::-webkit-scrollbar { display: none; }
.region-tab {
  padding: 1rem 1.4rem;
  font-size: .92rem; font-weight: 500;
  color: var(--ink-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.region-tab:hover { color: var(--ink); }
.region-tab.is-active { color: var(--ink); border-bottom-color: var(--gold); }
.region-tab .count {
  margin-left: .35rem; font-size: .72rem; color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

/* ---------- Featured Seasonal Destination ---------- */
.seasonal {
  position: relative;
  display: grid; grid-template-columns: 1.2fr 1fr;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--navy); color: var(--paper);
  min-height: 460px;
  isolation: isolate;
  margin-bottom: 4rem;
}
.seasonal-img {
  background-size: cover; background-position: center;
  position: relative;
}
.seasonal-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(11,31,42,.7) 100%);
}
.seasonal-body { padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.seasonal-body h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); max-width: 18ch; }
.seasonal-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid rgba(244,239,230,.18);
  border-bottom: 1px solid rgba(244,239,230,.18);
  margin: .5rem 0 1.5rem;
}
.seasonal-meta li {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(244,239,230,.65); display: flex; flex-direction: column; gap: .2rem;
}
.seasonal-meta strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--paper); letter-spacing: -.01em; text-transform: none; }
.seasonal-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- Generic card grid (used on multiple pages) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Map / Explorer module ---------- */
.explorer {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;
  margin: 4rem 0;
}
.explorer::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px circle at 80% 20%, rgba(15,91,102,.6), transparent 60%),
    radial-gradient(700px circle at 20% 100%, rgba(201,147,68,.18), transparent 60%);
  z-index: -1;
}
.explorer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; }
.explorer h2 { color: var(--paper); font-size: clamp(1.75rem, 3vw, 2.4rem); max-width: 18ch; }
.explorer p { color: rgba(244,239,230,.78); max-width: 42ch; margin: 1rem 0 1.5rem; }
.world-map {
  position: relative; aspect-ratio: 16/10;
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 30% 40%, rgba(15,91,102,.4), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(201,147,68,.18), transparent 35%),
    linear-gradient(135deg, rgba(244,239,230,.04), rgba(244,239,230,.02));
  border: 1px solid rgba(244,239,230,.1);
  overflow: hidden;
}
.world-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 2px solid var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(201,147,68,.5);
  animation: pinPulse 2.4s ease-in-out infinite;
  cursor: pointer;
}
.map-pin::after {
  content: attr(data-label);
  position: absolute; left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: var(--paper); color: var(--navy);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: .25rem .55rem; border-radius: 4px;
  white-space: nowrap;
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.map-pin:hover::after, .map-pin:focus::after { opacity: 1; }
@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(201,147,68,.5); }
  70% { box-shadow: 0 0 0 12px rgba(201,147,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,147,68,0); }
}

/* ---------- Editorial guides ---------- */
.guides-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.guide-card {
  position: relative;
  border-radius: var(--r-md); overflow: hidden;
  min-height: 420px; isolation: isolate;
  color: var(--paper);
  transition: transform .4s var(--ease);
}
.guide-card:hover { transform: translateY(-4px); }
.guide-img { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); }
.guide-card:hover .guide-img { transform: scale(1.04); }
.guide-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,31,42,0) 30%, rgba(11,31,42,.85) 100%);
}
.guide-body { padding: 1.75rem; position: absolute; bottom: 0; left: 0; right: 0; }
.guide-body .eyebrow { color: var(--gold-soft); }
.guide-body .eyebrow::before { background: var(--gold-soft); }
.guide-body h3 { font-size: 1.45rem; color: var(--paper); max-width: 20ch; margin-top: .5rem; }
.guide-body p { color: rgba(244,239,230,.78); font-size: .92rem; margin-top: .5rem; max-width: 32ch; }

/* ---------- Concierge workflow page ---------- */
.conc-page .section { padding: var(--section-y) 0; }
.conc-progress {
  position: sticky; top: 90px; z-index: 10;
  background: rgba(244,239,230,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.conc-progress-inner {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.conc-progress-inner::-webkit-scrollbar { display: none; }
.conc-pip {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 600;
  color: var(--ink-faint);
  white-space: nowrap;
  flex-shrink: 0;
}
.conc-pip .pip-num {
  width: 26px; height: 26px;
  background: transparent; border: 1px solid var(--hairline-2); color: var(--ink-faint);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700;
  flex-shrink: 0;
}
.conc-pip.is-done .pip-num { background: var(--success); color: var(--paper); border-color: var(--success); }
.conc-pip.is-active { color: var(--ink); }
.conc-pip.is-active .pip-num { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.conc-pip + .conc-pip::before {
  content: ''; width: 24px; height: 1px; background: var(--hairline-2);
  display: inline-block;
}

.conc-step {
  scroll-margin-top: 160px;
  padding: 4rem 0;
  border-bottom: 1px solid var(--hairline);
}
.conc-step:last-of-type { border-bottom: 0; }
.conc-step-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.conc-step-num {
  font-family: var(--font-display); font-size: 4.5rem;
  color: var(--gold); line-height: 1;
  letter-spacing: -.02em;
}
.conc-step h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: .5rem 0 1rem; max-width: 16ch; }
.conc-step .section-lede { max-width: 42ch; }

.conc-form {
  display: flex; flex-direction: column; gap: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.field-block { display: flex; flex-direction: column; gap: .75rem; }
.field-block legend, .field-label {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 600; color: var(--ink-muted);
}
.field-input {
  border: 1px solid var(--hairline);
  background: var(--ivory);
  border-radius: var(--r-md);
  padding: .85rem 1.1rem;
  font-size: 1rem; font-weight: 500;
  width: 100%;
}
.field-input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
textarea.field-input { resize: vertical; min-height: 120px; line-height: 1.5; }

.mood-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
}
.mood-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--hairline);
  isolation: isolate;
  color: var(--paper);
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.mood-tile:hover, .mood-tile.is-active { border-color: var(--gold); transform: translateY(-2px); }
.mood-tile-img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.mood-tile::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,31,42,.1) 30%, rgba(11,31,42,.85) 100%);
}
.mood-tile span {
  position: absolute; bottom: .65rem; left: .8rem;
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 500;
}
.mood-tile.is-active::after {
  content: '✓';
  position: absolute; top: .5rem; right: .5rem;
  width: 22px; height: 22px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }

.date-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .25rem; }
.date-pill {
  padding: .65rem 1rem;
  background: var(--ivory); border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: .88rem; font-weight: 500;
  display: flex; flex-direction: column; gap: .15rem;
  text-align: left;
  min-width: 140px;
  transition: border-color .2s, background .2s;
}
.date-pill:hover { border-color: var(--ink); }
.date-pill small { font-size: .72rem; color: var(--ink-muted); font-weight: 500; }

/* counter input */
.counter {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--hairline);
  background: var(--ivory);
  border-radius: var(--r-md);
  padding: .5rem .75rem;
  gap: .5rem;
}
.counter-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--hairline-2);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
  font-size: 1.1rem; line-height: 1;
  transition: background .2s;
}
.counter-btn:hover { background: var(--ink); color: var(--paper); }
.counter-val { font-family: var(--font-display); font-size: 1.4rem; min-width: 40px; text-align: center; font-variant-numeric: tabular-nums; }
.counter-label { font-size: .85rem; color: var(--ink-muted); }

/* priority drag list */
.priority-list { display: flex; flex-direction: column; gap: .5rem; }
.priority-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 1rem;
  background: var(--ivory); border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  cursor: grab;
  transition: border-color .2s, background .2s;
}
.priority-item:hover { border-color: var(--ink); }
.priority-rank {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--gold); min-width: 24px;
}
.priority-handle { color: var(--ink-faint); margin-left: auto; cursor: grab; }

/* itinerary preview card */
.itin-preview {
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.itin-preview-head {
  display: flex; justify-content: space-between; align-items: start;
  gap: 1.5rem; flex-wrap: wrap;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--hairline);
}
.itin-preview-head h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); max-width: 22ch; }
.itin-score {
  text-align: right; padding: 1rem 1.25rem;
  background: var(--paper); border: 1px solid var(--gold-soft);
  border-radius: var(--r-md);
  min-width: 160px;
}
.itin-score-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.itin-score small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-muted); margin-top: .25rem; }

.itin-days { display: grid; gap: .75rem; margin: 2rem 0; }
.itin-day {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
}
.itin-day:last-child { border: 0; }
.itin-day-label {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--ink-muted);
}
.itin-day-label strong { display: block; color: var(--ink); font-size: 1.6rem; line-height: 1; }
.itin-day-body h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--ink); text-transform: none; letter-spacing: -.01em; margin-bottom: .35rem; }
.itin-day-body p { font-size: .95rem; color: var(--ink-muted); }

.itin-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--hairline);
}

/* handoff form */
.handoff-form .field-row { gap: 1rem; }
.handoff-form .checklist {
  display: flex; flex-direction: column; gap: .65rem;
  margin-top: .5rem;
}
.handoff-form .checklist label {
  display: flex; align-items: center; gap: .65rem;
  font-size: .92rem;
  padding: .55rem 0;
}
.handoff-form input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
}

/* =================================================================
   TOUR DETAIL PAGE
   ================================================================= */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  padding: var(--section-y) 0;
}
.tour-detail-main > section { padding: 2.5rem 0; border-bottom: 1px solid var(--hairline); }
.tour-detail-main > section:first-child { padding-top: 0; }
.tour-detail-main h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); margin-bottom: 1rem; }

.tour-overview {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.tour-overview-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.tour-overview-meta li {
  display: flex; flex-direction: column; gap: .25rem;
}
.tour-overview-meta li span:first-child {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-muted); font-weight: 600;
}
.tour-overview-meta li strong {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em;
}

/* day-by-day accordion */
.accordion { display: flex; flex-direction: column; gap: .5rem; }
.acc-item {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.acc-item[open] { border-color: var(--ink); }
.acc-summary {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  list-style: none;
  position: relative;
}
.acc-summary::-webkit-details-marker { display: none; }
.acc-day {
  font-family: var(--font-display); font-size: 1.65rem;
  color: var(--gold); font-weight: 500;
  min-width: 64px;
}
.acc-title { font-family: var(--font-display); font-size: 1.2rem; flex: 1; font-weight: 500; letter-spacing: -.01em; }
.acc-loc { font-size: .82rem; color: var(--ink-muted); margin-right: 1rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.acc-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--hairline-2); border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .25s;
  flex-shrink: 0;
}
.acc-item[open] .acc-toggle { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.acc-body {
  padding: 0 1.5rem 1.5rem 5rem;
  display: grid; grid-template-columns: 1fr 220px;
  gap: 2rem;
}
.acc-body p { color: var(--ink-muted); font-size: .98rem; line-height: 1.6; margin-bottom: 1rem; }
.acc-body ul { display: flex; flex-direction: column; gap: .35rem; }
.acc-body ul li {
  font-size: .9rem; color: var(--ink-muted);
  padding-left: 1.25rem;
  position: relative;
}
.acc-body ul li::before {
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 6px; height: 1px; background: var(--gold);
}
.acc-body .acc-img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: var(--r-sm);
}

/* route map */
.route-map {
  position: relative;
  aspect-ratio: 16/9;
  background:
    radial-gradient(circle at 30% 40%, rgba(232,192,121,.18), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(15,91,102,.2), transparent 40%),
    linear-gradient(135deg, var(--ivory), var(--paper));
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}
.route-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-map .route-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.route-map .route-pin .dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold);
}
.route-map .route-pin .label {
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  color: var(--navy); background: var(--paper);
  padding: .15rem .5rem; border-radius: 3px;
  white-space: nowrap;
}

/* inclusions / exclusions */
.in-out-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.in-list, .out-list { display: flex; flex-direction: column; gap: .75rem; }
.in-list li, .out-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  font-size: .98rem; color: var(--ink);
  padding: .35rem 0;
}
.in-list li::before {
  content: ''; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}
.out-list li::before {
  content: ''; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--ivory-2);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235C6873' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}

/* accommodation */
.acc-stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.stay-card {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
}
.stay-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.stay-body { padding: 1rem 1.25rem 1.25rem; }
.stay-body h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.stay-body p { font-size: .88rem; color: var(--ink-muted); }
.stay-rating { font-size: .82rem; color: var(--gold); margin-top: .5rem; }

/* add-ons */
.addon-list { display: flex; flex-direction: column; gap: .65rem; }
.addon-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: border-color .2s;
}
.addon-item:hover { border-color: var(--ink); }
.addon-item input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.addon-text { flex: 1; }
.addon-text strong { display: block; font-weight: 600; }
.addon-text small { font-size: .85rem; color: var(--ink-muted); }
.addon-price { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }

/* reviews */
.reviews-summary {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.review-num { font-family: var(--font-display); font-size: 3rem; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.review-stars { color: var(--gold); letter-spacing: .1em; }
.review-count { font-size: .9rem; color: var(--ink-muted); }
.review-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: .35rem; }
.review-bar { display: flex; align-items: center; gap: .75rem; font-size: .8rem; }
.review-bar span:first-child { width: 28px; color: var(--ink-muted); }
.review-bar .bar {
  flex: 1; height: 4px; background: var(--hairline);
  border-radius: 99px; overflow: hidden;
}
.review-bar .bar i {
  display: block; height: 100%; background: var(--gold);
}
.review-bar span:last-child { width: 36px; text-align: right; color: var(--ink-muted); font-variant-numeric: tabular-nums; }

.reviews-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.review-card {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.review-card .review-stars { font-size: .9rem; }
.review-card blockquote { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; line-height: 1.4; color: var(--ink); letter-spacing: -.005em; }
.review-card .byline {
  display: flex; gap: .85rem; align-items: center;
  padding-top: .75rem; border-top: 1px solid var(--hairline);
  margin-top: auto;
}
.review-card .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.review-card .byline strong { display: block; }
.review-card .byline small { font-size: .78rem; color: var(--ink-muted); }

/* faqs */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
}
.faq-summary {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+'; font-size: 1.4rem; color: var(--ink-muted);
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-summary::after { transform: rotate(45deg); color: var(--ink); }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--ink-muted); font-size: .95rem; }

/* sticky booking */
.book-rail {
  position: sticky; top: 100px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 1rem;
}
.book-price { display: flex; align-items: baseline; gap: .5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--hairline); }
.book-price strong { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.book-price span { font-size: .85rem; color: var(--ink-muted); }
.book-field { display: flex; flex-direction: column; gap: .35rem; }
.book-field label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--ink-muted); }
.book-field select, .book-field input {
  border: 1px solid var(--hairline); background: var(--ivory);
  border-radius: var(--r-sm); padding: .65rem .85rem;
  font-weight: 500;
  font-size: .95rem;
}
.book-rail .primary-btn { justify-content: center; }
.book-rail .text-link { align-self: center; margin-top: .35rem; }
.book-avail {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--success); font-weight: 600;
  margin-top: .25rem;
}
.book-avail::before {
  content: ''; width: 8px; height: 8px; background: var(--success); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.book-note { font-size: .8rem; color: var(--ink-muted); padding-top: .85rem; border-top: 1px solid var(--hairline); }

/* tour-detail hero (taller, with chip data row) */
.td-hero { min-height: 70vh; }
.td-chip-row {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.td-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .85rem;
  background: rgba(244,239,230,.15);
  border: 1px solid rgba(244,239,230,.3);
  border-radius: 999px;
  color: var(--paper);
  font-size: .82rem; font-weight: 600;
  backdrop-filter: blur(8px);
}
.td-chip svg { opacity: .85; }
.td-chip .rating { color: var(--gold-soft); letter-spacing: 0; }

/* final cta on inner pages */
.inner-final-cta { background: var(--ivory); }
.inner-final-cta .container {
  background: var(--navy); color: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; overflow: hidden; position: relative;
}
.inner-final-cta .container::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px circle at 100% 0%, rgba(201,147,68,.18), transparent 50%),
              radial-gradient(600px circle at 0% 100%, rgba(15,91,102,.4), transparent 50%);
  pointer-events: none;
}
.inner-final-cta h2 { position: relative; color: var(--paper); font-size: clamp(1.6rem, 2.5vw, 2.2rem); max-width: 22ch; }
.inner-final-cta .section-lede { position: relative; color: rgba(244,239,230,.75); max-width: 38ch; margin-top: .75rem; }
.inner-final-cta .cta-actions { position: relative; display: flex; gap: .75rem; flex-wrap: wrap; }

/* =================================================================
   RESPONSIVE — multi-page additions
   ================================================================= */
@media (max-width: 1100px) {
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-field { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .search-cta { grid-column: span 2; margin-top: .5rem; }
  .seasonal { grid-template-columns: 1fr; min-height: auto; }
  .seasonal-img { min-height: 280px; }
  .seasonal-img::after { background: linear-gradient(180deg, transparent 50%, rgba(11,31,42,.7) 100%); }
  .explorer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .guides-row { grid-template-columns: repeat(2, 1fr); }
  .conc-step-grid { grid-template-columns: 1fr; gap: 2rem; }
  .conc-step-num { font-size: 3rem; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .book-rail { position: static; order: -1; }
  .tour-overview { grid-template-columns: 1fr; }
  .acc-stay-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-list { grid-template-columns: 1fr; }
  .acc-body { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .subhero { min-height: 56vh; padding: calc(76px + 2.5rem) 0 3rem; }
  .search-bar { grid-template-columns: 1fr; }
  .search-cta { grid-column: span 1; }
  .search-bar.is-floating { margin-top: -2rem; }
  .region-tabs { margin: 0 calc(var(--gutter) * -1) 2rem; padding: 0 var(--gutter); }
  .mood-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
  .in-out-grid { grid-template-columns: 1fr; }
  .acc-stay-grid { grid-template-columns: 1fr; }
  .acc-summary { padding: 1rem 1.1rem; gap: .85rem; }
  .acc-day { font-size: 1.3rem; min-width: 48px; }
  .acc-title { font-size: 1.05rem; }
  .acc-loc { display: none; }
  .acc-body { padding: 0 1.1rem 1.25rem 3.5rem; }
  .guides-row { grid-template-columns: 1fr; }
  .card-grid, .card-grid.cols-4, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .inner-final-cta .container { flex-direction: column; align-items: flex-start; }
  .itin-day { grid-template-columns: 64px 1fr; gap: .85rem; }
}

@media (max-width: 560px) {
  .subhero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .mood-grid { grid-template-columns: 1fr 1fr; }
  .reviews-summary { padding: 1.25rem; }
  .conc-progress { top: 76px; }
}
