/* ============================================
   ZENITH CONCIERGE — STYLES
   Design system: Cormorant Garamond + Montserrat
   ============================================ */

/* Fonts load via the zenith-fonts enqueue in functions.php (parallel request,
   display=swap) — no @import here: it would serialize behind this stylesheet. */

/* ─── RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F9F7F4;
  --navy:        #0D1A2D;
  --gold:        #C6A878;
  --gold-light:  #DCC5A1;
  --gold-text:   #876A2B; /* AA gold for small text on light bg (≥4.5:1) */
  --gold-text-lg:#9E7A2E; /* AA gold for large text on light bg (≥3:1) */
  --gray-aa:     #5E6670; /* AA muted gray on light bg (≥4.5:1) */
  --warm-cream:  #F2EDE6;
  --dark-navy:   #1B3A5C;
  --gray:        #606975;
  --gray-dark:   #3A4453; /* darker body text — more presence, still below navy */
  --light-gray:  #8D96A0;
  --white:       #FFFFFF;
  --off-black:   #0F1923;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Montserrat', system-ui, sans-serif;
  --transition:   cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.72;
  color: var(--off-black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-ui); }
ul, ol { list-style: none; }

/* ─── ACCESSIBILITY ─────────────────────────── */
.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  padding: 0.5rem 1.25rem;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

/* Global focus-visible ring — navy on light, gold on dark */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Dark-background contexts get gold ring for contrast */
#hero :focus-visible,
#why-zenith :focus-visible,
#testimonials :focus-visible,
#mid-cta :focus-visible,
.dest-page-hero :focus-visible,
.dest-cta :focus-visible,
.mobile-menu :focus-visible,
footer :focus-visible {
  outline-color: var(--gold);
}
/* Buttons already have border-radius; match it */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-navy:focus-visible,
.btn-book:focus-visible {
  outline-offset: 4px;
}
/* Form inputs use border-style focus; skip the outline ring */
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: none;
}

/* ─── LAYOUT ────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── HEADER ─────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  transition: background 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(13,26,45,0.08);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-compass { flex-shrink: 0; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--navy);
}
.logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-text);
  text-transform: uppercase;
  margin-top: 1px;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.header-nav a:hover { color: var(--navy); }
.header-nav .dropdown { position: relative; }
.header-nav .dropdown-toggle { background: none; border: none; padding: 0; display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); transition: color 0.2s; }
.header-nav .dropdown-toggle:hover { color: var(--navy); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(13,26,45,0.08);
  box-shadow: 0 12px 32px rgba(13,26,45,0.12);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s var(--transition);
  transform: translateX(-50%) translateY(-4px);
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--gray);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--navy); }
/* WP nav_menu outputs .menu-item-has-children/.sub-menu — alias to dropdown styles */
.nav-menu .menu-item-has-children { position: relative; }
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid rgba(13,26,45,0.08);
  box-shadow: 0 12px 32px rgba(13,26,45,0.12);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s var(--transition);
  list-style: none;
  margin: 0;
}
.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu .sub-menu a { display: block; padding: 0.6rem 1.25rem; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: none; color: var(--gray); }
.nav-menu .sub-menu a:hover { background: var(--cream); color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  background: none;
  border: 1px solid rgba(198,168,120,0.4);
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-text);
  transition: border-color 0.2s, background 0.2s;
}
.lang-toggle:hover { border-color: var(--gold); background: rgba(198,168,120,0.06); }
.lang-switcher {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(198,168,120,0.35);
}
.lang-switcher .lang-item { display: flex; }
.lang-switcher .lang-item + .lang-item { border-left: 1px solid rgba(198,168,120,0.35); }
.lang-switcher .lang-item a,
.lang-switcher .lang-item span {
  display: block;
  padding: 0.3rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13,26,45,0.7);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.lang-switcher .lang-item.current-lang a,
.lang-switcher .lang-item.current-lang span { color: var(--gold-text); }
.lang-switcher .lang-item a:hover { color: var(--navy); }
.btn-book {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}
.btn-book:hover { background: #b8966a; }
.btn-book:active { transform: translateY(1px) scale(0.98); }

/* Mobile menu */
.hamburger { display: none; background: none; border: none; padding: 0.5rem; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button.mobile-nav-btn {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  letter-spacing: 0.05em;
}
.mobile-menu .mobile-dest-list { padding-left: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu .mobile-dest-list a { font-size: 0.9rem; color: var(--gray); }
.mobile-menu-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; }

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.9rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #b8966a; }
.btn-primary:active { transform: translateY(1px) scale(0.98); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.9rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-ghost:active { transform: translateY(1px) scale(0.98); }
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-navy:hover { background: var(--dark-navy); }
.btn-navy:active { transform: translateY(1px) scale(0.98); }

/* ─── HERO ───────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../../../../uploads/2026/05/zenith-hero-home.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(13,26,45,0.93) 0%,
    rgba(13,26,45,0.76) 42%,
    rgba(13,26,45,0.22) 72%,
    rgba(13,26,45,0.05) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  /* 72px = fixed #site-header height; the extra gap keeps the eyebrow off the
     header. Likewise padding-bottom keeps the stats off the trust-bar seam — on
     shorter laptop heights the hero content exceeds 100dvh, so without these the
     eyebrow (top) and the last stat row ((CAIXABANK), bottom) sat flush against
     the boundaries. */
  padding-top: calc(72px + 2.5rem);
  padding-bottom: 3.5rem;
  width: 100%;
}
.hero-inner { max-width: 620px; }
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6vw, 5.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat { max-width: 340px; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-image-caption {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  background: rgba(13,26,45,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 0.6rem 1rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-image-caption::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ─── TRUST BAR ─────────────────────────────── */
#trust-bar {
  background: var(--warm-cream);
  border-bottom: 1px solid rgba(198,168,120,0.2);
}
.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 0;
}
/* Lead cell: the 45-day work-free guarantee carries the bar (audit pass 5.4 —
   asymmetric strip instead of 5 equal cells) */
.trust-item--lead {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-align: left;
  padding-left: 0;
}
.trust-item--lead .trust-value { font-size: 3.4rem; margin-bottom: 0; }
.trust-item--lead .trust-label { font-size: 0.7rem; color: var(--navy); max-width: 24ch; line-height: 1.5; text-align: left; }
.trust-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(198,168,120,0.18);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-text-lg);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.trust-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── HOW IT WORKS ───────────────────────────── */
#how-it-works {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
}
#how-it-works::before {
  content: "";
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: rgba(198,168,120,0.25);
}
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 4rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title.dark { color: var(--navy); }
.section-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.7;
}
.section-subtitle.dark { color: var(--gray); }
/* Alternating timeline (audit pass 5: replaces the 3-col card grid) */
.steps-flow {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 1rem;
}
.steps-flow::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: rgba(198,168,120,0.22);
}
/* Scroll-progress fill: JS sets --steps-progress (0..1) as the section
   passes the viewport focal point; the gold line grows down the rail. */
.steps-flow::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: calc(var(--steps-progress, 0) * 100%);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(198,168,120,0.55);
}
.step-item {
  position: relative;
  width: calc(50% - 3.5rem);
  padding-bottom: 3.25rem;
}
.step-item:nth-child(odd)  { margin-right: auto; }
.step-item:nth-child(even) { margin-left: auto; margin-top: -5.5rem; }
.step-item:nth-child(2)    { margin-top: 2.5rem; }
.step-item:last-child { padding-bottom: 0.5rem; }
.step-item::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  width: 7px;
  height: 7px;
  background: rgba(198,168,120,0.35);
  transform: rotate(45deg);
  transition: background 0.35s, box-shadow 0.35s;
}
.step-item.is-passed::after {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(198,168,120,0.6);
}
.step-item:nth-child(odd)::after  { right: calc(-3.5rem - 3px); }
.step-item:nth-child(even)::after { left: calc(-3.5rem - 3px); }
.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─── LEAD MAGNET ─────────────────────────────── */
#lead-magnet { background: var(--dark-navy); padding: 5rem 0; }
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.lead-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lead-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.lead-subtitle { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.lead-form-panel {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
.form-row input {
  border: 1px solid rgba(13,26,45,0.15);
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  background: var(--cream);
}
.form-row input:focus { border-color: var(--gold); background: var(--white); }
.form-privacy { font-size: 0.7rem; color: var(--light-gray); margin-top: 0.75rem; text-align: center; }

/* ─── WHY ZENITH ─────────────────────────────── */
#why-zenith { background: var(--cream); padding: 7rem 0 6rem; }
.why-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(13,26,45,0.12);
}
.why-row {
  display: grid;
  grid-template-columns: 120px 1fr 240px;
  align-items: baseline;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(13,26,45,0.12);
  transition: padding 0.3s var(--transition);
}
.why-row:hover { padding-left: 0.75rem; }
.why-row-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-text-lg);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 1;
}
.why-row-body { max-width: 540px; }
.why-row-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.65rem;
}
.why-row-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.72;
}
.why-row-stat {
  text-align: right;
  border-left: 1px solid rgba(13,26,45,0.15);
  padding-left: 1.75rem;
  align-self: center;
}
.why-row-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.45rem;
}
.why-row-stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-aa);
}

/* ─── DESTINATIONS ───────────────────────────── */
#destinations { background: var(--warm-cream); padding: 8.5rem 0 7rem; }
.dest-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.dest-view-all {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}
.dest-view-all:hover { color: var(--navy); }
.dest-row-1 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.dest-row-2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dest-card--hero { position: relative; }
.dest-card--hero .dest-card-img-wrap { aspect-ratio: 5 / 4; }
.dest-card--hero .dest-card-body { padding: 2rem 2rem 2.25rem; }
.dest-card--hero .dest-card-region { color: var(--gold-text); }
.dest-card--hero .dest-card-name {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}
.dest-card--hero .dest-card-tagline { font-size: 0.95rem; line-height: 1.6; max-width: 36ch; }
.dest-card--hero:hover .dest-card-region { color: var(--gold-text); }
.dest-card-img-wrap { position: relative; }
.dest-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  z-index: 1;
}
.dest-card {
  background: var(--white);
  border-top: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dest-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--warm-cream);
}
.dest-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--transition);
}
.dest-card:hover .dest-card-img-wrap img { transform: scale(1.04); }
.dest-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.visual-break {
  /* Full-bleed regardless of the parent container width. The previous
     negative-margin math assumed a 1200px container (it's 1400) and exceeded
     the mobile padding, causing site-wide horizontal scroll. */
  margin-top: 4rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(220px, 32vw, 460px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dest-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(13,26,45,0.14);
  transform: translateY(-3px);
}
.dest-card:hover .dest-learn-more { color: var(--gold-text); }
.dest-card-region {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-aa);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.dest-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
  transition: color 0.25s;
}
.dest-card-tagline {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: color 0.25s;
}
.dest-learn-more {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-aa);
  transition: color 0.25s;
}

/* ─── TESTIMONIALS ───────────────────────────── */
/* cream (not warm-cream) so it reads as a distinct band after the warm-cream
   destinations section — avoids two same-tone sections blurring together. */
#testimonials { background: var(--cream); padding: 8.5rem 0 7rem; overflow: hidden; }

/* Peek carousel: active card centered, neighbours clip into slivers at the edges. */
.t-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1rem;
}
.t-track {
  position: relative;
  height: 460px;                 /* fallback; JS fits this to the active card */
  transition: height 0.5s var(--transition);
}
.t-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(640px, 84vw);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: clamp(2rem, 3.6vw, 3.25rem);
  background: var(--white);
  border: 1px solid rgba(13,26,45,0.07);
  box-shadow: 0 34px 70px -34px rgba(13,26,45,0.32);
  /* default state = far / hidden */
  transform: translateX(-50%) scale(0.78);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s var(--transition), opacity 0.6s var(--transition);
}
.t-card.is-active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}
.t-card.is-prev,
.t-card.is-next {
  opacity: 0.42;
  z-index: 2;
  filter: saturate(0.55);
}
.t-card.is-prev { transform: translateX(calc(-50% - 60%)) scale(0.84); }
.t-card.is-next { transform: translateX(calc(-50% + 60%)) scale(0.84); }

.t-badge {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.t-mark {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.32;
  height: 0.38em;
  display: block;
}
.t-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.46;
  color: var(--navy);
  margin: 0;
}
.t-foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13,26,45,0.12);
}
.t-mono {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.t-id { display: flex; flex-direction: column; gap: 0.18rem; }
.t-name { font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.t-role {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-aa);
}

.t-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(13,26,45,0.1);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px -14px rgba(13,26,45,0.45);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.t-arrow:hover { background: var(--navy); color: var(--gold); }
.t-arrow:active { transform: scale(0.93); }
.t-arrow svg { width: 16px; height: 16px; }
.t-arrow--prev { left: clamp(0.5rem, 3vw, 2rem); }
.t-arrow--next { right: clamp(0.5rem, 3vw, 2rem); }

.t-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 2.75rem; }
.t-dot {
  width: 26px;
  height: 2px;
  background: rgba(13,26,45,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.t-dot.is-active { background: var(--gold); width: 42px; }

@media (max-width: 820px) {
  .t-card { width: 90vw; }
  /* Hide neighbours entirely so their off-stage boxes can't add page width. */
  .t-card.is-prev, .t-card.is-next { display: none; }
  .t-arrow { width: 42px; height: 42px; }
  .t-arrow--prev { left: 0; }
  .t-arrow--next { right: 0; }
}

/* ─── MID CTA ────────────────────────────────── */
/* Navy split layout — gold reserved for the button accent (audit pass 3:
   solid-gold section bands read as template luxury; navy keeps the register). */
#mid-cta { background: var(--navy); padding: 5rem 0; }
#mid-cta .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 4rem;
}
.mid-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}
.mid-cta-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.62); margin-bottom: 0; max-width: 48ch; }
#mid-cta .btn-primary { grid-row: 1 / span 2; grid-column: 2; justify-self: end; }
@media (max-width: 768px) {
  #mid-cta .section-inner { grid-template-columns: 1fr; }
  #mid-cta .btn-primary { grid-row: auto; grid-column: 1; justify-self: start; margin-top: 1.5rem; }
}

/* ─── FAQ ────────────────────────────────────── */
#faq { background: var(--cream); padding: 6rem 0; }
#faq .section-header,
.faq-list,
.faq-cta { max-width: 820px; margin-left: auto; margin-right: auto; }
#faq .section-header { text-align: center; }
.faq-cta { justify-content: center; }
.faq-item { border-bottom: 1px solid rgba(13,26,45,0.1); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 1.5rem;
}
.faq-q-text {
  font-family: var(--font-display);
  /* 1.375rem (not 1.1): Cormorant's low x-height (0.386) reads small next to
     the answer's Montserrat (0.526). ~22px serif matches the 16px sans answer's
     apparent lowercase height. */
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.faq-toggle svg { stroke: var(--white); width: 14px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-toggle { background: var(--gold); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
/* Grid-rows expand: animates to natural height — a max-height cap clipped
   long answers (the fee FAQ) on mobile. The grid item (.faq-answer-text) must
   carry NO padding/border: padding is not zeroed by min-height:0 nor clipped by
   overflow:hidden, so it would force the 0fr track open (~24px = one clipped
   line). Spacing therefore lives on the inner <p>, inside the overflow clip. */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--transition);
}
.faq-answer-text { min-height: 0; overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-text p { margin: 0; padding-bottom: 1.5rem; font-size: 1rem; color: var(--gray-dark); line-height: 1.8; }
.faq-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(13,26,45,0.1);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.faq-cta-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
}

/* ─── LEGAL / PRIVACY PAGE ───────────────────── */
#page-legal .legal-hero { background: var(--navy); padding: 7rem 0 3.5rem; }
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.legal-updated { margin-top: 1rem; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.02em; }
.legal-body { background: var(--cream); padding: 4.5rem 0 6rem; }
.legal-prose { max-width: 760px; margin: 0 auto; }
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin: 2.75rem 0 0.9rem;
  line-height: 1.25;
}
.legal-prose p { font-size: 1rem; line-height: 1.8; color: var(--gray); margin: 0 0 1.1rem; }
.legal-prose ul { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.legal-prose li { font-size: 1rem; line-height: 1.75; color: var(--gray); margin-bottom: 0.5rem; }
.legal-prose strong { color: var(--navy); font-weight: 600; }
.legal-prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose a:hover { color: var(--gold); }

/* ─── COOKIE CONSENT BANNER ──────────────────── */
.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  width: 340px;
  max-width: calc(100vw - 3rem);
  background: var(--navy);
  border: 1px solid rgba(198,168,120,0.35);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(13,26,45,0.28);
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: cookie-rise 0.35s ease both;
}
@keyframes cookie-rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.cookie-banner-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 0.6rem; }
.cookie-banner .btn-primary,
.cookie-banner .btn-ghost {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; width: auto; max-width: none; }
}

/* ─── FOOTER ─────────────────────────────────── */
#footer { background: var(--navy); border-top: 1px solid rgba(198,168,120,0.3); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.58); line-height: 1.7; margin-top: 1.25rem; max-width: 220px; }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(198,168,120,0.1); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.45); fill: none; transition: stroke 0.2s; }
.footer-social a:hover svg { stroke: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }
.footer-brand-name { font-family: var(--font-display); font-size: 1.375rem; font-weight: 400; letter-spacing: 0.12em; color: var(--white); text-decoration: none; display: block; }
.footer-brand-link { text-decoration: none; }

/* ─── CONTACT PAGE ───────────────────────────── */
#page-contact { background: var(--cream); }
/* Navy left-aligned hero (audit pass 5.4: was a centered warm-cream block,
   near-identical to the mid-CTA and FAQ headers — now matches the process
   page's entry treatment) */
/* Hero with faded image background (matches destination/process heroes) */
.contact-hero { background: var(--navy); padding: 8rem 0 4.5rem; position: relative; overflow: hidden; }
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 60ch; line-height: 1.7; }
.contact-hero-links { margin-top: 1.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.contact-hero-links a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.contact-hero-links a:hover { color: var(--white); }

.contact-body { padding: 5rem 0 3rem; }
/* Contact-page Commitment band: tighter top padding than the homepage's (it sits
   directly under the form/Calendly, so the homepage 8.5rem would double-stack). */
#page-contact #commitment { padding-top: 3rem; }
/* Top-align so the Cal.com calendar header ("June 2026") lines up with the first
   info step on the left. The calendar runs slightly taller than the info column. */
#page-contact .contact-grid { align-items: start; }
/* Contact page: center the Commitment heading + subtitle over the pledge grid. */
#page-contact #commitment .section-header { text-align: center; }
#page-contact #commitment .section-subtitle { margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info-steps { margin-bottom: 2.5rem; }
.contact-step { display: flex; gap: 1.25rem; margin-bottom: 1.75rem; }
.contact-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-step-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.contact-step-desc { font-size: 0.9375rem; color: var(--gray); line-height: 1.6; }
.contact-dark-box { background: var(--navy); padding: 2rem; }
.contact-dark-box-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; }
.contact-dark-box-text { font-size: 0.9375rem; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; line-height: 1.6; }
.contact-dark-box-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.contact-dark-box-wa:hover { opacity: 0.9; }
.contact-form-panel { background: var(--white); padding: 2.5rem; box-shadow: 0 8px 32px rgba(13,26,45,0.06); }
.contact-form-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; color: var(--navy); margin-bottom: 2rem; }
.form-row select, .form-row textarea {
  border: 1px solid rgba(13,26,45,0.15);
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  background: var(--cream);
  appearance: none;
}
.form-row select:focus, .form-row textarea:focus { border-color: var(--gold); background: var(--white); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success-icon { width: 56px; height: 56px; background: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success-icon svg { stroke: var(--navy); width: 26px; height: 26px; }
.form-success-title { font-family: var(--font-display); font-size: 1.75rem; color: var(--navy); margin-bottom: 0.75rem; }
.form-success-text { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ─── PROCESS PAGE ───────────────────────────── */
#page-process { background: var(--cream); }
.process-hero { background: var(--navy); padding: 8rem 0 5rem; }
.process-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.process-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 540px; line-height: 1.7; }
.process-body { padding: 5rem 0 6rem; }
.process-step-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(13,26,45,0.08);
  align-items: start;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
}
.process-step-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
.process-step-subtitle { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 0.75rem; }
.process-zenith-help {
  background: rgba(198,168,120,0.1);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}
.process-step-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.process-details { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.process-detail-item { font-size: 0.9375rem; color: var(--gray); display: flex; gap: 0.6rem; }
.process-detail-item::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.process-docs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.process-doc-tag {
  background: var(--warm-cream);
  border: 1px solid rgba(198,168,120,0.3);
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ─── DESTINATION PAGE ───────────────────────── */
#page-destination { background: var(--cream); }
.dest-page-hero {
  background: var(--navy);
  padding: 7rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.dest-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* background-position set per-destination inline (focal map in template) */
  opacity: 0.92;
  pointer-events: none;
}
/* Directional navy gradient: opaque under the text (left), clearing almost
   fully on the right so the photo stays vivid. Keeps the title crisp without
   dimming the whole image to a flat band. */
.dest-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(13,26,45,0.92) 28%, rgba(13,26,45,0.5) 52%, rgba(13,26,45,0.08) 100%);
  pointer-events: none;
}
.dest-page-hero .container { position: relative; z-index: 1; }
.dest-page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.dest-page-back:hover { color: var(--gold); }
.dest-page-back svg { width: 14px; height: 14px; stroke: currentColor; }
.dest-page-region { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; }
.dest-page-title { font-family: var(--font-display); font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 400; color: var(--white); margin-bottom: 0.5rem; }
.dest-page-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: rgba(255,255,255,0.82); }
/* Sticky in-page anchor nav (audit pass 5.2: replaced the JS tab interface —
   all sections render in one scroll; scrollspy in app.js highlights position).
   top = fixed #site-header height (72px). */
.dest-anchor-nav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.dest-tabs { display: flex; gap: 0; }
.dest-tab {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.dest-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.dest-tab:hover:not(.active) { color: rgba(255,255,255,0.95); }
.dest-body { padding: 4rem 0 6rem; }
.dest-section { scroll-margin-top: calc(72px + 56px); }
.dest-section + .dest-section {
  border-top: 1px solid rgba(13,26,45,0.08);
  margin-top: 3.5rem;
  padding-top: 3.5rem;
}
.dest-two-col { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: start; }
/* Data fact-panel: differentiates the data column (prices, buyer list) from
   the narrative column — warm-cream surface + gold top rule (audit pass 5) */
.dest-panel {
  background: var(--warm-cream);
  border-top: 2px solid var(--gold);
  padding: 2rem 2.25rem;
}
.dest-panel-title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.25rem;
}
.dest-panel .dest-section-text { margin-bottom: 0; font-size: 0.9375rem; color: var(--navy); }
.dest-panel .dest-buyer-item { color: var(--navy); font-size: 0.9375rem; }
.dest-section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 0.75rem; }
.dest-section-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; color: var(--navy); margin-bottom: 1rem; }
.dest-section-text { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
/* ES SEO lede (FK as overview heading) — same scale as section titles so it
   reads as a heading, not stray bold copy */
.dest-section-lede {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}
.dest-why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.5rem;
  margin-top: 2rem;
}
.dest-why-item { font-size: 1rem; color: var(--gray); line-height: 1.6; }
.dest-why-item::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.85rem;
}
.dest-buyers { display: flex; flex-direction: column; gap: 0.4rem; }
.dest-buyer-item { font-size: 1rem; color: var(--gray); line-height: 1.6; display: flex; gap: 0.6rem; }
.dest-buyer-item::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.dest-faq-list { max-width: 700px; }
.dest-cta { background: var(--navy); padding: 4rem; text-align: center; margin-top: 4rem; }
.dest-cta-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--white); margin-bottom: 0.75rem; }
.dest-cta-text { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; }

/* ─── DEST SWITCHER TABS (all destinations page) ─ */
.all-dests-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.all-dest-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid rgba(13,26,45,0.12);
  color: var(--gray);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.all-dest-tab.active, .all-dest-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item--lead { display: block; text-align: center; padding-left: 1.5rem; }
  .trust-item--lead .trust-value { font-size: 1.6rem; margin-bottom: 0.35rem; }
  .trust-item--lead .trust-label { max-width: none; color: var(--gray); }
  .trust-item:nth-child(3) { border-right: none; }
  .trust-item:nth-child(4) { border-right: 1px solid rgba(198,168,120,0.18); }
  .trust-item:nth-child(5) { border-right: none; }
  .why-row { grid-template-columns: 90px 1fr 180px; gap: 2rem; }
  .why-row-stat { padding-left: 1.25rem; }
  .dest-row-1 { grid-template-columns: 1fr 1fr; }
  .dest-card--hero { grid-column: 1 / -1; }
  .dest-card--hero .dest-card-img-wrap { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-step-card { grid-template-columns: 80px 1fr; gap: 2rem; }
  .dest-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .dest-why-list { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions .btn-book { display: none; }
  .hamburger { display: flex; }

  .hero-h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero-stats { gap: 1.5rem; }
  .hero-image-caption { display: none; }

  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid rgba(198,168,120,0.18); }
  .trust-item:nth-child(4) { border-right: none; }
  .trust-item:nth-child(5) { border-right: none; }

  .steps-flow::before { left: 4px; }
  .steps-flow::after { left: 4px; }
  .step-item,
  .step-item:nth-child(odd),
  .step-item:nth-child(even) { width: auto; margin: 0; padding-left: 2.25rem; padding-bottom: 2.5rem; }
  .step-item:nth-child(odd)::after,
  .step-item:nth-child(even)::after { left: 1px; right: auto; top: 1.25rem; }
  .why-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .why-row-stat {
    text-align: left;
    border-left: none;
    border-top: 1px solid rgba(13,26,45,0.15);
    padding-left: 0;
    padding-top: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
  }
  .why-row-stat-value { font-size: 1.8rem; margin-bottom: 0; }
  .dest-row-1, .dest-row-2 { grid-template-columns: 1fr 1fr; }
  .dest-card--hero { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .process-step-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .process-step-num { font-size: 3rem; }
  .form-two-col { grid-template-columns: 1fr; }
  .dest-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .dest-tabs::-webkit-scrollbar { display: none; }
  .dest-tab { white-space: nowrap; }
  .dest-tab { padding: 0.75rem 1rem; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .dest-row-1, .dest-row-2 { grid-template-columns: 1fr; }
  .section-inner { padding: 0 1.25rem; }
  .header-inner { padding: 0 1.25rem; }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { text-align: center; }
}

/* ─── BLOG / ARCHIVE ────────────────────────── */
.blog-hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
}
.blog-hero-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.blog-hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}

.blog-body { padding: 4rem 0 6rem; }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.post-card {
  background: var(--white);
  border: 1px solid rgba(13,26,45,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.post-card:hover { box-shadow: 0 6px 24px rgba(13,26,45,0.1); }
.post-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--warm-cream);
}
.post-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--transition);
}
.post-card:hover .post-card-img-wrap img { transform: scale(1.04); }
.post-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.post-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.75rem;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.post-card-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.post-card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.post-card-link:hover { color: var(--gold); }

.blog-no-posts {
  text-align: center;
  padding: 4rem 0;
  color: var(--gray);
  font-size: 1rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(13,26,45,0.15);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── SINGLE POST ───────────────────────────── */
.post-hero {
  background: var(--navy);
  padding: 6rem 0 4rem;
  color: var(--white);
}
.post-hero-back {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 2rem;
}
.post-hero-back:hover { color: var(--white); }
.post-hero-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.post-hero-meta span { color: var(--gold); }
.post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: 780px;
}

.post-featured-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.post-content-wrap {
  padding: 4rem 0 6rem;
}
.post-content-inner {
  max-width: 720px;
  margin: 0 auto;
}
.entry-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--off-black);
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  margin: 2.5rem 0 1rem;
}
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.35rem; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.entry-content li { margin-bottom: 0.5rem; }
.entry-content a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
.entry-content a:hover { color: var(--gold); }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--warm-cream);
  font-style: italic;
  color: var(--gray);
}
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
}

.post-nav {
  border-top: 1px solid rgba(13,26,45,0.1);
  padding-top: 2.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  max-width: 45%;
}
.post-nav-link.next { text-align: right; margin-left: auto; }
.post-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-nav-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.35;
}
.post-nav-link:hover .post-nav-title { color: var(--gold); }

/* ─── EMAIL LINK (footer / contact) ─────────── */
.footer-email-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-email-link:hover { color: var(--gold); }
.contact-dark-box-email {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(198,168,120,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.contact-dark-box-email:hover { border-color: var(--gold); }

/* ─── BLOG RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; gap: 1.5rem; }
  .post-nav-link.next { text-align: left; margin-left: 0; }
}

/* ─── FLUENT FORMS OVERRIDES ────────────────── */
.fluentform .ff-btn-submit,
.fluentform .ff-btn {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  font-family: var(--font-ui) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 0.9rem 2rem !important;
  width: 100% !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.fluentform .ff-btn-submit:hover,
.fluentform .ff-btn:hover {
  background: #b8966a !important;
  border-color: #b8966a !important;
}
.fluentform .ff-el-input--content input,
.fluentform .ff-el-input--content select,
.fluentform .ff-el-input--content textarea {
  background: var(--white) !important;
  border: 1px solid rgba(13,26,45,0.15) !important;
  border-radius: 0 !important;
  font-family: var(--font-ui) !important;
  font-size: 1rem !important;
  color: var(--off-black) !important;
  padding: 0.75rem 1rem !important;
}
.fluentform .ff-el-input--content input:focus,
.fluentform .ff-el-input--content select:focus,
.fluentform .ff-el-input--content textarea:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(198,168,120,0.15) !important;
}
.fluentform .ff-el-form-control label,
.fluentform .ff-el-input--label label {
  font-family: var(--font-ui) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--navy) !important;
}
.fluentform .ff-message-success {
  background: rgba(198,168,120,0.1) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 0 !important;
}

/* ─── CALENDLY INLINE WIDGET ────────────────── */
.contact-calendly-panel {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .contact-calendly-panel { margin-top: 0; }
}
.calendly-inline-widget {
  min-width: 320px;
  height: 680px;
}
@media (max-width: 768px) {
  .calendly-inline-widget { height: 780px; }
}

/* ─── CHECKLIST DOWNLOAD PAGE ───────────────── */
.checklist-hero {
  background: var(--warm-cream);
  padding: 8rem 0 5rem;
  text-align: center;
}
.checklist-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.checklist-icon {
  color: var(--gold);
  background: rgba(198,168,120,0.12);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checklist-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.checklist-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}
.checklist-subtitle {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 480px;
}
.checklist-download-btn {
  margin-top: 0.5rem;
}
.checklist-pdf-placeholder {
  background: rgba(198,168,120,0.1);
  border: 1px solid rgba(198,168,120,0.3);
  padding: 1.25rem 2rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}
.checklist-contents {
  padding: 5rem 0;
}
.checklist-contents-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2rem;
}
.checklist-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem 3rem;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--off-black);
  line-height: 1.5;
}
.checklist-check {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.checklist-cta {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.checklist-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.checklist-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}
.checklist-cta-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
/* Buying Process page hero background */
  .process-hero { position: relative; overflow: hidden; }
  .process-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
  }
  .process-hero .container { position: relative; }
/* ─── AUDIT PASS 2: steps-more / process-cta / contact-quotes ── */
.steps-more { margin-top: 2.5rem; text-align: center; font-size: 0.9375rem; color: var(--gray); }
.steps-more a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.steps-more a:hover, .steps-more a:focus-visible { color: var(--navy); }

.process-cta {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  margin: 3rem 0 1rem;
}
.process-cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.process-cta-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 1.5rem;
}

/* Social-proof band below the booking grid (audit pass 5.4 follow-up:
   testimonials were orphaned at the foot of the short left column) */
.contact-proof { background: var(--warm-cream); padding: 4.5rem 0; border-top: 1px solid rgba(198,168,120,0.2); }
.contact-proof-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; max-width: 1000px; margin: 0 auto; }
.contact-quote { margin: 0; padding-left: 1.25rem; border-left: 2px solid var(--gold); }
.contact-quote blockquote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}
.contact-quote figcaption {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-aa);
}
@media (max-width: 768px) {
  .contact-quotes { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .process-cta { padding: 1.75rem 1.5rem; }
  .process-cta-title { font-size: 1.3rem; }
}

/* ─── BUYER'S GUIDE LANDING PAGE (audit pass 5.3) ── */
.guide-hero { background: var(--navy); padding: 9rem 0 5rem; }
.guide-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.guide-meta { margin-top: 1.5rem; font-size: 0.8rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); }
.guide-trust { background: var(--warm-cream); padding: 3.5rem 0; }
.guide-trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.guide-trust-item { border-left: 2px solid var(--gold); padding-left: 1.25rem; }
.guide-trust-value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 500; color: var(--navy); line-height: 1.1; }
.guide-trust-label { font-size: 0.875rem; color: var(--gray); margin-top: 0.25rem; line-height: 1.5; }
@media (max-width: 768px) {
  .guide-hero { padding: 7rem 0 3.5rem; }
  .guide-trust-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Contextual guide offer on destination pages */
.dest-guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin-top: 3.5rem;
}
.dest-guide-cta-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--white); margin-bottom: 0.35rem; }
.dest-guide-cta-text { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.6; max-width: 52ch; }
.dest-guide-cta .btn-primary { flex-shrink: 0; }
@media (max-width: 768px) {
  .dest-guide-cta { flex-direction: column; align-items: flex-start; padding: 1.75rem 1.5rem; }
}

/* ─── COMMITMENT / TRUST (replaces testimonials slot pre-launch) ─────── */
#commitment { background: var(--cream); padding: 8.5rem 0 7rem; }
.pledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 1px solid rgba(13,26,45,0.12);
  padding-top: 3.5rem;
}
.pledge-card { position: relative; }
.pledge-rule {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.pledge-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
}
.pledge-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.72;
}
.pledge-credential {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(13,26,45,0.12);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  text-align: center;
}
.pledge-cta { margin-top: 3.5rem; text-align: center; }
@media (max-width: 860px) {
  .pledge-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── STICKY MOBILE CTA (homepage only) ─────────────────────────────── */
.sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 1rem; right: 1rem; bottom: 1rem;
    z-index: 90;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(13,26,45,0.30);
  }
  .sticky-cta:active { transform: translateY(1px); }
}
