/* ═══════════════════════════════════════════════════════════════
   TRAVELMATION — LUXURY PORTAL · "Midnight & Gold" Design System
   Beth Cardenas · bethcardenas@travelmation.net
   Built June 2026
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Midnight & Gold palette */
  --bg:          #0A0A0F;   /* near-black base */
  --surface:     #14141B;   /* charcoal card */
  --surface2:    #101016;   /* deeper panel */
  --surface3:    #18181F;   /* raised card */
  --gold:        #C8A24B;   /* champagne gold accent */
  --gold-lt:     #DDBA66;   /* hover gold */
  --gold-dk:     #A8853A;   /* pressed gold */
  --gold-soft:   rgba(200,162,75,0.14);  /* gold hairline */
  --ivory:       #F3EFE6;   /* warm ivory — primary text */
  --taupe:       #9A937F;   /* soft taupe — secondary text */
  --dim:         rgba(154,147,127,0.55);
  --border:      rgba(200,162,75,0.16);  /* gold-tinted border */
  --border-soft: rgba(243,239,230,0.07);
  --shadow-sm:   0 2px 16px rgba(0,0,0,0.5);
  --shadow-md:   0 12px 40px rgba(0,0,0,0.55);
  --shadow-lg:   0 28px 80px rgba(0,0,0,0.65);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --transition:  0.3s cubic-bezier(0.33, 1, 0.68, 1);
  /* aliases so reused JS/components referencing old vars still resolve */
  --offwhite: var(--ivory);
  --sand: var(--taupe);
  --sienna: var(--gold);
  --sienna-lt: var(--gold-lt);
}

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* subtle warm vignette for depth */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200,162,75,0.06), transparent 60%);
  background-attachment: fixed;
}

::selection { background: rgba(200,162,75,0.28); color: var(--ivory); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ivory);
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: var(--ivory);
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--ivory);
}
h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ivory);
  line-height: 1.45;
}
p { font-size: 16px; line-height: 1.8; color: var(--taupe); font-weight: 300; }
em { font-style: italic; color: var(--gold); }
strong { color: var(--ivory); font-weight: 600; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-lt); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* gold hairline divider */
.rule-gold {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 0 28px;
}
.rule-center { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 1180px;
  margin: 0 auto;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 600px) { .container { padding: 0 22px; } }
.section { padding: 96px 0; }
.section + .section { border-top: 1px solid var(--border-soft); }
.section-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-header .eyebrow { display: block; margin-bottom: 18px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 17px; }
.mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,15,0.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  transition: padding 0.3s, background 0.3s;
}
.header.shrink { padding: 12px 40px; background: rgba(10,10,15,0.92); }
@media (max-width: 600px) { .header, .header.shrink { padding: 12px 22px; } }
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 30px; width: auto; display: block; }
.nav { display: flex; gap: 34px; }
.nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav a:hover { color: var(--ivory); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--gold); }
.nav a.active::after { transform: scaleX(1); }
@media (max-width: 980px) { .nav { display: none; } }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 11px 22px; border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-lt); color: var(--bg); transform: translateY(-1px); }
@media (max-width: 980px) { .header-cta { display: none; } }

.menu-toggle {
  display: none; background: none; border: none; color: var(--ivory); cursor: pointer;
}
@media (max-width: 980px) { .menu-toggle { display: block; } }
.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(10,10,15,0.98); backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 8px 22px 18px;
  position: sticky; top: 56px; z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--taupe); padding: 13px 0; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 0 40px;
  overflow: hidden;
}
.hero.has-photo { background-size: cover; background-position: center; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,15,0.82) 0%, rgba(10,10,15,0.45) 55%, rgba(10,10,15,0.25) 100%),
    linear-gradient(to top, rgba(10,10,15,0.85) 0%, transparent 45%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%; }
.hero .eyebrow { display: block; margin-bottom: 22px; }
.hero h1 { margin-bottom: 24px; max-width: 16ch; text-shadow: 0 2px 40px rgba(0,0,0,0.6); }
.hero h1 em { color: var(--gold); }
.hero p { font-size: 18px; max-width: 52ch; color: var(--ivory); opacity: 0.92; font-weight: 300; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo-credit {
  position: absolute; bottom: 16px; left: 40px; z-index: 1;
  font-size: 10px; color: rgba(243,239,230,0.4); letter-spacing: 0.04em;
}
@media (max-width: 600px) { .hero-photo-credit { left: 22px; } }
.hero-photo-credit a { color: rgba(243,239,230,0.55); }
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe);
  animation: floaty 2.4s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── PAGE HERO (interior pages) ───────────────────────────── */
.page-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: center; padding: 0 40px;
  overflow: hidden;
}
.page-hero.has-photo { background-size: cover; background-position: center; }
.page-hero.has-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.9), rgba(10,10,15,0.45) 70%, rgba(10,10,15,0.3));
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; width: 100%; }
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 60ch; font-size: 17px; color: var(--ivory); opacity: 0.9; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 999px; cursor: pointer;
  transition: all var(--transition); border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-lt); color: var(--bg); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,162,75,0.28); }
.btn-secondary { background: transparent; color: var(--ivory); border-color: rgba(243,239,230,0.3); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: transparent; color: var(--gold); padding: 10px 0; letter-spacing: 0.14em; }
.btn-ghost::after { content: '→'; transition: transform var(--transition); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── DESTINATION / EXPERIENCE CARDS ───────────────────────── */
.lux-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lux-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 960px) { .lux-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lux-grid, .lux-grid-2 { grid-template-columns: 1fr; } }

.lux-card {
  position: relative; display: block;
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-soft);
  text-decoration: none; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 420px;
}
.lux-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.lux-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.lux-card:hover .lux-card-img { transform: scale(1.06); }
.lux-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.35) 50%, rgba(10,10,15,0.1) 100%);
}
.lux-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 26px; z-index: 1; }
.lux-card-region { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.lux-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--ivory); line-height: 1.15; margin-bottom: 8px; }
.lux-card-desc { font-size: 13.5px; color: rgba(243,239,230,0.78); line-height: 1.6; font-weight: 300; }
.lux-card-from {
  margin-top: 14px; font-size: 11px; letter-spacing: 0.08em; color: var(--taupe);
  text-transform: uppercase;
}
.lux-card-from strong { color: var(--gold); font-weight: 600; }

/* large feature card (spans 2 cols) */
.lux-card-feature { grid-column: span 2; min-height: 480px; }
@media (max-width: 960px) { .lux-card-feature { grid-column: span 2; } }
@media (max-width: 640px) { .lux-card-feature { grid-column: span 1; min-height: 420px; } }

/* ── EDITORIAL CONTENT CARD (no image) ────────────────────── */
.editorial-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); padding: 38px 34px;
  transition: border-color var(--transition), transform var(--transition);
}
.editorial-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.editorial-card .num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 16px; display: block; }
.editorial-card h3 { margin-bottom: 12px; }
.editorial-card p { font-size: 14.5px; }

/* ── PRICE-TIER / DETAIL TABLE ────────────────────────────── */
.lux-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.lux-table th, .lux-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border-soft); color: var(--taupe); vertical-align: top; }
.lux-table th { color: var(--gold); font-family: 'DM Sans',sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.lux-table tr:last-child td { border-bottom: none; }
.lux-table td strong { color: var(--ivory); }
.from-price { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ── PULL QUOTE ───────────────────────────────────────────── */
.pullquote {
  max-width: 820px; margin: 0 auto; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.3; color: var(--ivory);
}
.pullquote .by { display: block; margin-top: 24px; font-family: 'DM Sans', sans-serif; font-style: normal; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ── CREDENTIALS STRIP ────────────────────────────────────── */
.creds { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; }
.cred-item { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }
.cred-item strong { color: var(--ivory); display: block; font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; letter-spacing: 0; text-transform: none; margin-bottom: 4px; }

/* ── INQUIRY / BEGIN PLANNING ─────────────────────────────── */
.inquiry-wrap {
  background: linear-gradient(135deg, rgba(200,162,75,0.08), rgba(200,162,75,0.02));
  border: 1px solid var(--gold-soft); border-radius: var(--radius-lg);
  padding: 64px 56px; text-align: center;
}
@media (max-width: 600px) { .inquiry-wrap { padding: 40px 26px; } }
.inquiry-form { max-width: 640px; margin: 36px auto 0; text-align: left; }
.inquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 600px) { .inquiry-row { grid-template-columns: 1fr; } }
.inquiry-field label { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 0 6px; line-height: 1.3; min-height: 2.6em; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
/* Perfect input alignment across a row even when one label wraps (subgrid where supported) */
@supports (grid-template-rows: subgrid) {
  .inquiry-row { grid-template-rows: auto auto; align-items: start; }
  .inquiry-row .inquiry-field { display: grid; grid-row: span 2; grid-template-rows: subgrid; row-gap: 8px; }
  .inquiry-row .inquiry-field label { min-height: 0; margin-bottom: 0; align-self: end; }
}
.inquiry-field input, .inquiry-field select, .inquiry-field textarea {
  width: 100%; background: var(--surface2); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 13px 15px; color: var(--ivory);
  font-family: 'DM Sans', sans-serif; font-size: 14px; transition: border-color var(--transition);
}
.inquiry-field input:focus, .inquiry-field select:focus, .inquiry-field textarea:focus { outline: none; border-color: var(--gold); }
.inquiry-field textarea { min-height: 110px; resize: vertical; }
.inquiry-field-full { grid-column: 1 / -1; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 64px 40px 36px; background: var(--surface2); }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand-img { height: 34px; width: auto; display: block; margin-bottom: 16px; }
.footer-tagline img { height: 16px; width: auto; opacity: 0.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--taupe); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }
.footer-contact .footer-agent { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ivory); margin-bottom: 6px; }
.footer-contact .footer-email { font-size: 13px; color: var(--gold); }
.footer-bottom { max-width: 1180px; margin: 44px auto 0; padding-top: 24px; border-top: 1px solid var(--border-soft); font-size: 11px; color: var(--dim); letter-spacing: 0.06em; }
.footer-credits { max-width: 1180px; margin: 12px auto 0; font-size: 10.5px; color: var(--dim); letter-spacing: 0.04em; line-height: 1.7; }
.footer-credits a { color: rgba(154,147,127,0.85); }
.footer-credits a:hover { color: var(--gold); }

/* ── FLOATING CONTACT (concierge) ─────────────────────────── */
.concierge-btn {
  position: fixed; bottom: 28px; right: 26px; z-index: 200;
  display: flex; align-items: center; gap: 11px;
  background: var(--gold); color: var(--bg);
  padding: 13px 22px; border-radius: 999px;
  box-shadow: 0 8px 30px rgba(200,162,75,0.35);
  transition: transform var(--transition), background var(--transition);
}
.concierge-btn:hover { transform: translateY(-2px); background: var(--gold-lt); color: var(--bg); }
.concierge-text { display: flex; flex-direction: column; line-height: 1.2; }
.concierge-text strong { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--bg); }
.concierge-text span { font-size: 10px; letter-spacing: 0.06em; color: rgba(10,10,15,0.7); }
#back-top {
  position: fixed; bottom: 28px; right: 26px; z-index: 199;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface3); color: var(--gold); border: 1px solid var(--gold-soft); cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
  display: flex; align-items: center; justify-content: center;
}
#back-top:hover { transform: translateY(-2px); }

/* ── PAGE SUBNAV (sticky tabs) ────────────────────────────── */
.page-subnav {
  position: sticky; top: 64px; z-index: 90;
  background: rgba(10,10,15,0.9); backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.page-subnav-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; display: flex; overflow-x: auto; scrollbar-width: none; }
.page-subnav-inner::-webkit-scrollbar { display: none; }
.page-subnav-tab {
  display: flex; align-items: center; gap: 7px; padding: 16px 22px;
  border: none; background: transparent; color: var(--dim);
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s; flex-shrink: 0;
}
.page-subnav-tab:hover { color: var(--taupe); }
.page-subnav-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.page-panel { animation: panelFade 0.4s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes panelFade { from { opacity:0; transform:translateY(10px) } to { opacity:1; transform:translateY(0) } }
.page-panel.hidden { display: none !important; }

/* ── STARS (subtle gold dust in hero) ─────────────────────── */
.stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.star { position: absolute; width: 2px; height: 2px; background: rgba(200,162,75,0.5); border-radius: 50%; animation: twinkle 4s ease-in-out infinite; }
@keyframes twinkle { 0%,100%{opacity:0.15} 50%{opacity:0.7} }

/* ── SKIP LINK / A11Y ─────────────────────────────────────── */
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: var(--gold); color: var(--bg); padding: 10px 16px; border-radius: 6px; }

/* ── MOBILE BOTTOM NAV ────────────────────────────────────── */
.bottom-nav { display: none; }
@media (max-width: 760px) {
  .bottom-nav {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    background: rgba(10,10,15,0.96); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
  }
  .bottom-nav-inner { display: flex; justify-content: space-around; padding: 8px 0 10px; }
  .bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--dim); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }
  .bottom-nav-item.active { color: var(--gold); }
  .bottom-nav-icon { font-size: 17px; }
  body { padding-bottom: 60px; }
}


/* ── ACCESSIBILITY ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .star { animation: none !important; }
}
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible,
.page-subnav-tab:focus-visible, .lux-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── CONTACT MODAL (same mail solution as parks) ─────────── */
.contact-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.contact-modal.open { display: block; }
.contact-modal-backdrop { position:absolute; inset:0; background:rgba(5,5,9,0.78); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); }
.contact-modal-card { position:relative; z-index:1; max-width:440px; margin:13vh auto 0; width:calc(100% - 40px); background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:40px 36px; box-shadow:var(--shadow-lg); text-align:center; animation:contactPop .25s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes contactPop { from{opacity:0;transform:translateY(14px) scale(.98);} to{opacity:1;transform:none;} }
.contact-modal-close { position:absolute; top:10px; right:14px; background:none; border:none; color:var(--taupe); font-size:28px; line-height:1; cursor:pointer; }
.contact-modal-close:hover { color:var(--ivory); }
.contact-modal-eyebrow { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.contact-modal-title { font-family:'Cormorant Garamond',serif; color:var(--ivory); font-size:30px; font-weight:300; margin-bottom:10px; }
.contact-modal-text { color:var(--taupe); font-size:14.5px; line-height:1.6; margin-bottom:20px; }
.contact-modal-email { display:inline-block; font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--gold); word-break:break-all; margin-bottom:22px; }
.contact-modal-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.contact-modal-btn { display:inline-flex; align-items:center; justify-content:center; padding:12px 22px; border-radius:999px; font-size:11px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; cursor:pointer; border:1px solid var(--border); background:transparent; color:var(--ivory); text-decoration:none; transition:all var(--transition); }
.contact-modal-btn:hover { border-color:var(--gold); color:var(--gold); }
.contact-modal-btn.primary { background:var(--gold); color:var(--bg); border-color:var(--gold); }
.contact-modal-btn.primary:hover { background:var(--gold-lt); color:var(--bg); }
.contact-modal-form { display:inline-block; margin-top:18px; font-size:12px; letter-spacing:0.04em; color:var(--taupe); }
.contact-modal-form:hover { color:var(--gold); }
.contact-modal-note { min-height:18px; margin-top:12px; font-size:12px; color:var(--gold); }
@media (prefers-reduced-motion: reduce){ .contact-modal-card{animation:none;} }

/* ── SUBNAV SCROLL ARROWS ─────────────────────────────────── */
.page-subnav-arrow { position:absolute; top:0; bottom:0; width:54px; display:flex; align-items:center; border:none; color:var(--gold); font-size:26px; line-height:1; cursor:pointer; z-index:3; opacity:0; pointer-events:none; transition:opacity .2s; font-family:'DM Sans',sans-serif; }
.page-subnav-arrow.show { opacity:1; pointer-events:auto; }
.page-subnav-arrow.prev { left:0; justify-content:flex-start; padding-left:14px; background:linear-gradient(90deg, var(--bg) 58%, rgba(10,10,15,0)); }
.page-subnav-arrow.next { right:0; justify-content:flex-end; padding-right:14px; background:linear-gradient(270deg, var(--bg) 58%, rgba(10,10,15,0)); }

/* ── CINEMATIC JOURNEY (.cj) ──────────────────────────────── */
.cj { scroll-margin-top: 120px; padding: 0 0 30px; }
.cj + .cj { border-top: 1px solid var(--border-soft); margin-top: 10px; }
.cj-hero { position:relative; min-height: 62vh; display:flex; align-items:flex-end; overflow:hidden; background-size:cover; background-position:center; }
.cj-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(10,10,15,0.94) 2%, rgba(10,10,15,0.4) 48%, rgba(10,10,15,0.2)); z-index:0; }
.cj-hero-inner { position:relative; z-index:1; max-width:1180px; margin:0 auto; width:100%; padding:0 40px 52px; }
@media (max-width:600px){ .cj-hero-inner { padding:0 22px 36px; } }
.cj-hero .eyebrow { display:block; margin-bottom:14px; }
.cj-hero h2 { font-size: clamp(34px,5vw,60px); margin-bottom:14px; max-width:18ch; }
.cj-route { font-size:12px; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.cj-hook { max-width:62ch; font-size:16.5px; color:var(--ivory); opacity:0.92; font-weight:300; margin-bottom:26px; }
.cj-hero-credit { position:absolute; bottom:12px; right:18px; z-index:1; font-size:10px; color:rgba(243,239,230,0.45); }
.cj-hero-credit a { color:rgba(243,239,230,0.6); }
.cj-body { max-width:1180px; margin:0 auto; padding:0 40px; }
@media (max-width:600px){ .cj-body { padding:0 22px; } }
.cj-highlights { padding:56px 0 20px; }
.cj-highlights h3 { font-size:13px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-family:'DM Sans',sans-serif; font-weight:600; margin-bottom:24px; }
.cj-highlight-list { list-style:none; display:grid; grid-template-columns:repeat(2,1fr); gap:14px 40px; }
@media (max-width:760px){ .cj-highlight-list { grid-template-columns:1fr; } }
.cj-highlight-list li { position:relative; padding-left:22px; font-size:15px; color:var(--taupe); line-height:1.6; }
.cj-highlight-list li::before { content:'—'; position:absolute; left:0; color:var(--gold); }
.cj-chapter { display:grid; grid-template-columns:1.05fr 1fr; gap:48px; align-items:center; padding:48px 0; }
.cj-chapter.reverse .cj-chapter-media { order:2; }
@media (max-width:860px){ .cj-chapter, .cj-chapter.reverse { grid-template-columns:1fr; gap:24px; } .cj-chapter.reverse .cj-chapter-media { order:0; } }
.cj-chapter-media { position:relative; border-radius:var(--radius-md); overflow:hidden; }
.cj-chapter-media img { width:100%; height:380px; object-fit:cover; display:block; transition:transform .9s cubic-bezier(0.16,1,0.3,1); }
.cj-chapter-media:hover img { transform:scale(1.04); }
.cj-chapter-media figcaption { position:absolute; bottom:10px; left:14px; font-size:10.5px; font-style:italic; color:rgba(243,239,230,0.82); background:rgba(10,10,15,0.45); padding:3px 9px; border-radius:4px; -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); }
.cj-chapter-num { font-family:'Cormorant Garamond',serif; font-size:46px; font-weight:300; color:var(--gold-soft); line-height:1; display:block; margin-bottom:8px; }
.cj-chapter-days { font-size:11px; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.cj-chapter-body h3 { margin-bottom:14px; }
.cj-chapter-body p { font-size:15px; margin-bottom:16px; }
.cj-hotel { font-size:12px; letter-spacing:0.06em; color:var(--taupe); padding-top:14px; border-top:1px solid var(--border-soft); }
.cj-hotel strong { color:var(--ivory); }
.cj-foot { display:flex; align-items:center; gap:18px; flex-wrap:wrap; padding:30px 0 10px; }
.cj-foot span { font-size:13px; color:var(--taupe); }

/* ── FOOTER SOCIAL LINKS ─────────────────────────────────── */
.footer-social { display:flex; gap:16px; margin-top:14px; }
.footer-social a { color:var(--gold); display:inline-flex; align-items:center; justify-content:center; transition: color var(--transition), transform var(--transition); }
.footer-social a:hover { color:var(--gold-lt); transform: translateY(-2px); }

/* ===== Credentials + Viator (Beth's badges + affiliate link) — added 2026-06-07 ===== */
.cred-strip{max-width:1180px;margin:42px auto 0;padding-top:34px;border-top:1px solid var(--border-soft);text-align:center}
.cred-strip-label{font-size:11px;letter-spacing:.24em;text-transform:uppercase;color:var(--taupe);margin-bottom:24px}
.cred-badges{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-start;gap:24px}
.cred-badge{display:flex;flex-direction:column;align-items:center;gap:12px;width:148px}
.cred-card{width:100%;height:106px;background:#fff;border:1px solid rgba(200,162,75,.35);border-radius:16px;box-shadow:0 12px 30px rgba(0,0,0,.34);display:flex;align-items:center;justify-content:center;padding:16px}
.cred-card img{max-height:74px;max-width:116px;width:auto;height:auto;display:block}
.cred-badge span{font-size:9.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--taupe)}
.viator-foot{max-width:1180px;margin:30px auto 0;padding-top:28px;border-top:1px solid var(--border-soft);text-align:center}
.viator-foot-txt{display:block;font-family:'Cormorant Garamond',serif;font-weight:300;font-size:21px;color:var(--ivory);margin-bottom:15px}
.viator-foot-btn{display:inline-block;border:1px solid var(--gold);color:var(--gold);padding:11px 28px;border-radius:999px;font-size:12px;letter-spacing:.14em;text-transform:uppercase;transition:all var(--transition)}
.viator-foot-btn:hover{background:var(--gold);color:var(--bg)}
.viator-disclosure{display:block;margin-top:13px;font-size:10.5px;color:var(--dim);letter-spacing:.04em}
.viator-band{background:var(--surface2);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:88px 28px;text-align:center}
.viator-band-inner{max-width:720px;margin:0 auto}
.viator-band .eyebrow{font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin-bottom:18px}
.viator-band h2{font-family:'Cormorant Garamond',serif;font-weight:300;font-size:clamp(30px,4vw,46px);color:var(--ivory);line-height:1.12;margin-bottom:20px}
.viator-band p{color:var(--taupe);font-size:16px;line-height:1.85;margin-bottom:30px}
.viator-band .viator-cta{display:inline-block;background:var(--gold);color:var(--bg);padding:15px 40px;border-radius:999px;font-size:13px;letter-spacing:.14em;text-transform:uppercase;font-weight:500;transition:all var(--transition)}
.viator-band .viator-cta:hover{background:var(--gold-lt);transform:translateY(-2px)}
.viator-band .viator-note{margin-top:16px;font-size:11px;color:var(--dim);letter-spacing:.04em}
@media (max-width:600px){.cred-badge{width:134px}.cred-card{height:94px}.cred-card img{max-height:64px}}
/* cred-band wrapper (standalone, before footer) */
.cred-band{background:var(--surface2);border-top:1px solid var(--border);padding:58px 28px 16px;text-align:center}
.cred-band .cred-strip{margin:0 auto;border-top:0;padding-top:0}
/* Viator card value props + impact (2026-06-07b) */
.viator-props{list-style:none;display:flex;flex-wrap:wrap;justify-content:center;gap:10px 12px;margin:2px 0 30px;padding:0}
.viator-props li{font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--taupe);border:1px solid rgba(200,162,75,.4);border-radius:999px;padding:7px 16px}
.viator-impact{max-width:600px;margin:18px auto 0;font-size:12.5px;line-height:1.75;color:var(--taupe)}
.viator-foot-txt{max-width:680px;margin-left:auto;margin-right:auto}
/* Credentials: advisor vs agency groups (2026-06-07f) */
.cred-cols{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-start;gap:30px 60px}
.cred-group{text-align:center}
.cred-group-label{font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--taupe);margin-bottom:18px}
.cred-badge.wide{width:200px}
.cred-badge.wide .cred-card img{max-width:168px;max-height:60px}
/* advisor↔agency affiliation line (2026-06-07g) */
.cred-intro{max-width:760px;margin:0 auto 30px;text-align:center;font-size:14px;line-height:1.7;color:var(--taupe)}
.cred-intro b{color:var(--ivory);font-weight:600}
.cred-intro .cred-host{color:var(--gold)}

/* footer: links removed -> brand left, contact right (2026-06-08) */
.footer-inner{display:flex;justify-content:space-between;align-items:flex-start;gap:40px;flex-wrap:wrap}
@media (max-width:760px){.footer-inner{flex-direction:column;gap:28px}}
/* Viator headline on one line (2026-06-08) */
.viator-band h2{white-space:nowrap}
@media (max-width:600px){.viator-band h2{white-space:normal}}

/* Short fillable contact form (canonical modal) — luxury tokens */
.contact-modal-form-el { display:flex; flex-direction:column; gap:10px; text-align:left; margin-top:4px; }
.cm-input { width:100%; background:var(--surface2); border:1px solid var(--border); border-radius:8px; padding:11px 13px; color:var(--ivory); font-family:inherit; font-size:14px; }
.cm-input::placeholder { color:var(--dim); }
.cm-input:focus { outline:none; border-color:var(--gold); }
textarea.cm-input { resize:vertical; min-height:74px; }
.contact-modal-ok { color:var(--gold); font-size:14.5px; line-height:1.6; padding:10px 0; }
.contact-modal-direct { margin-top:16px; font-size:12px; color:var(--taupe); }
.contact-modal-direct a { color:var(--gold); }
