/* ═══════════════════════════════════════════════════════════════
   TRAVELMATION UNIVERSAL MAGIC PORTAL — Shared Design System
   Version 2.0 · March 2026
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg:          #0D0D1A;
  --surface:     #1A1A2E;
  --surface2:    #141428;
  --surface3:    #12122a;
  --accent: #0072CE;
  --accent-lt: #3DA5FF;
  --accent-dk: #005395;
  --gold:        #E0A526;
  --gold-lt:     #f0b02c;
  --sand:        #C3AA84;
  --offwhite:    #FAF9F8;
  --dim:         rgba(195,170,132,0.55);
  --border:      rgba(228,225,220,0.08);
  --border-sand: rgba(195,170,132,0.18);
  --transition:  0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.55);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --uo: rgba(0,110,207,0.2);      --uo-text: #3DA5FF;
  --eu: rgba(120,60,220,0.2);     --eu-text: #A77BFF;
  --uh: rgba(230,120,30,0.2);     --uh-text: #F5A623;
  --usj: rgba(220,50,60,0.2);     --usj-text: #FF6B7A;
  --ub: rgba(200,160,50,0.2);     --ub-text: #D4A537;
  --uss: rgba(40,190,120,0.2);    --uss-text: #4ADE80;
}

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

body {
  background: var(--bg);
  color: var(--offwhite);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--offwhite);
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--offwhite);
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.3;
  color: var(--offwhite);
}
.card h3, .resort-card h3, .guide-card h3, .bento-card h3, .info-box h3, .new-box h3, .warn-box h3, .tip-box h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--offwhite);
  line-height: 1.4;
}
p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--sand);
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-lt); }

/* ── FOCUS INDICATORS (WCAG 2.1 AA) ─────────────────────── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible { outline-offset: 3px; }
button:focus-visible, .btn:focus-visible { outline-offset: 2px; }
.bottom-nav-item:focus-visible { outline-offset: -2px; border-radius: 8px; }
.page-subnav-tab:focus-visible { outline-offset: -2px; }
.filter-chip:focus-visible { outline-offset: -1px; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0;
}

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

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.section {
  padding: 80px 0;
}
.section + .section {
  padding-top: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .divider { margin: 0 20px; }
  .section { padding: 56px 0; }
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.header {
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-sand);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 28px;
  width: auto;
  display: block;
  background: var(--offwhite);
  padding: 4px 10px;
  border-radius: 6px;
  transition: opacity var(--transition);
}
.logo-img:hover { opacity: 0.88; }
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav a {
  font-size: 12px;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav a:hover { color: var(--offwhite); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--accent); }
.nav a.active::after { transform: scaleX(1); }

/* Search trigger */
.search-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  padding: 7px 13px;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 210px;
  color: rgba(195,170,132,0.55);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  flex-shrink: 0;
}
.search-trigger:hover {
  border-color: rgba(0,114,206,0.4);
  background: rgba(0,114,206,0.06);
  color: rgba(195,170,132,0.8);
}
.search-trigger svg { opacity: 0.5; flex-shrink: 0; }
.search-shortcut {
  margin-left: auto;
  font-size: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 5px;
  color: rgba(195,170,132,0.4);
  font-family: 'DM Sans', monospace;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-sand);
  border-radius: 6px;
  padding: 7px 9px;
  cursor: pointer;
  color: var(--sand);
  margin-left: auto;
  flex-shrink: 0;
}
.menu-toggle svg { display: block; }

/* Mobile nav drawer */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(13,13,26,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-sand);
  padding: 16px 20px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; animation: slideDown 0.22s cubic-bezier(0.4, 0, 0.2, 1) both; }
.mobile-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--sand); text-transform: uppercase;
  letter-spacing: 0.08em; padding: 10px 12px;
  border-radius: 8px; transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(0,114,206,0.1);
  color: var(--accent);
}

@media (max-width: 900px) {
  .header { padding: 0 20px; gap: 16px; }
  .nav { display: none; }
  .search-trigger { min-width: 44px; }
  .search-trigger span:not(.search-shortcut) { display: none; }
  .search-trigger .search-shortcut { display: none; }
  .menu-toggle { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 480px;
  background: linear-gradient(160deg, #0D0D1A 0%, #12122a 40%, #0a0a1c 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 72px 24px 80px;
}
/* Photo overlay for hero when a bg-photo class is present */
.hero.has-photo {
  background-size: cover;
  background-position: center center;
}
.hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,26,0.55) 0%,
    rgba(13,13,26,0.30) 35%,
    rgba(13,13,26,0.65) 70%,
    rgba(13,13,26,0.90) 100%
  );
  z-index: 0;
  pointer-events: none;
}
/* Homepage hero — full cinematic treatment */
.hero.hero-home {
  min-height: 92vh;
  background-position: center center;
  background-size: cover;
  /* Covers any sub-pixel rendering gap at the hero/page boundary on scroll */
  box-shadow: 0 8px 0 8px #0D0D1A;
}
.hero.hero-home::after {
  /* Strong centre vignette so text is always readable over bright fireworks */
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(13,13,26,0.55) 0%, rgba(13,13,26,0.0) 100%),
    linear-gradient(
      180deg,
      rgba(13,13,26,0.35) 0%,
      rgba(13,13,26,0.20) 25%,
      rgba(13,13,26,0.55) 55%,
      rgba(13,13,26,0.92) 78%,
      rgba(13,13,26,1.00) 92%,
      rgba(13,13,26,1.00) 100%
    );
}
.hero.has-photo .stars,
.hero.has-photo .hero-inner,
.hero.has-photo .hero-scroll-hint { z-index: 1; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(0,114,206,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 25% 15%, rgba(224,165,38,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 75% 20%, rgba(0,114,206,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero .eyebrow { margin-bottom: 20px; display: block; }
.hero h1 { margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero.has-photo p { text-shadow: 0 1px 12px rgba(0,0,0,0.75); }
.hero.has-photo .hero-badge { text-shadow: none; }
.hero p {
  font-size: 17px;
  font-weight: 300;
  color: var(--sand);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(195,170,132,0.3);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll-hint svg { opacity: 0.4; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* Page hero (inner pages — shorter) */
.page-hero {
  position: relative;
  padding: 56px 48px 52px;
  overflow: hidden;
  background: linear-gradient(160deg, #0D0D1A 0%, #12122a 100%);
  background-size: cover;
  background-position: center;
}
.page-hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,13,26,0.90) 0%,
    rgba(13,13,26,0.70) 50%,
    rgba(13,13,26,0.50) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.page-hero.has-photo .page-hero-inner,
.page-hero.has-photo .stars { z-index: 1; position: relative; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 90% at 0% 50%, rgba(0,114,206,0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── PHOTO BANNER (destination section headers) ──── */
.photo-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 0;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.photo-banner:hover img { transform: scale(1.04); }
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,26,0.65) 0%, rgba(13,13,26,0.15) 60%, transparent 100%);
}
.photo-banner-label {
  position: absolute;
  bottom: 16px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  color: var(--offwhite);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 1;
}
.photo-banner-sub {
  position: absolute;
  bottom: 16px; right: 16px;
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.08em;
  z-index: 1;
}

/* ── PHOTO CARD (dining / resort photo thumbnails) ── */
.photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.photo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.photo-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-card:hover .photo-card-img { transform: scale(1.05); }
.photo-card-body { padding: 16px 18px; }
.photo-card-label {
  font-size: 10px; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.photo-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 8px;
  line-height: 1.2;
}
.photo-card-desc {
  font-size: 13px; color: var(--sand); line-height: 1.6;
}

/* ── PHOTO GRID ─────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 600px) { .photo-grid { grid-template-columns: 1fr; } }

/* Unsplash attribution */
.unsplash-credit {
  font-size: 10px;
  color: rgba(195,170,132,0.3);
  text-align: right;
  margin-top: 4px;
  letter-spacing: 0.03em;
}
/* Hero photo credit — bottom-right overlay inside hero/page-hero */
.hero-photo-credit {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  z-index: 2;
  pointer-events: none;
  line-height: 1.4;
}
.hero-photo-credit a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  pointer-events: auto;
}
.hero-photo-credit a:hover { color: rgba(255,255,255,0.55); text-decoration: underline; }
/* Bento grid attribution — below grid */
.bento-credit {
  font-size: 9px;
  color: rgba(195,170,132,0.25);
  text-align: right;
  margin-top: 6px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.bento-credit a { color: rgba(195,170,132,0.25); text-decoration: none; }
.bento-credit a:hover { color: rgba(195,170,132,0.5); text-decoration: underline; }
.page-hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.page-hero .eyebrow { margin-bottom: 14px; display: block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 640px; font-size: 16px; }

/* Page hero action bar */
.page-hero-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 24px;
}

/* Dest-specific hero tints */
\.hero-uo::before  { background: radial-gradient(ellipse 60% 70% at 50% 90%, rgba(0,114,206,0.16) 0%, transparent 65%); }
.hero-eu::before  { background: radial-gradient(ellipse 60% 70% at 50% 90%, rgba(120,60,220,0.13) 0%, transparent 65%); }
.hero-uh::before  { background: radial-gradient(ellipse 60% 70% at 50% 90%, rgba(230,120,30,0.13) 0%, transparent 65%); }
.hero-usj::before { background: radial-gradient(ellipse 60% 70% at 50% 90%, rgba(220,50,60,0.13) 0%, transparent 65%); }
.hero-ub::before  { background: radial-gradient(ellipse 60% 70% at 50% 90%, rgba(200,160,50,0.13) 0%, transparent 65%); }
.hero-uss::before { background: radial-gradient(ellipse 60% 70% at 50% 90%, rgba(40,190,120,0.13) 0%, transparent 65%); }

/* Star field */
.stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.star {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: twinkle var(--dur, 3s) var(--delay, 0s) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: var(--bright, 0.6); transform: scale(1); }
}

@media (max-width: 768px) {
  .page-hero { padding: 40px 20px 36px; }
  .hero { min-height: 400px; padding: 56px 20px 64px; }
  .hero.hero-home { min-height: 85vh; }
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.07); }
.btn-primary { background: var(--accent); color: var(--offwhite); box-shadow: 0 4px 16px rgba(0,114,206,0.35); }
.btn-primary:hover { background: var(--accent-lt); color: var(--offwhite); box-shadow: 0 6px 20px rgba(0,114,206,0.45); }
.btn-secondary { background: transparent; color: var(--offwhite); border: 1px solid var(--border-sand); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold { background: var(--gold); color: var(--bg); font-weight: 700; box-shadow: 0 4px 16px rgba(224,165,38,0.3); }
.btn-gold:hover { background: var(--gold-lt); color: var(--bg); }
.btn-sm { font-size: 11px; padding: 8px 18px; }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--sand); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); color: var(--offwhite); }

/* ── CARDS ────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card-grid-3-sm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.card:hover {
  border-color: rgba(0,114,206,0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.card-img {
  height: 150px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1828 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
}
.card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top, var(--surface), transparent);
}
.card-body { padding: 20px 22px 16px; }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--offwhite);
  margin-bottom: 6px;
  line-height: 1.3;
}
.card-desc { font-size: 13px; color: var(--sand); line-height: 1.65; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.1);
}
.card-meta { font-size: 12px; color: var(--sand); opacity: 0.7; }
.card-cta {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.card-cta:hover { color: var(--accent-lt); }
.card-cta::after { content: '→'; transition: transform var(--transition); }
.card-cta:hover::after { transform: translateX(3px); }

/* Beth's Pick badge */
.beths-pick {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--bg);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 12px;
  letter-spacing: 0.04em; z-index: 1;
  box-shadow: 0 0 0 2px var(--bg), 0 3px 12px rgba(0,0,0,0.5);
}

/* Featured card (full-width callout) */
.card-featured {
  background: linear-gradient(135deg, rgba(0,114,206,0.12) 0%, rgba(0,114,206,0.04) 100%);
  border: 1px solid rgba(0,114,206,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 20px;
}
.card-featured-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.card-featured h4 { font-size: 17px; margin-bottom: 6px; }
.card-featured p { font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .card-grid, .card-grid-3-sm { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid, .card-grid-2, .card-grid-3-sm, .card-grid-4 { grid-template-columns: 1fr; }
  .card-featured { flex-direction: column; padding: 20px; }
}

/* ── TAGS / PILLS ─────────────────────────────────────────── */
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(0,114,206,0.15);
  color: var(--accent);
  border: 1px solid rgba(0,114,206,0.2);
}
.tag-gold { background: rgba(224,165,38,0.18); color: #F0B840; border-color: rgba(224,165,38,0.35); }
.tag-uo  { background: var(--uo); color: var(--uo-text); border-color: rgba(0,110,207,0.3); }
.tag-eu  { background: var(--eu); color: var(--eu-text); border-color: rgba(120,60,220,0.3); }
.tag-uh  { background: var(--uh); color: var(--uh-text); border-color: rgba(230,120,30,0.3); }
.tag-usj { background: var(--usj); color: var(--usj-text); border-color: rgba(220,50,60,0.3); }
.tag-ub  { background: var(--ub); color: var(--ub-text); border-color: rgba(200,160,50,0.3); }
.tag-uss { background: var(--uss); color: var(--uss-text); border-color: rgba(40,190,120,0.3); }
.tag-new  { background: rgba(224,165,38,0.15); color: var(--accent); border-color: rgba(224,165,38,0.25); }
.tag-beth { background: rgba(224,165,38,0.15); color: var(--gold); border-color: rgba(224,165,38,0.3); }

/* Filter pills */
.filter-bar {
  background: rgba(20,20,40,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(195,170,132,0.12);
  border-radius: 12px;
  padding: 14px 20px;
}
.filter-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-row + .filter-row { margin-top: 8px; }
.filter-dim {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sand); opacity: 0.7; min-width: 80px;
}
.pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 20px;
  cursor: pointer; transition: all var(--transition);
  border: 1px solid var(--border-sand);
  color: var(--sand); background: transparent;
}
.pill:hover { border-color: var(--accent); color: var(--offwhite); }
.pill.active { background: var(--accent); border-color: var(--accent); color: var(--offwhite); }

/* ── DESTINATION TABS ─────────────────────────────────────── */
.dest-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.dest-tabs::-webkit-scrollbar { display: none; }
.dest-tab {
  padding: 14px 28px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
  color: var(--dim);
  border-bottom: 2px solid transparent;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.dest-tab:hover { color: var(--sand); }
.dest-tab.active { color: var(--offwhite); border-bottom-color: var(--accent); }

/* ── INFO BLOCKS ──────────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.info-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition);
}
.info-block:hover { border-color: var(--border-sand); }
.info-block.surface2 { background: var(--surface2); border-color: rgba(228,225,220,0.07); }
.info-block h4 { margin-bottom: 14px; }
.info-block ul { list-style: none; }
.info-block ul li {
  font-size: 13px; color: var(--sand); line-height: 1.6;
  padding: 6px 0 6px 24px; border-bottom: 1px solid var(--border);
  display: block;
  position: relative;
}
.info-block ul li:last-child { border-bottom: none; }
.info-block ul li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 6px;
}
.info-block ul li strong {
  color: var(--offwhite);
  font-weight: 600;
  white-space: normal;
  padding-right: 2px;
}

@media (max-width: 700px) {
  .info-grid, .info-grid-3 { grid-template-columns: 1fr; }
}

/* ── TABLE ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 500px;
}
.data-table thead tr {
  background: rgba(0,114,206,0.1);
  border-bottom: 1px solid rgba(0,114,206,0.2);
}
.data-table th {
  padding: 14px 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); text-align: left;
}
.data-table td {
  padding: 13px 18px;
  font-size: 13px; color: var(--sand);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr { transition: background var(--transition); }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,0.012); }
.data-table td.highlight { color: var(--gold); font-weight: 600; }
.data-table td strong { color: var(--offwhite); }
.data-table td .tag { display: inline-flex; }

/* ── PRICE TABLE (booking windows, pricing reference) ────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 480px;
}
.price-table thead tr {
  background: rgba(0,114,206,0.08);
  border-bottom: 1px solid rgba(0,114,206,0.2);
}
.price-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent);
}
.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--sand);
  line-height: 1.5;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr { transition: background var(--transition); }
.price-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.price-table tr:nth-child(even) td { background: rgba(255,255,255,0.012); }
.price-table td strong { color: var(--offwhite); }

/* ── HIGHLIGHT BOX (inline callout blocks) ────────────────── */
.highlight-box {
  background: rgba(224,165,38,0.06);
  border: 1px solid rgba(224,165,38,0.22);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--sand);
  line-height: 1.65;
}
.highlight-box strong { color: var(--offwhite); }
.highlight-box p { margin: 0; font-size: 13px; color: var(--sand); line-height: 1.65; }
.highlight-box p + p { margin-top: 8px; }

/* ── STAT STRIP ───────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.stat-item:hover {
  background: rgba(0,114,206,0.07);
  transform: translateY(-2px);
  box-shadow: inset 0 -2px 0 var(--accent);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: var(--offwhite); line-height: 1;
  margin-bottom: 8px;
}
.stat-number em { color: var(--gold); font-style: normal; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); }

@media (max-width: 700px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 16px; }
  .stat-number { font-size: 32px; }
}

/* ── TIPS / CALLOUTS ──────────────────────────────────────── */
.tip-box {
  background: rgba(0,114,206,0.07);
  border: 1px solid rgba(0,114,206,0.18);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
}
.tip-box .tip-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 7px;
  display: flex; align-items: center; gap: 6px;
}
.tip-box p { font-size: 13px; color: var(--sand); line-height: 1.65; margin: 0; }
.tip-box p strong { color: var(--offwhite); }

.warn-box {
  background: rgba(224,165,38,0.07);
  border: 1px solid rgba(224,165,38,0.18);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
}
.warn-box .warn-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px;
  display: flex; align-items: center; gap: 6px;
}
.warn-box p { font-size: 13px; color: var(--sand); line-height: 1.65; margin: 0; }
.warn-box p strong { color: var(--offwhite); }
.warn-box ul { list-style: none; margin: 8px 0 0; padding: 0; }
.warn-box ul li {
  font-size: 13px; color: var(--sand); line-height: 1.65;
  padding: 7px 0 7px 24px; border-bottom: 1px solid rgba(224,165,38,0.10);
  position: relative;
}
.warn-box ul li:last-child { border-bottom: none; }
.warn-box ul li::before {
  content: '⚡'; position: absolute; left: 0; top: 7px; font-size: 11px;
}
.warn-box ul li strong { color: var(--offwhite); font-weight: 600; }

.new-box {
  background: rgba(224,165,38,0.08);
  border: 1px solid rgba(224,165,38,0.25);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
}
.new-box .new-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 7px;
  display: flex; align-items: center; gap: 6px;
}
.new-box p { font-size: 13px; color: var(--sand); line-height: 1.65; margin: 0; }
.new-box p strong { color: var(--offwhite); }

.beth-box {
  background: rgba(224,165,38,0.06);
  border: 1px solid rgba(224,165,38,0.22);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
}
.beth-box .beth-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px;
  display: flex; align-items: center; gap: 6px;
}
.beth-box p { font-size: 13px; color: var(--sand); line-height: 1.65; margin: 0; }
.beth-box p strong { color: var(--offwhite); }

/* ── STEP LIST ─────────────────────────────────────────────── */
.step-list { list-style: none; }
.step-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--sand);
}
.step-list li:last-child { border-bottom: none; }
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: var(--offwhite);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.step-list li strong { color: var(--offwhite); }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header .eyebrow { display: block; margin-bottom: 12px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 580px; }

/* ── SUBSECTION HEADING UTILITIES ─────────────────────────── */
/* Gold h3 variants */
.subhead        { color: var(--gold) !important; margin-bottom: 16px; }
.subhead-20     { color: var(--gold) !important; margin-bottom: 20px; }
/* Margin helpers (replaces inline margin styles) */
.mb-4  { margin-bottom: 4px !important; }
.mb-6  { margin-bottom: 6px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-14 { margin-bottom: 14px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-10 { margin-top: 10px !important; }
/* Wrap any overflow table for mobile scroll */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-md);
  -webkit-overflow-scrolling: touch;
}

/* ── DESTINATION CARD (home) ──────────────────────────────── */
.dest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,114,206,0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.dest-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.dest-card:hover::after { opacity: 1; }
.dest-icon { font-size: 40px; margin-bottom: 18px; display: block; }
.dest-card h3 { margin-bottom: 10px; position: relative; }
.dest-card p { font-size: 13px; line-height: 1.55; margin: 0; position: relative; }

/* ── ACCORDION ────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  transition: border-color var(--transition);
}
.accordion-item.open { border-color: var(--border-sand); }
.accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer; background: var(--surface);
  transition: background var(--transition);
  font-size: 14px; font-weight: 500; color: var(--offwhite);
  border: none; width: 100%; text-align: left; font-family: 'DM Sans', sans-serif;
}
.accordion-head:hover { background: rgba(255,255,255,0.03); }
.accordion-head .acc-icon {
  width: 20px; height: 20px;
  color: var(--accent); flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 16px 20px 22px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: 13px; color: var(--sand); line-height: 1.75; margin-bottom: 10px; }
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body ul { list-style: none; margin-top: 8px; }
.accordion-body ul li {
  font-size: 13px; color: var(--sand); line-height: 1.6;
  padding: 5px 0; display: flex; align-items: flex-start; gap: 8px;
}
.accordion-body ul li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── BADGE INLINE ─────────────────────────────────────────── */
.badge-new {
  display: inline-flex; align-items: center;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 4px;
  background: rgba(52,199,89,0.18); color: #4ade80;
  border: 1px solid rgba(52,199,89,0.3);
  vertical-align: middle; margin-left: 6px;
}

/* ── PROGRESS / TIMELINE ──────────────────────────────────── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 4px; bottom: 4px;
  width: 1px; background: var(--border-sand);
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute; left: -24px; top: 6px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,114,206,0.2);
}
.timeline-item h4 { font-size: 14px; margin-bottom: 4px; }
.timeline-item p { font-size: 13px; margin: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-sand);
  padding: 40px 48px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
}
.footer-left p { font-size: 13px; color: var(--sand); line-height: 1.85; font-weight: 300; }
.footer-left a { color: var(--accent); transition: color var(--transition); }
.footer-left a:hover { color: var(--accent-lt); }
.footer-copyright { font-size: 11px; color: rgba(195,170,132,0.35); margin-top: 10px; }
.footer-logo img {
  height: 26px; width: auto; display: block;
  background: var(--offwhite); padding: 4px 10px; border-radius: 6px; opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-logo img:hover { opacity: 1; }

/* Rich footer layout (v2) */
.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand-img {
  height: 32px;
  width: auto;
  display: block;
  background: var(--offwhite);
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0.88;
  transition: opacity var(--transition);
}
.footer-brand-img:hover { opacity: 1; }
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--offwhite);
  letter-spacing: 0.02em;
}
.footer-brand .footer-tagline {
  margin-top: 6px;
  display: block;
}
.footer-brand .footer-tagline img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
}
.footer-links a {
  font-size: 11px; font-weight: 500;
  color: var(--sand);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}
.footer-agent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600;
  color: var(--offwhite);
  line-height: 1.2;
}
.footer-email {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 400;
}
.footer-email:hover { color: var(--accent-lt); }
.footer-bottom {
  border-top: 1px solid rgba(228,225,220,0.06);
  padding: 14px 0;
  text-align: center;
  font-size: 11px;
  color: rgba(195,170,132,0.3);
  letter-spacing: 0.03em;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; align-items: flex-start; }
  .footer-contact { align-items: flex-start; text-align: left; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .footer { padding: 32px 24px 0; margin-top: 60px; }
}

/* ── SEARCH OVERLAY (shared) ──────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,15,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; flex-direction: column;
  align-items: center; padding-top: 80px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-modal {
  width: calc(100% - 40px); max-width: 700px;
  background: #13132a;
  border: 1px solid var(--border-sand);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.03);
  transform: translateY(-16px) scale(0.98);
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1);
}
.search-overlay.open .search-modal { transform: translateY(0) scale(1); }
.search-input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(228,225,220,0.07);
}
.search-input-row svg { flex-shrink: 0; color: var(--sand); opacity: 0.6; }
#search-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 400;
  color: var(--offwhite); caret-color: var(--accent);
}
#search-input::placeholder { color: rgba(195,170,132,0.35); }
.search-esc {
  font-size: 11px; color: rgba(195,170,132,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 3px 7px; cursor: pointer;
  font-family: 'DM Sans', monospace; transition: color var(--transition); flex-shrink: 0;
}
.search-filters {
  display: flex; gap: 6px; padding: 10px 22px;
  border-bottom: 1px solid rgba(228,225,220,0.06); flex-wrap: wrap;
}
.sf-pill {
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 20px;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.15s; color: rgba(195,170,132,0.6);
  background: rgba(255,255,255,0.04);
  font-family: 'DM Sans', sans-serif;
}
.sf-pill:hover { color: var(--offwhite); border-color: var(--border-sand); }
.sf-pill.sf-active { color: var(--offwhite); }
.sf-pill[data-dest="all"].sf-active  { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.sf-pill[data-dest="all"].sf-active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.sf-pill[data-dest="uo"].sf-active  { background: rgba(0,110,207,0.25); border-color: rgba(0,110,207,0.5); color: var(--uo-text); }
.sf-pill[data-dest="eu"].sf-active  { background: rgba(120,60,220,0.2); border-color: rgba(120,60,220,0.45); color: var(--eu-text); }
.sf-pill[data-dest="uh"].sf-active  { background: rgba(230,120,30,0.2); border-color: rgba(230,120,30,0.45); color: var(--uh-text); }
.sf-pill[data-dest="usj"].sf-active { background: rgba(220,50,60,0.2); border-color: rgba(220,50,60,0.45); color: var(--usj-text); }
.sf-pill[data-dest="ub"].sf-active  { background: rgba(200,160,50,0.2); border-color: rgba(200,160,50,0.45); color: var(--ub-text); }
.sf-pill[data-dest="uss"].sf-active { background: rgba(40,190,120,0.2); border-color: rgba(40,190,120,0.45); color: var(--uss-text); }
.search-results { max-height: 440px; overflow-y: auto; overscroll-behavior: contain; }
.search-results::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-thumb { background: rgba(195,170,132,0.2); border-radius: 4px; }
.results-group { padding: 8px 0 4px; }
.results-group-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim); padding: 4px 22px 6px;
}
.result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 22px; cursor: pointer; transition: background 0.12s; position: relative;
}
.result-item:hover, .result-item.selected { background: rgba(0,114,206,0.1); }
.result-item.selected::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; border-radius: 0 2px 2px 0; background: var(--accent);
}
.result-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.result-icon.dest-uo  { background: rgba(0,110,207,0.15); }
.result-icon.dest-eu  { background: rgba(120,60,220,0.15); }
.result-icon.dest-uh  { background: rgba(230,120,30,0.15); }
.result-icon.dest-usj { background: rgba(220,50,60,0.15); }
.result-icon.dest-ub  { background: rgba(200,160,50,0.15); }
.result-icon.dest-uss { background: rgba(40,190,120,0.15); }
.result-icon.dest-all { background: rgba(195,170,132,0.1); }
.result-icon.dest-all { background: rgba(195,170,132,0.1); }
.result-body { flex: 1; min-width: 0; }
.result-title {
  font-size: 14px; font-weight: 500; color: var(--offwhite);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.result-title mark { background: transparent; color: var(--gold); font-weight: 600; }
.result-snippet {
  font-size: 12px; color: rgba(195,170,132,0.65);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px;
}
.result-snippet mark { background: transparent; color: rgba(224,165,38,0.85); font-weight: 500; }
.result-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 10px;
  flex-shrink: 0; align-self: flex-start; margin-top: 3px;
}
.badge-uo  { background: rgba(0,110,207,0.2); color: var(--uo-text); border: 1px solid rgba(0,110,207,0.35); }
.badge-eu  { background: rgba(120,60,220,0.15); color: var(--eu-text); border: 1px solid rgba(120,60,220,0.3); }
.badge-uh  { background: rgba(230,120,30,0.15); color: var(--uh-text); border: 1px solid rgba(230,120,30,0.3); }
.badge-usj { background: rgba(220,50,60,0.15); color: var(--usj-text); border: 1px solid rgba(220,50,60,0.3); }
.badge-ub  { background: rgba(200,160,50,0.15); color: var(--ub-text); border: 1px solid rgba(200,160,50,0.3); }
.badge-uss { background: rgba(40,190,120,0.15); color: var(--uss-text); border: 1px solid rgba(40,190,120,0.3); }
.badge-all { background: rgba(195,170,132,0.12); color: var(--sand); border: 1px solid rgba(195,170,132,0.25); }
.badge-all { background: rgba(195,170,132,0.12); color: var(--sand); border: 1px solid rgba(195,170,132,0.25); }
.search-empty { padding: 52px 22px; text-align: center; display: none; }
.search-empty.visible { display: block; }
.search-empty-icon { font-size: 38px; margin-bottom: 14px; opacity: 0.4; }
.search-empty-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--offwhite); margin-bottom: 8px; }
.search-empty-sub { font-size: 13px; color: var(--dim); }
.search-starter { padding: 18px 22px 22px; display: none; }
.search-starter.visible { display: block; }
.search-starter-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(195,170,132,0.4); margin-bottom: 12px; }
.search-suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.search-suggestion {
  font-size: 12px; color: rgba(195,170,132,0.7);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(195,170,132,0.14);
  border-radius: 20px; padding: 5px 13px;
  cursor: pointer; transition: all 0.15s;
}
.search-suggestion:hover { background: rgba(0,114,206,0.12); border-color: rgba(0,114,206,0.35); color: var(--offwhite); }
.search-footer {
  display: flex; align-items: center; gap: 18px;
  padding: 10px 22px;
  border-top: 1px solid rgba(228,225,220,0.07);
  background: rgba(0,0,0,0.18);
}
.search-hint { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(195,170,132,0.35); }
.search-hint kbd {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 1px 5px; font-size: 10px; min-width: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(195,170,132,0.55); font-family: 'DM Sans', monospace;
}
.search-result-count { margin-left: auto; font-size: 11px; color: rgba(195,170,132,0.3); font-style: italic; }
.alias-banner {
  background: rgba(224,165,38,0.1);
  border-bottom: 1px solid rgba(224,165,38,0.18);
  padding: 9px 22px;
  font-size: 12px; color: var(--sand);
  display: flex; align-items: center; gap: 6px;
}
.alias-banner s { color: rgba(195,170,132,0.4); }
.alias-banner strong { color: var(--gold); }

@media (max-width: 600px) {
  .search-overlay { padding-top: 48px; }
  .search-modal { width: calc(100% - 24px); border-radius: 14px; }
  .search-hints { display: none; }
}

/* ── SKIP TO CONTENT (accessibility) ─────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--gold);
  color: #0D0D1A;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── CSS VIEW TRANSITIONS (page-to-page fade) ─────────────── */
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
::view-transition-old(root) { animation: 120ms ease fadeOut; }
::view-transition-new(root) { animation: 200ms ease fadeIn; }

/* ── MOBILE BOTTOM NAV ────────────────────────────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13,13,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
}
.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  text-decoration: none;
  color: var(--dim);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  min-width: 48px;
}
.bottom-nav-item:hover,
.bottom-nav-item.active { color: var(--gold); }
.bottom-nav-icon { font-size: 20px; line-height: 1; }
.bottom-nav-item.active .bottom-nav-icon { filter: drop-shadow(0 0 6px rgba(224,165,38,0.6)); }
@media (max-width: 700px) {
  .bottom-nav { display: block; }
  /* Push content above bottom nav */
  body { padding-bottom: 72px; }
  /* Move Ask Beth above bottom nav */
  .ask-beth-btn { bottom: 84px; }
  #back-top { bottom: 84px !important; right: 16px !important; }
}

/* ── SMART HEADER (shrink + hide on scroll) ───────────────── */
.header {
  transition: height 0.25s ease, transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.25s ease, box-shadow 0.25s ease;
}
.header.header-shrunk {
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
/* header-hidden removed — header is always visible */

/* ── ASK BETH FLOATING CTA — scroll-aware ─────────────────── */

/* ── Back to top button — base positioning (JS overrides bottom dynamically) */
#back-top {
  position: fixed;
  bottom: 32px;
  right: 28px;  /* aligned with Ask Beth */
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--offwhite);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, bottom 0.18s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,114,206,0.5);
  z-index: 200;
}
#back-top:hover { transform: translateY(-2px); }

/* Base state: hidden below viewport */
.ask-beth-btn,
.ask-beth-btn:hover,
.ask-beth-btn:visited,
.ask-beth-btn:focus {
  color: #0D0D1A !important;
  text-decoration: none !important;
}
.ask-beth-btn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  /* Collapsed (icon-only) dimensions by default */
  padding: 14px;
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, #c8840e 100%);
  color: #0D0D1A;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  /* Always visible — no hide/show based on scroll */
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition:
    width         0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    padding       0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow    0.22s ease,
    bottom        0.18s ease-out;
  box-shadow: 0 4px 20px rgba(224,165,38,0.35), 0 2px 8px rgba(0,0,0,0.35);
}

/* Visible state (scroll-up): spring entry */
.ask-beth-btn.beth-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity       0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform     0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility    0s,
    width         0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    padding       0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow    0.22s ease,
    bottom        0.18s ease-out;
  box-shadow: 0 4px 24px rgba(224,165,38,0.45), 0 2px 8px rgba(0,0,0,0.4);
  animation: bethPulse 3.5s ease-in-out infinite 0.5s;
}

/* Expanded state (scroll-up + past threshold): full pill with text */
.ask-beth-btn.beth-expanded {
  width: auto;
  padding: 13px 20px;
  border-radius: 100px;
}

/* Hover — only when visible */
.ask-beth-btn.beth-visible:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(224,165,38,0.6), 0 4px 14px rgba(0,0,0,0.45);
  animation: none;
}
.ask-beth-btn:active {
  transform: translateY(0) scale(0.96) !important;
  animation: none;
}

/* Text — hidden in collapsed state, shown when expanded */
.ask-beth-text {
  line-height: 1;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, width 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.ask-beth-btn.beth-expanded .ask-beth-text {
  opacity: 1;
  width: auto;
  pointer-events: auto;
}

.ask-beth-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #0D0D1A;
}
.ask-beth-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.72;
  display: block;
  margin-top: 2px;
}

/* Shimmer sweep on expanded visible state */
.ask-beth-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%) skewX(-20deg);
}
.ask-beth-btn.beth-visible:hover::before {
  animation: shimmerSweep 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes bethPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(224,165,38,0.45), 0 2px 8px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 6px 32px rgba(224,165,38,0.65), 0 2px 12px rgba(0,0,0,0.4); }
}

/* Mobile: bottom-right, icon-only always */
@media (max-width: 700px) {
  .ask-beth-btn {
    right: 16px;
    left: auto;
    width: 48px;
    height: 48px;
    padding: 12px;
  }
  .ask-beth-btn.beth-expanded {
    width: 48px;
    padding: 12px;
    border-radius: 50%;
  }
  .ask-beth-btn.beth-expanded .ask-beth-text {
    opacity: 0;
    width: 0;
  }
}

/* ── PAGE FADE-IN TRANSITION ──────────────────────────────── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Apply fade-in to main content only — not fixed overlays like Ask Beth / back-to-top */
.header, main, .section, .page-hero, .hero, .footer, .dest-panels, .page-panels {
  animation: pageFadeIn 0.38s ease both;
}

/* ── PRINT STYLES ─────────────────────────────────────────── */
@media print {
  body { background: #fff !important; color: #111 !important; animation: none !important; }
  .header, .mobile-nav, .search-overlay, .search-trigger,
  .menu-toggle, #back-top, .ask-beth-btn, .dest-tabbar,
  .stars, .footer-links { display: none !important; }
  .page-hero, .hero { background: #1a1a2e !important; min-height: 80px !important; }
  .page-hero h1 { color: #111 !important; font-size: 22pt; }
  .page-hero-inner { padding: 20px 0 !important; }
  .container { max-width: 100% !important; padding: 0 16px !important; }
  a { color: #333 !important; text-decoration: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .attr-card, .secret-item, .new-box, .warn-box, .tip-box, .beth-box, .info-block {
    background: #f5f5f5 !important;
    border: 1px solid #ccc !important;
    color: #111 !important;
    break-inside: avoid;
  }
  .attr-card p, .secret-item p, .new-box p, .tip-box p, .beth-box p,
  .info-block li, .info-block p { color: #333 !important; }
  h1, h2, h3, h4 { color: #111 !important; }
  .stat-number, .stat-label, .sand, .dim { color: #555 !important; }
  .footer { border-top: 1px solid #ccc !important; background: #fff !important; }
  .footer-agent { color: #111 !important; }
  .footer-email { color: #555 !important; }
  .footer-bottom { color: #888 !important; border-color: #ddd !important; }
  table { border-collapse: collapse !important; }
  th, td { border: 1px solid #ccc !important; color: #111 !important; background: #fff !important; }
  .photo-banner { display: none !important; }
  .photo-card-img { display: none !important; }
  @page { margin: 18mm 15mm; }
}

/* ── UTILITY ──────────────────────────────────────────────── */
.text-sienna { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-sand { color: var(--sand); }
.text-green { color: #4ade80; }
.text-dim { color: var(--dim); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
/* Additional margin-top utilities */
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
/* Additional margin-bottom utilities */
.mb-28 { margin-bottom: 28px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }
/* Margin combined */
.my-28 { margin-top: 28px; margin-bottom: 28px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-14 { gap: 14px; }
.gap-16 { gap: 16px; }
/* Beth email link — reusable pattern */
.beth-email-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.beth-email-link:hover { color: var(--offwhite); }
.no-underline { text-decoration: none; }
.icon-emoji { font-size: 36px; margin-bottom: 8px; }

/* Row item patterns (replaces inline flex/grid display div styles) */
.row-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.row-item-16 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.row-item-label {
  min-width: 110px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.grid-gap-14 {
  display: grid;
  gap: 14px;
}
.grid-2-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.grid-4-sm {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 700px) {
  .grid-4-sm, .grid-2-sm { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   WORLD-CLASS UPGRADE — v3.0 · March 2026
   Inspired by: Peligoni, loj Hotel, Awwwards, Mindsparkle,
   Land-book · 2026 design research
   ════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS UPGRADE ────────────────────────────────── */
:root {
  /* Richer depth system */
  --glass-bg:        rgba(255, 255, 255, 0.04);
  --glass-bg-hover:  rgba(255, 255, 255, 0.07);
  --glass-border:    rgba(255, 255, 255, 0.08);
  --glass-blur:      blur(14px);
  --glass-shadow:    0 8px 32px rgba(0,0,0,0.36);

  /* Shimmer gold */
  --shimmer-start:   rgba(255,255,255,0);
  --shimmer-mid:     rgba(255,255,255,0.18);
  --shimmer-end:     rgba(255,255,255,0);

  /* Easing upgrades — from loj hotel research */
  --ease-luxury:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── GLASSMORPHISM 2.0 ────────────────────────────────────── */
/* Applied to: cards, info-blocks, beth-box, stat-strip */

.card,
.attr-card,
.info-block,
.pack-card,
.secret-item,
.resort-card,
.dining-card {
  background: rgba(26, 26, 46, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.3s var(--ease-smooth),
              transform 0.3s var(--ease-luxury),
              box-shadow 0.3s var(--ease-smooth),
              background 0.3s var(--ease-smooth);
}

.card:hover,
.attr-card:hover,
.pack-card:hover,
.secret-item:hover,
.resort-card:hover,
.dining-card:hover {
  background: rgba(30, 30, 56, 0.88);
  border-color: rgba(0,114,206,0.30);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 4px 12px rgba(0,114,206,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Glass info-blocks */
.info-block {
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

/* Glass beth-box — premium gold-tinted glass */
.beth-box {
  background: rgba(224,165,38,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224,165,38,0.18);
  box-shadow: 0 8px 32px rgba(224,165,38,0.08), inset 0 1px 0 rgba(224,165,38,0.1);
}

/* Glass tip-box — sienna-tinted glass */
.tip-box {
  background: rgba(0,114,206,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,114,206,0.18);
  box-shadow: 0 8px 24px rgba(0,114,206,0.1), inset 0 1px 0 rgba(0,114,206,0.08);
}

/* Glass new-box — green-tinted glass */
.new-box {
  background: rgba(74,222,128,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(74,222,128,0.14);
  box-shadow: inset 0 1px 0 rgba(74,222,128,0.06);
}

/* Glass warn-box */
.warn-box {
  background: rgba(251,146,60,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(251,146,60,0.18);
}

/* Glass stat-strip */
.stat-strip {
  background: rgba(26,26,46,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--glass-shadow);
}

/* Glass search modal */
.search-modal {
  background: rgba(18,18,38,0.96) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

/* ── GOLD SHIMMER SWEEP ────────────────────────────────────── */
/* Applied to: .btn-primary, .btn-gold, .ask-beth-btn */
@keyframes shimmerSweep {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}

.btn-primary,
.btn-gold {
  overflow: hidden;
}
.btn-primary::before,
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--shimmer-start), var(--shimmer-mid), var(--shimmer-end));
  transform: translateX(-100%) skewX(-20deg);
  transition: none;
}
.btn-primary:hover::before,
.btn-gold:hover::before {
  animation: shimmerSweep 0.65s var(--ease-luxury) forwards;
}

/* Duplicate ::before removed — defined once above near line 1489 */

/* ── FLUID TYPOGRAPHY UPGRADE (clamp system) ──────────────── */
/* Replaces fixed sizes with fluid responsive scaling */
h1 {
  font-size: clamp(2rem, 4.5vw + 0.5rem, 4.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.6rem);
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.15rem, 1.5vw + 0.3rem, 1.75rem);
  letter-spacing: -0.01em;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw + 0.5rem, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}
/* Stat numbers — big and cinematic */
.stat-number {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 3rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* ── PARALLAX HERO ────────────────────────────────────────── */
/* Implemented via JS (initParallaxHero), CSS sets the stage */
.hero.has-photo,
.page-hero.has-photo {
  background-attachment: fixed;
  will-change: background-position;
}
/* Fallback: mobile doesn't get fixed attachment (performance) */
@media (max-width: 768px) {
  .hero.has-photo,
  .page-hero.has-photo {
    background-attachment: scroll;
  }
}

/* ── STAGGER ENTRANCE ANIMATIONS ──────────────────────────── */
/* Cards in grids animate in one by one */
.card-grid .card:nth-child(1),
.attr-grid .attr-card:nth-child(1),
.resort-grid .resort-card:nth-child(1),
.pack-grid .pack-card:nth-child(1)  { transition-delay: 0s; }
.card-grid .card:nth-child(2),
.attr-grid .attr-card:nth-child(2),
.resort-grid .resort-card:nth-child(2),
.pack-grid .pack-card:nth-child(2)  { transition-delay: 0.06s; }
.card-grid .card:nth-child(3),
.attr-grid .attr-card:nth-child(3),
.resort-grid .resort-card:nth-child(3),
.pack-grid .pack-card:nth-child(3)  { transition-delay: 0.12s; }
.card-grid .card:nth-child(4),
.attr-grid .attr-card:nth-child(4),
.resort-grid .resort-card:nth-child(4),
.pack-grid .pack-card:nth-child(4)  { transition-delay: 0.18s; }
.card-grid .card:nth-child(5),
.attr-grid .attr-card:nth-child(5),
.pack-grid .pack-card:nth-child(5)  { transition-delay: 0.24s; }
.card-grid .card:nth-child(6),
.attr-grid .attr-card:nth-child(6),
.pack-grid .pack-card:nth-child(6)  { transition-delay: 0.30s; }

/* Stagger reveal for grid children */
.card-grid .card.reveal,
.attr-grid .attr-card.reveal,
.resort-grid .resort-card.reveal,
.pack-grid .pack-card.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.card-grid .card.reveal.visible,
.attr-grid .attr-card.reveal.visible,
.resort-grid .resort-card.reveal.visible,
.pack-grid .pack-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── IMAGE DEPTH MICRO-INTERACTIONS ───────────────────────── */
/* Inspired by loj hotel's scale(1.05) + overlay shift */
.photo-card {
  position: relative;
}
.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,114,206,0.0) 0%, rgba(13,13,26,0.0) 100%);
  transition: background 0.4s var(--ease-luxury);
  pointer-events: none;
  border-radius: var(--radius-md);
}
.photo-card:hover::after {
  background: linear-gradient(135deg, rgba(0,114,206,0.08) 0%, rgba(13,13,26,0.12) 100%);
}
.photo-card:hover .photo-card-img {
  transform: scale(1.06);
  transition: transform 0.65s var(--ease-luxury);
}
.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 4px 16px rgba(0,114,206,0.15);
  border-color: rgba(0,114,206,0.35);
}

/* Photo banner zoom upgrade */
.photo-banner:hover img {
  transform: scale(1.06);
  transition: transform 0.7s var(--ease-luxury);
}

/* ── DIAGONAL SECTION DIVIDERS ────────────────────────────── */
/* Inspired by Peligoni's organic clip-paths */
.section-divider {
  width: 100%;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  margin-top: -2px;
  pointer-events: none;
}
.section-divider-inv {
  width: 100%;
  height: 60px;
  background: var(--surface);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  margin-top: -2px;
  pointer-events: none;
}

/* ── BENTO GRID (homepage) ────────────────────────────────── */
/* Asymmetric featured card grid — Apple/Linear style */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 32px;
}
.bento-card {
  background: rgba(26,26,46,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s var(--ease-luxury),
              box-shadow 0.35s var(--ease-smooth),
              border-color 0.25s var(--ease-smooth);
  box-shadow: var(--glass-shadow);
}
.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 4px 16px rgba(0,114,206,0.12);
  border-color: rgba(0,114,206,0.30);
}
/* Bento layout: span assignments */
.bento-card-lg   { grid-column: span 7; grid-row: span 2; min-height: 340px; }
.bento-card-md   { grid-column: span 5; min-height: 160px; }
.bento-card-sm   { grid-column: span 4; min-height: 160px; }
.bento-card-wide { grid-column: span 8; min-height: 160px; }
.bento-card-full { grid-column: span 12; min-height: 120px; }

.bento-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.65s var(--ease-luxury);
}
.bento-card:hover .bento-card-img { transform: scale(1.05); }
.bento-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,26,0.2) 0%, rgba(13,13,26,0.75) 80%);
  pointer-events: none;
}
.bento-card-body {
  position: relative; z-index: 1;
  padding: 24px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-card-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 8px;
}
.bento-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.8rem);
  font-weight: 400;
  color: var(--offwhite);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.bento-card-desc {
  font-size: 12.5px; color: rgba(195,170,132,0.8);
  line-height: 1.6; max-width: 340px;
}
.bento-card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--offwhite);
  transition: background 0.2s, transform 0.3s var(--ease-spring);
}
.bento-card:hover .bento-card-arrow {
  background: rgba(0,114,206,0.6);
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .bento-card-lg   { grid-column: span 12; min-height: 260px; }
  .bento-card-md   { grid-column: span 6; }
  .bento-card-sm   { grid-column: span 6; }
  .bento-card-wide { grid-column: span 12; }
}
@media (max-width: 560px) {
  .bento-grid { gap: 10px; }
  .bento-card-md,
  .bento-card-sm { grid-column: span 12; }
}

/* ── HEADER GLASSMORPHISM UPGRADE ─────────────────────────── */
.header {
  background: rgba(10,10,20,0.80) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 4px 24px rgba(0,0,0,0.25);
}
.header.header-shrunk {
  background: rgba(8,8,18,0.92) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45) !important;
}

/* ── SHARED PAGE SUBNAV (all pages) ──────────────────────── */
.page-subnav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(10,10,22,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-subnav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-subnav-inner::-webkit-scrollbar { display: none; }
.page-subnav-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: var(--dim);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  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(--sand); }
.page-subnav-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.page-subnav-tab .tab-icon { font-size: 15px; }
.page-panel { animation: panelFadeIn 0.3s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes panelFadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.page-panel.hidden { display: none !important; }
/* Tab-panel pages: tighter top padding so no big gap below subnav */
.page-panel.section,
.pack-panel.section { padding-top: 40px !important; padding-bottom: 60px !important; }
@media (max-width: 600px) {
  .page-subnav-inner { padding: 0 16px; }
  .page-subnav-tab { padding: 12px 14px; font-size: 11px; gap: 5px; }
}

/* ── DESTINATION TABBAR GLASSMORPHISM (legacy) ───────────── */
.dest-tabbar,
.pack-subnav {
  background: rgba(10,10,22,0.88) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* ── FOOTER GLASSMORPHISM ─────────────────────────────────── */
.footer {
  background: rgba(8,8,18,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── ENHANCED SCROLL REVEAL (lift + blur) ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition: opacity 0.62s var(--ease-luxury),
              transform 0.62s var(--ease-luxury),
              filter 0.62s var(--ease-luxury);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

/* ── TINKERBELL SPARKLE TRAIL (desktop only) ──────────────── */
/*/* ── PORTAL ENERGY TRAIL (desktop only) ────────────────── */
.orb {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-lt) 30%, rgba(61,165,255,0) 70%);
  box-shadow: 0 0 8px 2px rgba(61,165,255,0.5);
  animation: orb-swirl 0.9s ease-out forwards;
}
.orb.orb-sm { width: 3px; height: 3px; animation-duration: 0.6s; }
.orb.orb-lg {
  width: 10px; height: 10px; animation-duration: 1.1s;
  box-shadow: 0 0 12px 4px rgba(61,165,255,0.6), 0 0 24px 6px rgba(167,123,255,0.2);
}
@keyframes orb-swirl {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  40%  { opacity: 0.8; transform: translate(var(--sx), var(--sy)) scale(0.8); }
  100% { opacity: 0; transform: translate(var(--ex), var(--ey)) scale(0.1); }
}
@media (hover: none) { .orb { display: none !important; } }

/* ── LINK HOVER DEPTH ─────────────────────────────────────── */
.nav a {
  transition: color 0.22s var(--ease-smooth),
              text-shadow 0.22s var(--ease-smooth);
}
.nav a:hover {
  text-shadow: 0 0 20px rgba(0,114,206,0.4);
}
.nav a.active {
  text-shadow: 0 0 16px rgba(0,114,206,0.3);
}

/* ── DATA TABLE GLASSMORPHISM ─────────────────────────────── */
.data-table thead th {
  background: rgba(0,114,206,0.12);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,114,206,0.2);
}
.data-table tbody tr:hover td {
  background: rgba(255,255,255,0.025);
}

/* ── SEARCH RESULT GLASSMORPHISM ──────────────────────────── */
.search-result-item {
  background: rgba(26,26,46,0.5) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05) !important;
  transition: background 0.18s, border-color 0.18s, transform 0.18s var(--ease-spring);
}
.search-result-item:hover,
.search-result-item[aria-selected="true"] {
  background: rgba(0,114,206,0.1) !important;
  border-color: rgba(0,114,206,0.25) !important;
  transform: translateX(3px);
}

/* ── BUTTON DEPTH UPGRADE ─────────────────────────────────── */
.btn-primary {
  box-shadow: 0 4px 16px rgba(0,114,206,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: all 0.28s var(--ease-luxury);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(0,114,206,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-gold {
  box-shadow: 0 4px 20px rgba(224,165,38,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.28s var(--ease-luxury);
}
.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(224,165,38,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(1px) !important; }

/* ── REDUCED MOTION SUPPORT ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  body { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════
   WORLD-CLASS UPGRADE — v4.0 · March 2026
   Research: Black Tomato, Peligoni Club, Remote Lands,
   Awwwards luxury travel sites 2026
   Principles: breathing room, glassmorphic depth, editorial
   ════════════════════════════════════════════════════════════ */

/* ── PRICE TABLE GLASSMORPHISM ─────────────────────────────── */
.price-table thead tr {
  background: rgba(0,114,206,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,114,206,0.22);
}
.price-table {
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.price-table tbody tr:hover td {
  background: rgba(255,255,255,0.025);
}

/* ── HIGHLIGHT BOX GLASSMORPHISM ──────────────────────────── */
.highlight-box {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(224,165,38,0.06), inset 0 1px 0 rgba(224,165,38,0.08);
}

/* ── SECTION HEADER DECORATION ─────────────────────────────── */
/* Subtle sienna accent line under the eyebrow */
.section-header .eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 8px;
  border-radius: 2px;
}

/* ── BACK-TO-TOP BUTTON CLASS (replaces 6x inline style) ───── */
.back-top-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--offwhite);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,114,206,0.5);
  z-index: 200;
}
.back-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,114,206,0.65);
}

/* ── ENHANCED CARD GRID SPACING ─────────────────────────────── */
/* More breathing room on large screens (luxury standard) */
@media (min-width: 1100px) {
  .card-grid { gap: 24px; }
  .info-grid  { gap: 24px; }
}

/* ── ENHANCED TABLE WRAP ────────────────────────────────────── */
/* Add subtle shadow to table containers */
.table-scroll {
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

/* ── INFO-BLOCK HOVER GOLD ACCENT ───────────────────────────── */
.info-block:hover {
  border-color: rgba(224,165,38,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(224,165,38,0.05);
}

/* ── EYEBROW LABEL TYPOGRAPHY ───────────────────────────────── */
/* Make section eyebrows slightly more refined */
.eyebrow {
  letter-spacing: 0.14em;
}

/* ── PAGE SUBNAV ACTIVE TAB GLOW ─────────────────────────────  */
.page-subnav-tab.active {
  text-shadow: 0 0 16px rgba(224,165,38,0.4);
}

/* ── TABLE-SCROLL MOBILE HINT ───────────────────────────────── */
/* Fade on right edge hints at horizontal scroll on mobile */
@media (max-width: 700px) {
  .table-scroll {
    position: relative;
  }
  .table-scroll::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 32px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13,13,26,0.7));
    pointer-events: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }
}
.mb-48 { margin-bottom: 48px !important; }
.text-sm-mt { font-size: 13px; margin-top: 8px; }
.text-sm-mt-sand { font-size: 13px; margin-top: 8px; color: var(--sand); }

/* ════════════════════════════════════════════════════════════
   UNIFORMITY PASS — v5.0 · March 2026
   Card-grid equal heights, dining badge fix, stat-strip,
   info-block overflow safety
   ════════════════════════════════════════════════════════════ */

/* ── CARD-GRID EQUAL ROW HEIGHTS ──────────────────────────── */
.card-grid .card {
  display: flex;
  flex-direction: column;
}
.card-grid .card .card-body {
  flex: 1;
}

/* ── DINING CARD: BADGE & PRICE POSITIONING FIX ─────────── */
/* Move dc-meta + badge/price to a flex header row */
.dining-card .dc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.dining-card .dc-header .dc-meta {
  margin-bottom: 0;
  flex-shrink: 0;
}
.dining-card .dc-header .price-tag {
  position: static;
  margin-left: auto;
  font-size: 12px;
  color: var(--sand);
  font-weight: 500;
  white-space: nowrap;
}
.dining-card .dc-header .beths-pick {
  position: static;
  order: 1;
  margin-left: 6px;
  box-shadow: none;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--bg);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── STAT-STRIP: "THE MATH" BLOCKQUOTE STYLE ──────────────── */
.stat-strip-quote {
  background: var(--surface);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.stat-strip-quote .quote-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.stat-strip-quote .quote-body {
  font-size: 15px;
  color: var(--sand);
  line-height: 1.7;
}
.stat-strip-quote .quote-body strong {
  color: var(--offwhite);
}

/* ── INFO-BLOCK OVERFLOW SAFETY ───────────────────────────── */
.info-block ul li,
.info-block ul li strong {
  overflow-wrap: break-word;
}

/* ── BETH-BOX LIST STYLE ──────────────────────────────────── */
.beth-box .beth-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.beth-box .beth-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--sand);
  line-height: 1.65;
  display: flex;
  gap: 10px;
}
.beth-box .beth-list li:last-child { border-bottom: none; }
.beth-box .beth-list li .day-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.beth-box .beth-list li strong {
  color: var(--offwhite);
}


/* ── CONTACT MODAL (reliable Ask Beth) ───────────────────── */
.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,12,0.74); -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-sand);
  border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-lg);
  text-align: center; animation: contactPop 0.25s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes contactPop { from { opacity:0; transform: translateY(14px) scale(0.98);} to { opacity:1; transform:none; } }
.contact-modal-close { position:absolute; top:10px; right:14px; background:none; border:none; color:var(--sand); font-size:28px; line-height:1; cursor:pointer; }
.contact-modal-close:hover { color: var(--offwhite); }
.contact-modal-eyebrow { font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.contact-modal-title { color:var(--offwhite); font-size:24px; font-weight:600; margin-bottom:10px; }
.contact-modal-text { color:var(--sand); font-size:14.5px; line-height:1.6; margin-bottom:20px; }
.contact-modal-email { display:inline-block; font-size:17px; color:var(--gold); word-break:break-all; margin-bottom:22px; font-weight:600; }
.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:12.5px; font-weight:600; letter-spacing:0.03em; cursor:pointer; border:1px solid var(--border-sand); background:transparent; color:var(--offwhite); 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:#0D0D1A; border-color:var(--gold); }
.contact-modal-btn.primary:hover { filter:brightness(1.07); color:#0D0D1A; }
.contact-modal-note { min-height:18px; margin-top:14px; font-size:12px; color:var(--gold); }
@media (prefers-reduced-motion: reduce){ .contact-modal-card { animation: none; } }


/* ── CONTACT MODAL — inquiry form fields ─────────────────── */
.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-sand); border-radius:8px; padding:11px 13px; color:var(--offwhite); 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(--sand); }
.contact-modal-direct a { color:var(--gold); }

/* ── 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:40px auto 0;padding-top:32px;border-top:1px solid var(--border);text-align:center}
.cred-strip-label{font-size:11px;letter-spacing:.24em;text-transform:uppercase;color:var(--sand);margin-bottom:22px}
.cred-badges{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-start;gap:22px}
.cred-badge{display:flex;flex-direction:column;align-items:center;gap:11px;width:146px}
.cred-card{width:100%;height:104px;background:#fff;border:1px solid var(--border-sand);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);display:flex;align-items:center;justify-content:center;padding:16px}
.cred-card img{max-height:72px;max-width:114px;width:auto;height:auto;display:block}
.cred-badge span{font-size:9.5px;letter-spacing:.15em;text-transform:uppercase;color:var(--sand)}
.viator-foot{max-width:1180px;margin:28px auto 0;padding-top:26px;border-top:1px solid var(--border);text-align:center}
.viator-foot-txt{display:block;font-size:16px;color:var(--offwhite);margin-bottom:14px}
.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:.12em;text-transform:uppercase;font-weight:600;transition:all var(--transition)}
.viator-foot-btn:hover{background:var(--gold);color:var(--bg)}
.viator-disclosure{display:block;margin-top:12px;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:80px 28px;text-align:center}
.viator-band-inner{max-width:720px;margin:0 auto}
.viator-band .eyebrow{font-size:11px;letter-spacing:.26em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.viator-band h2{font-size:clamp(26px,3.4vw,38px);color:var(--offwhite);line-height:1.18;margin-bottom:18px}
.viator-band p{color:var(--sand);font-size:16px;line-height:1.8;margin-bottom:28px}
.viator-band .viator-cta{display:inline-block;background:var(--gold);color:var(--bg);padding:15px 38px;border-radius:999px;font-size:13px;letter-spacing:.12em;text-transform:uppercase;font-weight:700;transition:all var(--transition)}
.viator-band .viator-cta:hover{background:var(--gold-lt);transform:translateY(-2px)}
.viator-band .viator-note{margin-top:15px;font-size:11px;color:var(--dim);letter-spacing:.04em}
@media (max-width:600px){.cred-badge{width:132px}.cred-card{height:92px}.cred-card img{max-height:62px}}
/* 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 28px;padding:0}
.viator-props li{font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--sand);border:1px solid var(--border-sand);border-radius:999px;padding:7px 16px;background:rgba(255,255,255,0.02)}
.viator-impact{max-width:620px;margin:16px auto 0;font-size:12.5px;line-height:1.75;color:var(--sand)}
.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 56px}
.cred-group{text-align:center}
.cred-group-label{font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--sand);margin-bottom:18px}
.cred-badge.wide{width:196px}
.cred-badge.wide .cred-card img{max-width:166px;max-height:58px}
/* 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(--sand)}
.cred-intro b{color:var(--offwhite);font-weight:600}
.cred-intro .cred-host{color:var(--gold)}

/* Unify logo + fix header overflow + match luxury footer-bottom (2026-06-08) */
.logo-img{height:30px;width:auto;display:block;background:none;padding:0;border-radius:0}
.header{padding:0 24px;gap:18px}
.nav{gap:15px;min-width:0;overflow-x:auto;scrollbar-width:none}
.nav::-webkit-scrollbar{display:none}
.nav a{font-size:11.5px;white-space:nowrap;flex-shrink:0}
.search-trigger,.menu-toggle{flex-shrink:0}
.footer-bottom{max-width:1180px;margin:44px auto 0;padding:24px 0 0;border-top:1px solid var(--border);text-align:left;font-size:11px;color:var(--dim);letter-spacing:.06em}
.footer-bottom span{color:var(--dim)}
/* footer brand logo: match luxury (no white chip) */
.footer-brand-img{background:none;padding:0;border-radius:0}
/* Footer matched to concierge/luxury template (2026-06-08) */
.footer{border-top:1px solid var(--border);padding:64px 40px 36px;background:var(--surface2);display:block;margin-top:0}
.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;background:none;padding:0;border-radius:0}
.footer-tagline img{height:16px;width:auto;opacity:.7}
.footer-links{display:flex;flex-direction:column;gap:12px}
.footer-links a{color:var(--sand);font-size:12px;letter-spacing:.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(--offwhite);margin-bottom:6px}
.footer-contact .footer-email{font-size:13px;color:var(--gold)}
/* footer alignment: left, matching luxury */
.footer-inner{text-align:left}
.footer-links{align-items:flex-start}
.footer-contact{text-align:left}
.footer-contact{align-items:flex-start}

/* 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}}

/* Start-the-Conversation wrapper (hub canonical) */
.inquiry-wrap { background: linear-gradient(135deg, rgba(224,165,38,0.08), rgba(224,165,38,0.02)); border: 1px solid var(--border-sand); border-radius: var(--radius-lg); padding: 64px 56px; text-align: center; max-width: 1000px; margin: 0 auto; }
@media (max-width: 600px) { .inquiry-wrap { padding: 40px 26px; } }
