/* ==========================================================================
   ANYWHEREGO — Design System v3 "Liquid Gold"
   Theme: Rich Gold — deep #DBB100 · pale #FFEDAA · bright #FFD60A
   Surface language: full glassmorphism (frosted champagne glass on gold)
   Type: Fraunces (display serif) · Outfit (headings/UI) · Inter (body)
   ========================================================================== */

:root {
  /* token names kept for compatibility — Quiet Luxury palette
     (porcelain-white dominant, gold used as a restrained accent only) */
  --green: #A88514;          /* primary accent — muted antique gold */
  --green-soft: #F4ECDC;     /* porcelain warm-neutral */
  --green-mist: #F8F5EC;     /* near-white warm wash */
  --dark: #4A3A05;           /* deep bronze — solid CTA / dark text accents */
  --darker: #1F1803;         /* espresso — deep surfaces */
  --ink: #2A2418;            /* primary text — graphite-warm (less yellow) */
  --neon: #E8C547;           /* refined gold accent (was bright neon) */
  --white: #FFFFFF;
  --cream: #FAFAF6;          /* true off-white (opaque small surfaces) */
  --cream-deep: #F1EEE4;
  --muted: #6F6A5C;          /* cool-warm graphite muted text */
  --line: rgba(50, 42, 22, 0.10);
  --gold: #C9A23A;           /* refined star / highlight gold */

  /* ---- glassmorphism tokens (porcelain-dominant, restrained accents) ---- */
  --glass: rgba(255, 255, 255, 0.62);        /* lighter, crisper frost */
  --glass-2: rgba(255, 255, 255, 0.78);      /* denser white glass */
  --card: rgba(255, 255, 255, 0.78);         /* cheap translucent card (no blur) */
  --card-solid: rgba(255, 255, 255, 0.95);   /* card hover */
  --glass-dark: rgba(26, 20, 4, 0.58);       /* smoked espresso glass */
  --glass-line: rgba(255, 255, 255, 0.92);   /* crisp specular edge */
  --glass-line-dark: rgba(255, 235, 170, 0.14);
  --glass-blur: blur(20px) saturate(1.6);    /* deeper signature blur */
  --glass-blur-lg: blur(28px) saturate(1.7);
  --glass-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 1px 1px rgba(255,255,255,0.6) inset,
    0 10px 32px rgba(40, 32, 12, 0.08),
    0 2px 6px rgba(40, 32, 12, 0.04);
  --glass-shadow-lg:
    0 1px 0 rgba(255,255,255,0.98) inset,
    0 -1px 0 rgba(255,255,255,0.35) inset,
    0 28px 70px rgba(40, 32, 12, 0.14),
    0 6px 18px rgba(40, 32, 12, 0.06);

  /* Luxury editorial type — Cormorant Garamond (display) + Montserrat (UI/body) */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --head: "Montserrat", system-ui, sans-serif;
  --body: "Montserrat", system-ui, sans-serif;

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(46, 36, 6, 0.05), 0 8px 24px rgba(46, 36, 6, 0.07);
  --shadow-md: 0 2px 6px rgba(46, 36, 6, 0.06), 0 18px 44px rgba(46, 36, 6, 0.12);
  --shadow-lg: 0 4px 10px rgba(46, 36, 6, 0.07), 0 32px 80px rgba(46, 36, 6, 0.18);

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: #FAFAF7;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
  animation: pageIn 0.65s var(--ease) both;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* fixed gold field — its own composited layer (no background-attachment:fixed,
   which would force a full repaint every scroll frame on weak GPUs) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 760px at 4% -8%, rgba(232, 197, 71, 0.10), transparent 55%),
    radial-gradient(1200px 880px at 100% 2%, rgba(244, 220, 140, 0.12), transparent 52%),
    radial-gradient(960px 800px at 52% 108%, rgba(168, 133, 20, 0.05), transparent 58%),
    linear-gradient(170deg, #FFFFFF 0%, #FBFAF6 56%, #F4F2EC 100%);
}

/* film grain — fixed overlay, never on scrolling containers */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: 0.04;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="180" height="180"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/></filter><rect width="180" height="180" filter="url(%23n)"/></svg>');
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }
::selection { background: rgba(232, 197, 71, 0.32); color: var(--ink); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Inline icon system ---------- */
.ic { display: inline-flex; width: 1.15em; height: 1.15em; flex-shrink: 0; vertical-align: -0.18em; }
.ic svg { width: 100%; height: 100%; display: block; }

/* ---------- Typography — Cormorant Garamond display + Montserrat UI ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }
.display { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }
/* eyebrow — refined Montserrat overline (no pill, editorial) */
.eyebrow {
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--green); opacity: 0.7; }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section-title .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
}
.section-sub {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 580px;
}

.container { width: min(var(--container), 92vw); margin-inline: auto; }
section { padding: clamp(84px, 10vw, 140px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 15px 30px;
  border-radius: 2px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.99); }
/* plain editorial arrow — no circular badge */
.btn .arr {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  background: none;
  transition: transform 0.45s var(--ease);
}
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 6px 18px rgba(40, 32, 12, 0.12); }
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(40, 32, 12, 0.16); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }
.btn-neon { background: var(--green); color: var(--white); box-shadow: 0 6px 18px rgba(168, 133, 20, 0.18); }
.btn-neon:hover { background: var(--dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(50, 42, 22, 0.22); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(50, 42, 22, 0.03); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,0.28); background: transparent; }
.btn-ghost.on-dark:hover { border-color: rgba(255,255,255,0.6); color: var(--white); background: rgba(255,255,255,0.05); }
.btn-sm { padding: 11px 22px; font-size: 0.8rem; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ---------- Navbar — floating glass island ---------- */
.navbar {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 100;
  padding: 0;
  transition: top 0.4s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 246, 221, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(58, 47, 8, 0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 36px rgba(46, 36, 6, 0.07);
  border-radius: 999px;
  padding: 9px 10px 9px 22px;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled .nav-inner {
  background: rgba(255, 246, 221, 0.88);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 18px 44px rgba(46, 36, 6, 0.12);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.logo .brand-mark {
  width: 44px; height: 29px;
  display: block;
  background: url('../media/awg-mark.png') center / contain no-repeat;
  transition: transform 0.6s var(--ease);
}
.logo:hover .brand-mark { transform: translateY(-2px); }
.logo .logo-word {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
}
.logo .logo-word .go { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--head);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 15px;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 1px;
  height: 1px;
  background: var(--green);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* currency toggle */
.currency-toggle {
  display: inline-flex;
  background: rgba(58, 47, 8, 0.05);
  border: 1px solid rgba(58, 47, 8, 0.07);
  border-radius: 999px;
  padding: 3px;
}
.currency-toggle button {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.currency-toggle button.active { background: var(--ink); color: #FFFFFF; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.45s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(40, 31, 4, 0.86);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 8vw;
  gap: 8px;
  clip-path: circle(0% at calc(100% - 54px) 46px);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 54px) 46px); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s, padding-left 0.4s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); padding-left: 12px; }
.mobile-menu .mm-foot { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.mobile-menu .currency-toggle { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.mobile-menu .currency-toggle button { color: rgba(255,255,255,0.6); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 90%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1), transparent 62%);
  top: -260px; right: -180px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 196, 94, 0.1), transparent 65%);
  bottom: -220px; left: -160px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
}
.hero h1 .hl {
  font-style: italic;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: -1%; right: -1%; bottom: 9%;
  height: 0.2em;
  background: linear-gradient(90deg, var(--neon), #FFDE7A);
  z-index: -1;
  transform: skewX(-9deg);
  border-radius: 4px;
  animation: hlIn 1.1s 0.55s var(--ease) both;
  transform-origin: left center;
}
@keyframes hlIn { from { transform: skewX(-9deg) scaleX(0); } to { transform: skewX(-9deg) scaleX(1); } }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 480px; margin-bottom: 34px; }
.hero-sub strong { color: var(--dark); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 500; color: var(--dark); font-family: var(--head); }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(184,134,11,0.16); }

/* hero visual — double-bezel frame */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--r-xl);
  padding: 9px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55));
  border: 1px solid rgba(58, 47, 8, 0.08);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r-xl) - 9px);
  transform: scale(1.02);
  animation: heroZoom 11s var(--ease) infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.09); } }
.float-card {
  position: absolute;
  background: rgba(255, 246, 221, 0.78);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: var(--green-soft);
  border: 1px solid rgba(94, 74, 0, 0.1);
}
.float-card .fc-icon svg { width: 20px; height: 20px; }
.float-card b { font-family: var(--head); font-weight: 600; font-size: 0.9rem; display: block; }
.float-card small { color: var(--muted); font-size: 0.77rem; }
.fc-1 { top: 7%; left: -9%; animation-delay: 0s; }
.fc-2 { bottom: 16%; right: -7%; animation-delay: 1.8s; }
.fc-3 { bottom: -5%; left: 6%; animation-delay: 3.4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-family: var(--head);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue::after {
  content: "";
  width: 1.5px; height: 36px;
  background: linear-gradient(var(--dark), transparent);
  animation: cueDrop 2s var(--ease) infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Search Bar ---------- */
.searchbar {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(58, 47, 8, 0.07);
  padding: 9px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr auto;
  gap: 6px;
  max-width: 720px;
  margin-bottom: 36px;
}
.searchbar .sb-field { padding: 8px 16px; border-radius: 16px; transition: background 0.3s; position: relative; }
.searchbar .sb-field:hover { background: var(--green-mist); }
.searchbar label {
  display: block;
  font-family: var(--head);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dark);
  margin-bottom: 1px;
}
.searchbar select, .searchbar input {
  width: 100%;
  border: none;
  background: transparent;
  font-weight: 500;
  font-family: var(--head);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.searchbar .sb-field::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.searchbar .sb-field.no-caret::after { display: none; }
.searchbar .btn { border-radius: 17px; padding: 0 26px; }

/* ---------- Marquee ---------- */
.marquee-wrap {
  background: var(--darker);
  padding: 17px 0;
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
  margin: -10px 0;
  position: relative;
  z-index: 5;
}
.marquee { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.marquee span {
  font-family: var(--head);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee .star { color: var(--neon); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.18s; }
.js .reveal[data-delay="3"] { transition-delay: 0.28s; }
.js .reveal[data-delay="4"] { transition-delay: 0.38s; }

/* ---------- Section headers ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 54px; flex-wrap: wrap; }

/* ---------- Tabs / pills ---------- */
.pill-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  box-shadow: var(--shadow-sm);
}
.pill-tabs button {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.4s var(--ease);
}
.pill-tabs button.active { background: var(--ink); color: var(--white); }
.pill-tabs button:not(.active):hover { color: var(--dark); }

/* ==========================================================================
   PACKAGE CARDS — full-bleed photo, glass pills, white Explore pill
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }

.pkg-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(58, 47, 8, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-media {
  position: relative;
  border-radius: calc(var(--r-xl) - 8px);
  overflow: hidden;
  aspect-ratio: 5 / 7;
  background: linear-gradient(150deg, var(--green-mist), var(--green-soft));
}
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.07); }
.pkg-media .ph-fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(94, 74, 0, 0.3);
  background: linear-gradient(150deg, var(--green-mist), var(--green-soft));
}
.pkg-media .ph-fallback svg { width: 56px; height: 56px; }
.pkg-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34, 25, 2, 0.22) 0%, rgba(34, 25, 2, 0) 32%, rgba(34, 25, 2, 0.02) 48%, rgba(34, 25, 2, 0.82) 100%);
  pointer-events: none;
}
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 246, 221, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 14px;
  border-radius: 999px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.pkg-duration {
  display: inline-flex;
  align-items: center;
  background: rgba(34, 25, 2, 0.34);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
/* duration + carbon chips line inside the overlay */
.pkg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}
.pkg-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 20px 16px;
  color: var(--white);
}
.pkg-name { font-family: var(--head); font-size: 1.32rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.pkg-name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.pkg-tagline {
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.78); margin-top: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.pkg-meta-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 12px; margin-top: 10px; }
.pkg-rating { display: inline-flex; align-items: center; gap: 6px; font-family: var(--head); font-weight: 600; font-size: 0.88rem; color: var(--white); white-space: nowrap; }
.pkg-explore { margin-left: auto; }
.pkg-rating .ic { color: var(--gold); width: 1em; height: 1em; }
.pkg-rating i { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.7); font-size: 0.92em; }
.pkg-explore {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: background 0.35s, transform 0.5s var(--ease);
  pointer-events: none;
}
.pkg-explore .x-arr { display: inline-block; transition: transform 0.5s var(--ease); font-size: 0.9em; }
.pkg-card:hover .pkg-explore { background: var(--neon); transform: translateY(-2px); }
.pkg-card:hover .pkg-explore .x-arr { transform: translateX(3px); }
.pkg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}
.pkg-loc { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.pkg-price { margin-left: auto; }
.pkg-loc .ic { width: 1em; height: 1em; opacity: 0.85; }
.pkg-loc em { font-style: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pkg-price { white-space: nowrap; font-weight: 400; }
.pkg-price b { font-family: var(--head); font-weight: 700; font-size: 1.12rem; color: var(--white); letter-spacing: -0.01em; }
.pkg-price i { font-style: normal; color: rgba(255,255,255,0.66); }

/* rating chip reused on detail page */
.pkg-rating.on-light { color: var(--ink); }
.pkg-rating.on-light i { color: var(--muted); }

/* horizontal scroller (home) */
.hscroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 330px);
  gap: 26px;
  overflow-x: auto;
  padding: 10px 4px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll .pkg-card { scroll-snap-align: start; }
.hscroll-nav { display: flex; gap: 10px; }
.hscroll-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.4s var(--ease);
}
.hscroll-nav button:hover { background: var(--ink); color: var(--neon); border-color: var(--ink); transform: scale(1.06); }

/* ---------- Mood grid ---------- */
.mood-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.mood-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 18px 24px;
  text-align: center;
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.mood-card .mc-ic {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green-mist);
  border: 1px solid rgba(94, 74, 0, 0.08);
  display: grid;
  place-items: center;
  color: var(--dark);
  transition: all 0.5s var(--ease);
}
.mood-card .mc-ic svg { width: 24px; height: 24px; }
.mood-card:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mood-card:hover .mc-ic { background: rgba(255, 214, 10, 0.12); border-color: rgba(255,214,10,0.25); color: var(--neon); transform: scale(1.08) rotate(-6deg); }
.mood-card b { font-family: var(--head); font-weight: 600; font-size: 0.97rem; display: block; }
.mood-card small { color: var(--muted); font-size: 0.76rem; }
.mood-card:hover b { color: var(--white); }
.mood-card:hover small { color: rgba(255,255,255,0.6); }

/* ---------- Dark sections ---------- */
.dark-section {
  background:
    radial-gradient(640px 640px at 88% -10%, rgba(184, 134, 11, 0.16), transparent 64%),
    radial-gradient(520px 520px at -6% 110%, rgba(245, 196, 94, 0.07), transparent 60%),
    var(--darker);
  color: var(--white);
  border-radius: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-inline: max(8px, calc((100vw - var(--container)) / 2 - 40px));
  padding: clamp(60px, 7vw, 100px) clamp(24px, 5vw, 84px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset;
}
.dark-section .eyebrow { color: var(--gold); }
.dark-section .eyebrow::before { background: var(--gold); opacity: 0.85; }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255, 255, 255, 0.62); }
.dark-section .glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.2), transparent 65%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.planner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; position: relative; }
.planner-feats { display: flex; flex-direction: column; gap: 18px; margin: 32px 0 36px; }
.planner-feat { display: flex; gap: 16px; align-items: flex-start; }
.planner-feat .pf-ic {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.26);
  display: grid;
  place-items: center;
  color: var(--green);
}
.planner-feat .pf-ic svg { width: 21px; height: 21px; }
.planner-feat b { font-family: var(--head); font-weight: 600; display: block; font-size: 1.01rem; margin-bottom: 2px; }
.planner-feat p { color: rgba(255,255,255,0.58); font-size: 0.9rem; }

/* mock vote widget */
.vote-mock {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.vote-mock .vm-in {
  border-radius: calc(var(--r-lg) - 8px);
  background: rgba(40, 31, 4, 0.5);
  padding: 24px;
}
.vote-mock .vm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.vote-mock .vm-head b { font-family: var(--head); font-weight: 600; font-size: 1.05rem; }
.vm-avatars { display: flex; }
.vm-avatars .av { margin-left: -8px; border: 2px solid var(--darker); }
.av {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--white);
  flex-shrink: 0;
}
.vm-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.vm-option .vm-row { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; font-family: var(--head); font-weight: 500; font-size: 0.94rem; }
.vm-option .vm-votes { font-size: 0.78rem; color: var(--neon); font-weight: 600; }
.vm-bar {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, rgba(184,134,11,0.3), rgba(184,134,11,0.08));
  width: 0;
  transition: width 1.6s var(--ease);
}
.vm-option.winner { border-color: rgba(184, 134, 11, 0.6); }
.vm-option.winner .vm-row > span:first-child::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon);
  margin-left: 9px;
  vertical-align: 2px;
}
.vm-split { margin-top: 18px; padding-top: 18px; border-top: 1px dashed rgba(255,255,255,0.14); display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.vm-split small { color: rgba(255,255,255,0.5); display: block; font-size: 0.77rem; }
.vm-split b { font-family: var(--head); font-size: 1.25rem; color: var(--neon); }
.vm-paid {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.78rem;
  background: rgba(184,134,11,0.14);
  border: 1px solid rgba(184,134,11,0.35);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------- Honest pricing ---------- */
.honest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; margin-top: 8px; }
.receipt {
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.receipt.them { background: #F8F1EC; border: 1px solid #EBDCD2; }
.receipt.us { background: var(--white); border: 1.5px solid rgba(184, 134, 11, 0.55); box-shadow: var(--shadow-md); }
.receipt .r-tag {
  position: absolute;
  top: -14px; left: 26px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 15px;
  border-radius: 999px;
}
.receipt.them .r-tag { background: #E5C3B8; color: #74392C; }
.receipt.us .r-tag { background: var(--dark); color: var(--white); }
.receipt h3 { font-family: var(--head); font-weight: 600; font-size: 1.13rem; margin: 8px 0 18px; }
.receipt ul { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.receipt li { display: flex; justify-content: space-between; font-size: 0.93rem; gap: 12px; }
.receipt li span:first-child { color: var(--muted); }
.receipt li.sneaky span { color: #AC4A39; }
.receipt li.sneaky span:first-child::before { content: "\26A0\FE0E  "; opacity: 0.8; }
.receipt li.free span:last-child { color: var(--dark); font-weight: 700; }
.receipt .r-total {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px dashed rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--head);
  font-weight: 600;
  font-size: 1.02rem;
}
.receipt .r-total b { font-family: var(--serif); font-size: 1.6rem; letter-spacing: -0.02em; }
.receipt.them .r-total b { color: #AC4A39; }
.receipt.us .r-total b { color: var(--dark); }
.receipt .r-note { margin-top: 12px; font-size: 0.8rem; color: var(--muted); }
.receipt.us .r-note { color: var(--dark); font-weight: 500; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 32px;
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(94, 74, 0, 0.25); background: var(--white); }
.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 4.2rem;
  font-weight: 500;
  color: rgba(94, 74, 0, 0.08);
  line-height: 1;
  transition: color 0.5s;
}
.step-card:hover::before { color: rgba(94, 74, 0, 0.18); }
.step-card .st-emoji {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-mist);
  border: 1px solid rgba(94, 74, 0, 0.1);
  display: grid;
  place-items: center;
  color: var(--dark);
  margin-bottom: 20px;
}
.step-card .st-emoji svg { width: 24px; height: 24px; }
.step-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin-bottom: 10px; position: relative; }
.step-card p { color: var(--muted); font-size: 0.94rem; position: relative; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.5s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.testi-card .quote-mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0.4; color: var(--green); margin-top: 14px; }
.testi-card p { font-family: var(--serif); font-size: 1.04rem; line-height: 1.6; color: var(--ink); flex: 1; }
.testi-who { display: flex; align-items: center; gap: 13px; }
.testi-who b { font-family: var(--head); font-weight: 600; font-size: 0.94rem; display: block; }
.testi-who small { color: var(--muted); font-size: 0.79rem; }
.testi-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  display: block;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.stat b .plus { color: var(--green); }
.stat small { color: var(--muted); font-size: 0.88rem; font-weight: 500; font-family: var(--head); }

/* ---------- CTA banner ---------- */
.cta-banner { text-align: center; position: relative; }
.cta-banner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-banner h2 em { font-style: italic; color: var(--neon); }
.cta-banner p { color: rgba(255,255,255,0.62); max-width: 480px; margin: 0 auto 38px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
footer {
  background:
    radial-gradient(700px 420px at 80% 0%, rgba(184, 134, 11, 0.08), transparent 60%),
    var(--darker);
  color: rgba(255, 255, 255, 0.78);
  padding: 90px 0 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.foot-brand .logo { color: var(--white); margin-bottom: 16px; }
.foot-brand .logo .brand-mark { width: 42px; height: 28px; background-image: url('../media/awg-mark-white.png'); }
.foot-brand .logo .logo-word { color: #FFFFFF; }
.foot-brand .logo .logo-word .go { color: var(--gold); }
.foot-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.52); max-width: 280px; margin-bottom: 22px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease);
}
.foot-social a:hover { background: var(--green); border-color: var(--green); color: var(--ink); transform: translateY(-3px); }
.foot-social svg { width: 16px; height: 16px; fill: currentColor; }
footer h4 {
  font-family: var(--head);
  font-weight: 600;
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
footer ul { display: flex; flex-direction: column; gap: 11px; }
footer ul a { font-size: 0.92rem; color: rgba(255,255,255,0.58); transition: color 0.3s, padding-left 0.3s; }
footer ul a:hover { color: var(--neon); padding-left: 5px; }
.newsletter { display: flex; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); border-radius: 999px; padding: 5px; margin-top: 6px; }
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 9px 16px;
  font-size: 0.9rem;
  min-width: 0;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter button { border-radius: 999px; background: var(--neon); color: var(--ink); font-family: var(--head); font-weight: 600; font-size: 0.85rem; padding: 9px 20px; transition: background 0.35s; }
.newsletter button:hover { background: var(--green); }
.foot-tagline { font-family: var(--serif); font-style: italic; color: rgba(255,255,255,0.46); font-size: 0.95rem; margin-top: 18px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}
.foot-bottom .links { display: flex; gap: 20px; }
.foot-bottom a:hover { color: var(--neon); }
.foot-watermark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(4rem, 13vw, 11rem);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.035);
  text-align: center;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  margin-top: -10px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 170px 0 64px;
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
}
.page-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.3rem, 5vw, 3.9rem); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 14px; }
.page-hero h1 em { font-style: italic; color: var(--dark); }
.page-hero p { color: var(--muted); font-size: 1.07rem; max-width: 580px; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; font-family: var(--head); }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb .sep { opacity: 0.45; }

/* ---------- Filters (packages page) ---------- */
.filter-bar {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid rgba(58, 47, 8, 0.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 38px;
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  flex: 1;
  min-width: 200px;
  color: var(--muted);
}
.filter-search .ic { width: 1.05em; height: 1.05em; }
.filter-search input { border: none; background: transparent; outline: none; width: 100%; font-size: 0.93rem; color: var(--ink); }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--head);
  font-weight: 500;
  font-size: 0.84rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.chip .ic { width: 1em; height: 1em; }
.chip:hover { border-color: rgba(94, 74, 0, 0.35); color: var(--dark); }
.chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter-bar select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--head);
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  outline: none;
  cursor: pointer;
}
.budget-filter { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; font-weight: 500; font-family: var(--head); color: var(--muted); }
.budget-filter input[type="range"] { accent-color: var(--dark); width: 130px; cursor: pointer; }
.budget-filter output { font-family: var(--head); font-weight: 600; color: var(--dark); min-width: 72px; }
.results-count { font-size: 0.92rem; color: var(--muted); margin-bottom: 24px; }
.results-count b { color: var(--ink); font-family: var(--head); }

.empty-state {
  text-align: center;
  padding: 90px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--r-lg);
  border: 1px dashed var(--line);
}
.empty-state .es-emoji {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-mist);
  display: grid;
  place-items: center;
  color: var(--dark);
}
.empty-state .es-emoji svg { width: 34px; height: 34px; }
.empty-state h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ---------- Package detail ---------- */
.detail-hero { padding: 150px 0 0; }
.gallery {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 10px;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: clamp(320px, 48vw, 520px);
  padding: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.55));
  border: 1px solid rgba(58, 47, 8, 0.08);
  box-shadow: var(--shadow-sm);
}
.gallery .g-main { position: relative; overflow: hidden; background: var(--green-mist); border-radius: calc(var(--r-xl) - 8px) 8px 8px calc(var(--r-xl) - 8px); }
.gallery .g-side { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.gallery .g-side > div { position: relative; overflow: hidden; background: var(--green-mist); border-radius: 8px; }
.gallery .g-side > div:first-child { border-radius: 8px calc(var(--r-xl) - 8px) 8px 8px; }
.gallery .g-side > div:last-child { border-radius: 8px 8px calc(var(--r-xl) - 8px) 8px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery > div:hover img, .gallery .g-side > div:hover img { transform: scale(1.05); }

.detail-grid { display: grid; grid-template-columns: 1fr 392px; gap: clamp(28px, 4vw, 56px); align-items: start; margin-top: 48px; }
.detail-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 8px; }
.detail-main h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.02em; }
.detail-loc { color: var(--muted); font-size: 0.98rem; display: flex; align-items: center; gap: 7px; margin: 10px 0 20px; }
.detail-loc .ic { color: var(--dark); }
.quick-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 0.84rem;
  font-weight: 500;
  font-family: var(--head);
  color: var(--dark);
}
.fact-chip .ic { color: var(--green); width: 1.05em; height: 1.05em; }
.detail-section { margin-bottom: 48px; }
.detail-section h2 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; margin-bottom: 22px; display: flex; align-items: center; gap: 11px; }
.detail-section h2 .ic { color: var(--green); width: 1em; height: 1em; }
.highlight-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.highlight-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.94rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 17px;
}
.highlight-list li::before { content: "✦"; color: var(--green); font-size: 0.85rem; margin-top: 1px; }

/* itinerary accordion */
.itin-day { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.4s, border-color 0.4s; background: rgba(255, 255, 255, 0.78); }
.itin-day.open { box-shadow: var(--shadow-sm); border-color: rgba(94, 74, 0, 0.3); background: var(--white); }
.itin-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  transition: background 0.3s;
}
.itin-head:hover { background: var(--green-mist); }
.itin-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.02rem;
  flex-shrink: 0;
  width: 56px;
}
.itin-head b { font-family: var(--head); font-weight: 600; font-size: 1rem; flex: 1; }
.itin-head .chev { transition: transform 0.45s var(--ease); color: var(--muted); }
.itin-day.open .chev { transform: rotate(180deg); }
.itin-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.itin-body p { padding: 0 20px 20px 92px; color: var(--muted); font-size: 0.94rem; }

/* inclusions */
.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inc-box { border-radius: var(--r-md); padding: 26px; }
.inc-box.inc { background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(184, 134, 11, 0.3); }
.inc-box.exc { background: #F8F4EC; border: 1px solid #EBE2CE; }
.inc-box h3 { font-family: var(--head); font-weight: 600; font-size: 1rem; margin-bottom: 14px; }
.inc-box li { display: flex; gap: 10px; font-size: 0.92rem; padding: 6px 0; color: var(--ink); align-items: flex-start; }
.inc-box.inc li::before { content: "✓"; color: var(--green); font-weight: 800; }
.inc-box.exc li::before { content: "✕"; color: #B98A4B; font-weight: 800; }

/* booking card */
.book-card {
  position: sticky;
  top: 104px;
  background: linear-gradient(180deg, var(--white), rgba(255,255,255,0.92));
  border: 1px solid rgba(58, 47, 8, 0.09);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}
.book-card .bc-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.book-card .bc-price b { font-family: var(--serif); font-weight: 600; font-size: 2.1rem; letter-spacing: -0.03em; color: var(--dark); }
.book-card .bc-price small { color: var(--muted); }
.bc-allin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-soft);
  color: var(--dark);
  font-family: var(--head);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.bc-field { margin-bottom: 14px; }
.bc-field label { display: block; font-family: var(--head); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 7px; }
.bc-field select, .bc-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 0.94rem;
  font-weight: 500;
  font-family: var(--head);
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
}
.bc-field select:focus, .bc-field input:focus { border-color: var(--green); }
.stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--white); }
.stepper button { width: 52px; padding: 12px 0; font-size: 1.15rem; font-weight: 600; color: var(--dark); background: var(--green-mist); transition: background 0.3s; }
.stepper button:hover { background: var(--green-soft); }
.stepper output { flex: 1; text-align: center; font-family: var(--head); font-weight: 600; font-size: 1.05rem; }
.bc-breakdown { background: var(--green-mist); border: 1px solid rgba(94,74,0,0.07); border-radius: var(--r-sm); padding: 16px 18px; margin: 18px 0; }
.bc-breakdown li { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 5px 0; color: var(--muted); }
.bc-breakdown li b { color: var(--ink); font-weight: 600; }
.bc-breakdown li.zero span:last-child { color: var(--dark); font-weight: 700; }
.bc-breakdown .bc-total { border-top: 1.5px dashed rgba(94,74,0,0.18); margin-top: 8px; padding-top: 12px; font-family: var(--head); }
.bc-breakdown .bc-total span:first-child { color: var(--ink); font-weight: 600; }
.bc-breakdown .bc-total b { font-size: 1.2rem; }
.book-card .btn { width: 100%; }
.bc-trust { display: flex; justify-content: center; gap: 15px; margin-top: 17px; font-size: 0.75rem; color: var(--muted); flex-wrap: wrap; font-family: var(--head); }
.bc-trust span { display: flex; align-items: center; gap: 5px; }
.bc-trust .ic { width: 1.1em; height: 1.1em; color: var(--dark); }
.bc-compare { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--muted); }
.bc-compare s { color: #AC4A39; }

/* mobile book bar */
.mobile-book-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  background: rgba(255, 246, 221, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-top: 1px solid rgba(58, 47, 8, 0.08);
  padding: 13px 18px calc(13px + env(safe-area-inset-bottom));
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -12px 36px rgba(46,36,6,0.1);
}
.mobile-book-bar .mb-price b { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--dark); }
.mobile-book-bar .mb-price small { display: block; color: var(--muted); font-size: 0.72rem; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 31, 4, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.5s var(--ease);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(58, 47, 8, 0.05);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: all 0.35s var(--ease);
}
.modal-close:hover { background: var(--ink); color: var(--white); transform: rotate(90deg); }
.modal h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; margin-bottom: 6px; }
.modal .m-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--head); font-weight: 600; font-size: 0.8rem; margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--green); }
.form-field .err-msg { color: #AC4A39; font-size: 0.78rem; margin-top: 5px; display: none; }
.form-field.invalid input { border-color: #AC4A39; }
.form-field.invalid .err-msg { display: block; }

.success-state { text-align: center; padding: 16px 0; }
.success-check {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(184,134,11,0.4);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--dark);
  animation: popIn 0.7s var(--ease) both;
}
.success-check svg { width: 38px; height: 38px; }
@keyframes popIn { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
.success-state h3 { margin-bottom: 8px; }
.success-state .ref {
  font-family: var(--head);
  background: var(--ink);
  color: var(--neon);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 14px 0 18px;
}

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast {
  background: rgba(58, 47, 8, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--head);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.5s var(--ease) both;
  max-width: 92vw;
}
.toast .t-ic { color: var(--neon); }
.toast.out { animation: toastOut 0.45s var(--ease) both; }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(14px) scale(0.95); } }

/* ---------- AI Chat (Milo) ---------- */
.chat-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(58, 47, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 999px;
  padding: 13px 22px 13px 15px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 18px 44px rgba(40, 31, 4, 0.38);
  transition: transform 0.5s var(--ease), background 0.35s;
}
.chat-fab:hover { transform: translateY(-4px) scale(1.03); background: var(--dark); }
.chat-fab .cf-spark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--darker);
  display: grid;
  place-items: center;
}
.chat-fab .cf-spark svg { width: 16px; height: 16px; }

.chat-panel {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 160;
  width: min(400px, calc(100vw - 32px));
  height: min(560px, calc(100svh - 130px));
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: 0 34px 90px rgba(40, 31, 4, 0.32);
  border: 1px solid rgba(58, 47, 8, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.chat-head { background: var(--darker); color: var(--white); padding: 18px 20px; display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.chat-head .ch-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green), #F4CE3A);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.chat-head .ch-avatar svg { width: 20px; height: 20px; }
.chat-head b { font-family: var(--head); font-weight: 600; display: block; font-size: 1rem; }
.chat-head small { color: rgba(255,255,255,0.58); font-size: 0.75rem; display: flex; align-items: center; gap: 5px; }
.chat-head .online { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: sparkPulse 2s infinite; }
.chat-head .chat-min { margin-left: auto; color: rgba(255,255,255,0.7); font-size: 1.2rem; padding: 6px; transition: color 0.25s; }
.chat-head .chat-min:hover { color: var(--neon); }
.chat-msgs { flex: 1; overflow-y: auto; padding: 20px 16px; display: flex; flex-direction: column; gap: 12px; background: var(--cream-deep); }
.msg { max-width: 84%; padding: 12px 16px; border-radius: 18px; font-size: 0.9rem; line-height: 1.55; animation: msgIn 0.45s var(--ease) both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.msg.bot { background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 6px; align-self: flex-start; box-shadow: var(--shadow-sm); }
.msg.user { background: var(--ink); color: var(--white); border-bottom-right-radius: 6px; align-self: flex-end; }
.msg b { font-family: var(--head); font-weight: 600; }
.typing { display: inline-flex; gap: 5px; padding: 14px 18px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: typeBounce 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typeBounce { 0%, 60%, 100% { transform: none; opacity: 0.5; } 30% { transform: translateY(-6px); opacity: 1; } }

.chat-pkg-card {
  display: flex;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px;
  align-self: flex-start;
  max-width: 88%;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  animation: msgIn 0.45s var(--ease) both;
}
.chat-pkg-card:hover { border-color: var(--green); transform: translateX(4px); }
.chat-pkg-card img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: var(--green-mist); }
.chat-pkg-card b { font-family: var(--head); font-weight: 600; font-size: 0.86rem; display: block; line-height: 1.3; }
.chat-pkg-card small { color: var(--muted); font-size: 0.74rem; display: block; margin: 2px 0; }
.chat-pkg-card .cp-price { color: var(--dark); font-weight: 700; font-size: 0.82rem; }
.chat-chips { display: flex; gap: 8px; flex-wrap: wrap; padding: 4px 0; }
.chat-chips button {
  font-size: 0.78rem;
  font-weight: 500;
  font-family: var(--head);
  background: var(--white);
  border: 1px solid rgba(94, 74, 0, 0.35);
  color: var(--dark);
  border-radius: 999px;
  padding: 7px 15px;
  transition: all 0.3s;
  animation: msgIn 0.45s var(--ease) both;
}
.chat-chips button:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.chat-input { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); background: var(--cream); flex-shrink: 0; }
.chat-input input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 11px 18px;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  min-width: 0;
}
.chat-input input:focus { border-color: var(--green); }
.chat-input button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.chat-input button svg { width: 18px; height: 18px; }
.chat-input button:hover { background: var(--ink); color: var(--neon); transform: scale(1.07); }

/* ---------- Group Planner page ---------- */
.planner-shell { max-width: 880px; margin: 0 auto; }
.steps-nav { display: flex; justify-content: space-between; margin-bottom: 44px; position: relative; }
.steps-nav::before { content: ""; position: absolute; top: 22px; left: 7%; right: 7%; height: 1.5px; background: var(--line); z-index: 0; }
.steps-nav .sn-fill { position: absolute; top: 22px; left: 7%; height: 1.5px; background: var(--green); z-index: 1; transition: width 0.7s var(--ease); max-width: 86%; }
.sn-step { display: flex; flex-direction: column; align-items: center; gap: 9px; position: relative; z-index: 2; flex: 1; }
.sn-step .sn-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: all 0.5s var(--ease);
}
.sn-step.active .sn-dot { background: var(--ink); border-color: var(--ink); color: var(--neon); transform: scale(1.12); }
.sn-step.done .sn-dot { background: var(--green); border-color: var(--green); color: var(--ink); }
.sn-step small { font-family: var(--head); font-weight: 500; font-size: 0.75rem; color: var(--muted); text-align: center; }
.sn-step.active small { color: var(--ink); }

.planner-panel {
  background: linear-gradient(180deg, var(--white), rgba(255,255,255,0.88));
  border: 1px solid rgba(58, 47, 8, 0.08);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 5vw, 54px);
  display: none;
  animation: panelIn 0.6s var(--ease) both;
}
.planner-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.planner-panel h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 8px; }
.planner-panel .pp-sub { color: var(--muted); margin-bottom: 32px; }
.planner-nav-row { display: flex; justify-content: space-between; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.emoji-pick { display: flex; gap: 10px; flex-wrap: wrap; }
.emoji-pick button {
  width: 54px; height: 54px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: all 0.35s var(--ease);
}
.emoji-pick button svg { width: 24px; height: 24px; }
.emoji-pick button:hover { transform: translateY(-3px); border-color: rgba(94,74,0,0.4); color: var(--dark); }
.emoji-pick button.active { border-color: var(--dark); background: var(--green-mist); color: var(--dark); transform: scale(1.06); }

.vibe-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.vibe-chips .chip { padding: 11px 20px; font-size: 0.9rem; }

.range-row { display: flex; align-items: center; gap: 18px; }
.range-row input[type="range"] { flex: 1; accent-color: var(--dark); height: 6px; cursor: pointer; }
.range-row output { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--dark); min-width: 110px; text-align: right; }

.squad-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.squad-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  animation: panelIn 0.45s var(--ease) both;
}
.squad-row b { font-family: var(--head); font-weight: 600; flex: 1; }
.squad-row .organizer-tag { font-family: var(--head); font-size: 0.68rem; font-weight: 600; background: var(--neon); padding: 4px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; }
.squad-row .rm { color: var(--muted); font-size: 1.05rem; padding: 6px 10px; border-radius: 50%; transition: all 0.3s; }
.squad-row .rm:hover { color: #AC4A39; background: #F8F1EC; }
.add-friend-row { display: flex; gap: 10px; }
.add-friend-row input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 13px 20px;
  outline: none;
  font-size: 0.95rem;
}
.add-friend-row input:focus { border-color: var(--green); }

.dest-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dest-pick {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  background: var(--white);
}
.dest-pick img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--green-mist); }
.dest-pick .dp-body { padding: 13px 15px; }
.dest-pick b { font-family: var(--head); font-weight: 600; font-size: 0.92rem; display: block; line-height: 1.3; }
.dest-pick small { color: var(--muted); font-size: 0.78rem; }
.dest-pick:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-pick.selected { border-color: var(--dark); box-shadow: 0 0 0 4px rgba(94,74,0,0.12); }
.dest-pick .dp-check {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s var(--ease);
}
.dest-pick.selected .dp-check { opacity: 1; transform: scale(1); }

.vote-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.vote-card { border: 1.5px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--white); transition: all 0.45s var(--ease); position: relative; }
.vote-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--green-mist); }
.vote-card .vc-body { padding: 15px; }
.vote-card b { font-family: var(--head); font-weight: 600; font-size: 0.95rem; display: block; margin-bottom: 10px; line-height: 1.3; }
.vote-tally { display: flex; align-items: center; gap: 8px; min-height: 30px; flex-wrap: wrap; }
.vote-tally .av { width: 26px; height: 26px; font-size: 0.58rem; margin-left: -6px; border: 2px solid var(--white); animation: popIn 0.55s var(--ease) both; }
.vote-tally .av:first-child { margin-left: 0; }
.vote-count { font-family: var(--head); font-weight: 700; color: var(--dark); font-size: 0.88rem; margin-left: auto; }
.vote-btn { width: 100%; margin-top: 12px; }
.vote-card.voted { border-color: rgba(94, 74, 0, 0.5); }
.vote-card.winner { border-color: var(--green); box-shadow: 0 0 0 5px rgba(184,134,11,0.16), var(--shadow-lg); transform: scale(1.03); }
.vote-card .crown {
  position: absolute;
  top: -17px; left: 50%;
  transform: translateX(-50%) scale(0);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--neon);
  border: 1px solid rgba(58,47,8,0.12);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: transform 0.6s var(--ease) 0.3s;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.vote-card .crown svg { width: 19px; height: 19px; }
.vote-card.winner .crown { transform: translateX(-50%) scale(1); }

.split-board { background: var(--green-mist); border: 1px solid rgba(94,74,0,0.08); border-radius: var(--r-md); padding: 26px; margin-bottom: 22px; }
.split-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px dashed rgba(94,74,0,0.14); }
.split-row:last-child { border-bottom: none; }
.split-row b { font-family: var(--head); font-weight: 600; flex: 1; font-size: 0.95rem; }
.split-row .amt { font-family: var(--head); font-weight: 700; }
.paid-pill {
  font-size: 0.74rem;
  font-weight: 600;
  font-family: var(--head);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.4s var(--ease);
}
.paid-pill.paid { background: var(--green); border-color: var(--green); color: var(--ink); }
.collect-bar { height: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; margin: 18px 0 8px; }
.collect-bar .cb-fill { height: 100%; background: linear-gradient(90deg, var(--green), #F4CE3A); width: 0; transition: width 0.9s var(--ease); border-radius: 999px; }
.collect-label { display: flex; justify-content: space-between; font-size: 0.84rem; color: var(--muted); font-weight: 500; font-family: var(--head); }

.locked-summary { text-align: center; }
.locked-card {
  background:
    radial-gradient(360px 360px at 90% -10%, rgba(184,134,11,0.22), transparent 70%),
    var(--darker);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  margin: 26px auto;
  max-width: 460px;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-lg);
}
.locked-card .lc-label { font-family: var(--head); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--neon); margin-bottom: 10px; }
.locked-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.8rem; margin-bottom: 22px; position: relative; display: flex; align-items: center; gap: 12px; }
.locked-card h3 .ic { width: 1em; height: 1em; color: var(--green); }
.locked-card .lc-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,0.14); font-size: 0.92rem; position: relative; }
.locked-card .lc-row span:first-child { color: rgba(255,255,255,0.52); }
.locked-card .lc-row b { font-family: var(--head); font-weight: 600; }
.locked-card .lc-row b.neon { color: var(--neon); }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 9px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55));
  border: 1px solid rgba(58, 47, 8, 0.08);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4;
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r-xl) - 9px); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: rgba(255, 255, 255, 0.78); border: 1px solid var(--line); border-radius: var(--r-md); padding: 32px 28px; transition: all 0.45s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(94,74,0,0.25); background: var(--white); }
.value-card .vc-emoji {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-mist);
  border: 1px solid rgba(94,74,0,0.1);
  display: grid;
  place-items: center;
  color: var(--dark);
  margin-bottom: 16px;
}
.value-card .vc-emoji svg { width: 22px; height: 22px; }
.value-card b { font-family: var(--head); font-weight: 600; font-size: 1.05rem; display: block; margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: 0.88rem; }

.fair-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.fair-item { display: flex; gap: 16px; align-items: flex-start; }
.fair-item .fi-num { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--green); font-size: 1.5rem; line-height: 1.2; }
.fair-item b { font-family: var(--head); font-weight: 600; display: block; }
.fair-item p { color: var(--muted); font-size: 0.92rem; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 6px;
  text-align: left;
  font-family: var(--head);
  font-weight: 600;
  font-size: 1.07rem;
  color: var(--ink);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--dark); }
.faq-q .fq-ic {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.45s var(--ease);
}
.faq-item.open .fq-ic { background: var(--green); border-color: var(--green); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding: 0 6px 28px; color: var(--muted); max-width: 640px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); }
.contact-info-card {
  background:
    radial-gradient(380px 380px at 90% -10%, rgba(184,134,11,0.18), transparent 70%),
    var(--darker);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 42px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin-bottom: 24px; }
.ci-row { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; position: relative; }
.ci-row .ci-ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(184,134,11,0.13);
  border: 1px solid rgba(184,134,11,0.25);
  color: var(--green);
  display: grid;
  place-items: center;
}
.ci-row .ci-ic svg { width: 19px; height: 19px; }
.ci-row b { font-family: var(--head); font-weight: 600; font-size: 0.92rem; display: block; }
.ci-row small { color: rgba(255,255,255,0.52); font-size: 0.84rem; }
.contact-form { background: var(--white); border: 1px solid rgba(58,47,8,0.08); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Confetti canvas ---------- */
#confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 400; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 140;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 246, 221, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(58, 47, 8, 0.1);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--dark);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.5s var(--ease);
}
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: var(--ink); color: var(--neon); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .mood-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .detail-grid { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .navbar { inset: 10px 0 auto 0; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .currency-toggle { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 7px 8px 7px 16px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-visual { max-width: 520px; }
  .fc-1 { left: 2%; }
  .fc-2 { right: 2%; }
  .searchbar { grid-template-columns: 1fr 1fr; }
  .searchbar .btn { grid-column: 1 / -1; padding: 15px; }
  .planner-grid, .honest-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps-grid, .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .highlight-list, .inc-exc { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; height: auto; }
  .gallery .g-main { aspect-ratio: 16/10; border-radius: calc(var(--r-xl) - 8px) calc(var(--r-xl) - 8px) 8px 8px; }
  .gallery .g-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .gallery .g-side > div { aspect-ratio: 16/10; }
  .gallery .g-side > div:first-child { border-radius: 8px 8px 8px calc(var(--r-xl) - 8px); }
  .gallery .g-side > div:last-child { border-radius: 8px 8px calc(var(--r-xl) - 8px) 8px; }
  .vote-card-grid, .dest-pick-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .desktop-book { display: none; }
  .mobile-book-bar { display: flex; }
  .steps-nav small { display: none; }
  .chat-fab span.cf-label { display: none; }
  .chat-fab { padding: 13px 15px; }
  .mobile-book-bar ~ .chat-fab { bottom: calc(86px + env(safe-area-inset-bottom)); }
  .filter-bar { top: 76px; }
}
@media (max-width: 560px) {
  .mood-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .itin-body p { padding-left: 20px; }
  .hscroll { grid-auto-columns: 84%; }
  .back-top { display: none; }
}

/* ==========================================================================
   LIQUID GOLD — balanced white-&-gold glass layer
   White-dominant surfaces, rich-gold accents. Live blur is reserved for
   signature & fixed elements; repeated cards use cheap translucent white,
   so scrolling stays smooth on low-end GPUs.
   ========================================================================== */

/* let the soft field glow through the heroes */
.hero, .page-hero { background: transparent; }
.hero::before { background: radial-gradient(circle, rgba(232, 197, 71, 0.16), transparent 64%); }
.hero::after  { background: radial-gradient(circle, rgba(168, 133, 20, 0.06), transparent 68%); }

/* ---- CHEAP CARDS: translucent white, NO backdrop-filter (scroll-friendly) -- */
.pkg-card, .mood-card, .step-card, .testi-card, .value-card,
.dest-pick, .vote-card, .squad-row, .empty-state, .itin-day,
.inc-box.inc, .inc-box.exc, .receipt.us, .receipt.them,
.split-board, .bc-breakdown, .fact-chip, .chip {
  background: var(--card);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
}
.pkg-card { padding: 8px; }
.pkg-media, .gallery .g-main, .gallery .g-side > div { background: rgba(248, 246, 240, 0.6); }
/* photo pills: drop per-card blur (one per card adds up) — solid translucent reads identical */
.pkg-badge { background: rgba(255, 255, 255, 0.7); color: var(--ink); -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: 0 2px 10px rgba(40, 32, 12, 0.10); }
.pkg-duration { background: rgba(20, 16, 4, 0.55); -webkit-backdrop-filter: none; backdrop-filter: none; }

/* card hover: clean solid-white lift, subtle gold edge */
.pkg-card:hover, .mood-card:hover, .step-card:hover, .testi-card:hover,
.value-card:hover, .dest-pick:hover {
  background: var(--card-solid);
  box-shadow: var(--glass-shadow-lg);
  border-color: rgba(184, 134, 11, 0.32);
}

/* ---- TRUE GLASS: signature & fixed surfaces (few/large — blur is safe) ----- */
.searchbar, .pill-tabs, .book-card, .planner-panel, .contact-form,
.gallery, .hero-photo, .about-photo, .modal, .chat-panel,
.currency-toggle, .bc-allin, .filter-search {
  background: var(--glass);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
}
.book-card, .planner-panel, .modal, .chat-panel, .contact-form,
.gallery, .hero-photo, .about-photo {
  background: var(--glass-2);
  -webkit-backdrop-filter: var(--glass-blur-lg);
  backdrop-filter: var(--glass-blur-lg);
  box-shadow: var(--glass-shadow-lg);
}
.currency-toggle { border-color: rgba(122, 94, 0, 0.16); }
.filter-bar { background: rgba(255, 253, 247, 0.74); }

/* form controls: translucent white (no nested blur) */
.bc-field select, .bc-field input,
.form-field input, .form-field textarea, .form-field select,
.add-friend-row input, .chat-input input, .filter-bar select,
.stepper, .emoji-pick button, .paid-pill {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--glass-line);
}
.bc-field select:focus, .bc-field input:focus,
.form-field input:focus, .form-field textarea:focus,
.add-friend-row input:focus, .chat-input input:focus { border-color: var(--green); }

/* navbar: bright white-gold glass island (fixed — blur ok) */
.nav-inner {
  background: rgba(255, 253, 247, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid var(--glass-line);
}
.navbar.scrolled .nav-inner { background: rgba(255, 253, 247, 0.9); }
.float-card {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-line);
}

/* ---- SMOKED-GOLD GLASS: dark accent bands (contrast against the white) ----- */
.dark-section, .locked-card, .contact-info-card, footer,
.chat-head, .chat-fab, .toast, .marquee-wrap {
  -webkit-backdrop-filter: var(--glass-blur-lg);
  backdrop-filter: var(--glass-blur-lg);
}
.dark-section {
  background:
    radial-gradient(640px 640px at 88% -10%, rgba(232, 197, 71, 0.10), transparent 66%),
    radial-gradient(520px 520px at -6% 110%, rgba(232, 197, 71, 0.05), transparent 62%),
    var(--glass-dark);
  border: 1px solid var(--glass-line-dark);
  box-shadow: 0 1px 0 rgba(255, 232, 170, 0.10) inset, 0 30px 80px rgba(20, 16, 4, 0.24);
}
.locked-card, .contact-info-card {
  background:
    radial-gradient(380px 380px at 90% -10%, rgba(232, 197, 71, 0.12), transparent 72%),
    var(--glass-dark);
  border: 1px solid var(--glass-line-dark);
}
footer {
  background:
    radial-gradient(700px 420px at 80% 0%, rgba(232, 197, 71, 0.06), transparent 62%),
    var(--glass-dark);
  border-top: 1px solid var(--glass-line-dark);
}
.chat-head { background: var(--glass-dark); }
.chat-fab, .toast { background: var(--glass-dark); border: 1px solid var(--glass-line-dark); }
.marquee-wrap { background: var(--glass-dark); border-block: 1px solid var(--glass-line-dark); }

/* chat interior */
.chat-msgs { background: rgba(255, 252, 244, 0.55); }
.msg.bot, .chat-pkg-card { background: rgba(255, 255, 255, 0.9); border: 1px solid var(--glass-line); }
.chat-input { background: rgba(255, 253, 247, 0.7); }
.msg.user { background: rgba(58, 47, 8, 0.94); }

/* modal scrim + mobile menu */
.modal-overlay { background: rgba(40, 31, 4, 0.4); }
.mobile-menu { background: rgba(36, 27, 2, 0.86); }

/* ---- CONTROL BUTTONS: solid white + gold icon, unmistakably clickable ----- */
.hscroll-nav button {
  background: #FFFFFF;
  color: var(--green);
  border: 1px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 6px 18px rgba(150, 115, 10, 0.2);
}
.hscroll-nav button:hover { background: var(--dark); color: #FFFFFF; border-color: var(--dark); transform: scale(1.06); }
.back-top {
  background: #FFFFFF;
  color: var(--green);
  border: 1px solid rgba(184, 134, 11, 0.32);
  box-shadow: 0 8px 24px rgba(150, 115, 10, 0.26);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.back-top:hover { background: var(--dark); color: #FFFFFF; }
.mobile-book-bar {
  background: rgba(255, 253, 247, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
}

/* receipts / inclusions: gold-accented borders */
.receipt.us { border: 1.5px solid rgba(184, 134, 11, 0.6); }
.inc-box.inc { border: 1px solid rgba(184, 134, 11, 0.35); }

::selection { background: rgba(232, 197, 71, 0.32); color: var(--ink); }
.section-sub, .hero-sub, .page-hero p { color: #5A5648; }

/* ==========================================================================
   LOW-END GPU MODE — strip live blur on small screens; glass turns opaque
   ========================================================================== */
@media (max-width: 900px) {
  :root {
    --glass: rgba(255, 255, 255, 0.93);
    --glass-2: rgba(255, 255, 255, 0.96);
    --glass-dark: #281F04;
  }
  .searchbar, .pill-tabs, .book-card, .planner-panel, .contact-form,
  .gallery, .hero-photo, .about-photo, .modal, .chat-panel,
  .eyebrow, .currency-toggle, .bc-allin, .filter-search,
  .nav-inner, .navbar.scrolled .nav-inner, .float-card, .filter-bar,
  .dark-section, .locked-card, .contact-info-card, footer,
  .chat-head, .chat-fab, .toast, .marquee-wrap, .mobile-menu,
  .mobile-book-bar {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .nav-inner, .navbar.scrolled .nav-inner { background: rgba(252, 252, 249, 0.96); }
  .float-card { background: rgba(255, 255, 255, 0.96); }
  .filter-bar { background: rgba(252, 252, 249, 0.97); }
  .mobile-book-bar { background: rgba(252, 252, 249, 0.98); }
  .mobile-menu { background: #1A1503; }
}

/* ==========================================================================
   PREMIUM GLASS v4 — multi-layer specular sheen, hairline edges, soft halos
   Inspired by Apple Vision / glassmorphism dribbble references.
   Desktop only — mobile @media above strips backdrop-filter for perf.
   ========================================================================== */
@media (min-width: 901px) {
  /* Establish stacking context so ::before sheen can sit ABOVE the surface
     without intercepting clicks (pointer-events:none on the sheen). */
  .searchbar, .pill-tabs, .book-card, .planner-panel, .contact-form,
  .gallery, .hero-photo, .about-photo, .modal, .chat-panel,
  .currency-toggle, .bc-allin, .filter-search, .nav-inner,
  .float-card, .pkg-card, .mood-card, .step-card, .testi-card,
  .value-card, .dest-pick, .vote-card, .squad-row, .itin-day,
  .inc-box.inc, .inc-box.exc, .receipt.us, .receipt.them,
  .split-board, .bc-breakdown, .locked-card, .contact-info-card {
    position: relative;
    isolation: isolate;
  }

  /* Specular top-sheen pseudo: a soft diagonal light wash that gives glass
     real depth. Applied via a class-suffix pattern so we hit signature surfaces
     only (avoid every card having an extra ::before — keeps composition cheap). */
  .searchbar::before, .book-card::before, .planner-panel::before,
  .contact-form::before, .gallery::before, .hero-photo::before,
  .about-photo::before, .modal::before, .chat-panel::before,
  .nav-inner::before, .float-card::before,
  .locked-card::before, .contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
      linear-gradient(135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.12) 22%,
        rgba(255, 255, 255, 0) 46%,
        rgba(255, 255, 255, 0) 74%,
        rgba(255, 255, 255, 0.08) 100%);
    mix-blend-mode: screen;
    z-index: 0;
  }
  .locked-card::before, .contact-info-card::before {
    background:
      linear-gradient(135deg,
        rgba(255, 232, 170, 0.18) 0%,
        rgba(255, 232, 170, 0.04) 28%,
        rgba(255, 255, 255, 0) 60%);
  }
  /* keep content above the sheen */
  .searchbar > *, .book-card > *, .planner-panel > *,
  .contact-form > *, .gallery > *, .hero-photo > *, .about-photo > *,
  .modal > *, .chat-panel > *, .nav-inner > *, .float-card > *,
  .locked-card > *, .contact-info-card > * { position: relative; z-index: 1; }

  /* Upgraded signature glass — deeper blur, brighter inner edge, halo shadow */
  .searchbar, .pill-tabs, .currency-toggle, .bc-allin,
  .filter-search, .float-card {
    background: var(--glass);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 0 0 1px rgba(40, 32, 12, 0.04),
      0 12px 32px rgba(40, 32, 12, 0.08),
      0 2px 6px rgba(40, 32, 12, 0.04);
  }
  .book-card, .planner-panel, .modal, .chat-panel, .contact-form,
  .gallery, .hero-photo, .about-photo {
    background: var(--glass-2);
    -webkit-backdrop-filter: var(--glass-blur-lg);
    backdrop-filter: var(--glass-blur-lg);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 -1px 0 rgba(255, 255, 255, 0.35) inset,
      0 0 0 1px rgba(40, 32, 12, 0.04),
      0 36px 90px rgba(40, 32, 12, 0.14),
      0 10px 24px rgba(40, 32, 12, 0.06);
  }

  /* Navbar island — crystalline */
  .nav-inner {
    background: rgba(255, 255, 255, 0.54);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 8px 28px rgba(40, 32, 12, 0.08),
      0 2px 6px rgba(40, 32, 12, 0.04);
  }
  .navbar.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 14px 40px rgba(40, 32, 12, 0.12),
      0 2px 6px rgba(40, 32, 12, 0.05);
  }

  /* Cheap cards — keep no-blur (scroll perf), but refined edge + halo */
  .pkg-card, .mood-card, .step-card, .testi-card, .value-card,
  .dest-pick, .vote-card, .squad-row, .itin-day,
  .inc-box.inc, .inc-box.exc, .receipt.us, .receipt.them,
  .split-board, .bc-breakdown {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 0 0 1px rgba(40, 32, 12, 0.04),
      0 8px 24px rgba(40, 32, 12, 0.06),
      0 2px 4px rgba(40, 32, 12, 0.03);
  }
  .pkg-card:hover, .mood-card:hover, .step-card:hover,
  .testi-card:hover, .value-card:hover, .dest-pick:hover {
    background: var(--card-solid);
    border-color: rgba(168, 133, 20, 0.20);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 0 0 1px rgba(168, 133, 20, 0.10),
      0 22px 50px rgba(40, 32, 12, 0.12),
      0 6px 14px rgba(40, 32, 12, 0.05);
  }

  /* Smoked-glass surfaces — refined espresso with golden hairline */
  .dark-section, .locked-card, .contact-info-card, footer,
  .chat-head, .marquee-wrap {
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid rgba(255, 232, 170, 0.18);
    box-shadow:
      0 1px 0 rgba(255, 232, 170, 0.14) inset,
      0 30px 70px rgba(20, 16, 4, 0.28);
  }

  /* CTAs / chips — keep gold restrained: thin border, subtle gold fill */
  .chip { background: rgba(255, 255, 255, 0.85); border: 1px solid rgba(168, 133, 20, 0.22); }
  .fact-chip { background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(168, 133, 20, 0.18); }
}

/* ==========================================================================
   CINEMATIC HERO — full-viewport silent video, multi-layer scrim,
   typographic reveal, refined glass CTAs, subtle scroll cue.
   ========================================================================== */
.cine-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  max-height: 1100px;
  overflow: hidden;
  background: #0A0805;
  isolation: isolate;
  /* break out of any wrapping container */
  margin: 0;
}
.cine-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0) scale(1.06);
  will-change: transform;
  animation: cineDrift 28s ease-in-out infinite alternate;
  background: #0A0805;
}
@keyframes cineDrift {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1.2%, -1.2%, 0); }
}

/* Multi-layer cinematic scrim — bottom-heavy, top kiss, gold ambient pool */
.cine-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(130% 90% at 50% 100%, rgba(0, 0, 0, 0.62) 0%, transparent 56%),
    linear-gradient(to top, rgba(8, 6, 2, 0.78) 0%, rgba(8, 6, 2, 0.38) 28%, rgba(8, 6, 2, 0) 54%),
    linear-gradient(to bottom, rgba(8, 6, 2, 0.50) 0%, rgba(8, 6, 2, 0) 22%),
    radial-gradient(70% 50% at 16% 88%, rgba(201, 162, 58, 0.20), transparent 62%);
}

/* Subtle film grain over the whole hero */
.cine-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="240" height="240" filter="url(%23n)"/></svg>');
}

/* Overlay container — bottom-left content */
.cine-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.cine-inner {
  /* .cine-inner also carries the .container class — let it own width + centering
     so hero copy lands in the exact same column as every section heading
     (no scrollbar-width drift, never bleeding to the screen edge). */
  padding-bottom: clamp(56px, 9vh, 110px);
  padding-top: clamp(90px, 18vh, 200px);
  pointer-events: auto;
}

/* Eyebrow pill — refined glass over video */
.cine-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFE7A5;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.16) inset, 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0;
  animation: cineFade 0.9s var(--ease) 0.2s forwards;
}
.cine-eyebrow::before { display: none; }
.cine-eyebrow .cdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FFE7A5;
  box-shadow: 0 0 14px rgba(255, 231, 165, 0.9);
}

/* Title — Fraunces serif, white, with gold italicized accent word */
.cine-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 4px 50px rgba(0, 0, 0, 0.5);
  margin: 26px 0 20px;
  max-width: 15ch;
}
.cine-title .hl {
  font-style: italic;
  background: linear-gradient(180deg, #FFE7A5 0%, #C9A23A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Word-by-word reveal */
.cine-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
  padding-bottom: 0.22em;
}
.cine-word > * {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.65em);
  animation: cineRise 1.05s var(--ease) forwards;
}
.cine-word:nth-child(1) > * { animation-delay: 0.32s; }
.cine-word:nth-child(2) > * { animation-delay: 0.42s; }
.cine-word:nth-child(3) > * { animation-delay: 0.52s; }
.cine-word:nth-child(4) > * { animation-delay: 0.62s; }
.cine-word:nth-child(5) > * { animation-delay: 0.72s; }

.cine-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 32px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: cineFade 1s var(--ease) 0.95s forwards;
}
.cine-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: cineFade 1s var(--ease) 1.15s forwards;
}
.btn-cine {
  padding: 17px 30px;
  font-size: 0.9rem;
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.btn-cine:hover { background: #FFFFFF; color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28); }
.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 18px 26px;
  border-radius: 999px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.16) inset, 0 12px 30px rgba(0,0,0,0.28);
  transition: background 0.32s var(--ease), transform 0.32s var(--ease),
              border-color 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 20px 44px rgba(0,0,0,0.36);
}
.btn-glass .arr { transition: transform 0.32s var(--ease); }
.btn-glass:hover .arr { transform: translateX(4px); }

/* Bottom-center scroll cue */
.cine-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--head);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  animation: cineFade 1.2s var(--ease) 1.6s forwards;
}
.cine-cue-line {
  position: relative;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
  overflow: hidden;
}
.cine-cue-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, #FFFFFF 50%, transparent 100%);
  transform: translateY(-100%);
  animation: cineCueSlide 2.2s ease-in-out infinite;
}
@keyframes cineCueSlide {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}
@keyframes cineFade { to { opacity: 1; } }
@keyframes cineRise { to { opacity: 1; transform: translateY(0); } }

/* ===== HERO SEARCH (its own section under the cinematic hero) ===== */
.hero-search {
  padding: clamp(70px, 10vh, 130px) 0 clamp(50px, 7vh, 90px);
}
.hs-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.hs-head .eyebrow { justify-content: center; }
.hs-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 18px 0 14px;
  color: var(--ink);
}
.hs-sub {
  color: #5A5648;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}
.searchbar-lg {
  max-width: 1000px;
  margin: 0 auto;
}
.hs-badges {
  margin-top: 30px;
  justify-content: center;
  text-align: center;
}

/* Mobile — keep the cinema, soften the load */
@media (max-width: 900px) {
  .cine-hero { height: 90svh; min-height: 540px; }
  .cine-video { animation: none; transform: scale(1.04); }
  .cine-title { font-size: clamp(2.2rem, 11.5vw, 4.2rem); margin-top: 18px; }
  .cine-sub { font-size: 0.98rem; margin-bottom: 24px; }
  .btn-cine, .btn-glass { padding: 14px 24px; font-size: 0.82rem; }
  .cine-cue { display: none; }
}

/* Respect reduced motion + low-bandwidth (data-saver) */
@media (prefers-reduced-motion: reduce) {
  .cine-video,
  .cine-cue-line::before { animation: none !important; }
  .cine-word > *, .cine-eyebrow, .cine-sub, .cine-ctas, .cine-cue {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   NEW-GEN FEATURES — wishlist · carbon · reel feed · vibe discovery ·
   availability poll · vote reactions · Milo itinerary
   ========================================================================== */

/* ---------- Wishlist heart (on every package card) ---------- */
.pkg-save {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 4;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(34, 25, 2, 0.34);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.pkg-save svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.pkg-save:hover { background: rgba(34, 25, 2, 0.55); transform: scale(1.1); }
.pkg-save.saved {
  background: var(--white);
  border-color: var(--white);
  color: #D14B5A;
}
.pkg-save.saved svg { fill: #D14B5A; stroke: #D14B5A; animation: heartPop 0.42s var(--ease); }
@keyframes heartPop { 0% { transform: scale(0.6); } 55% { transform: scale(1.28); } 100% { transform: scale(1); } }

/* ---------- Carbon footprint chip ---------- */
.pkg-eco {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(34, 25, 2, 0.34);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg-eco svg { width: 14px; height: 14px; }
.pkg-eco.eco-low svg  { color: #A8C686; }
.pkg-eco.eco-mid svg  { color: var(--gold); }
.pkg-eco.eco-high svg { color: #D9A066; }
/* detail-page variant (on light) */
.fact-chip.eco-chip .ic { color: var(--green); }
.fact-chip.eco-low .ic  { color: #6E8B4A; }
.fact-chip.eco-mid .ic  { color: #B8860B; }
.fact-chip.eco-high .ic { color: #BE7B3A; }

/* ---------- Reel feed (cinematic destination scenes) ---------- */
.reel-section { padding-bottom: clamp(40px, 6vw, 80px); }
.reel-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px clamp(16px, calc((100vw - var(--container)) / 2), 50vw) 22px;
}
.reel-rail::-webkit-scrollbar { display: none; }
.reel-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  background: var(--green-mist);
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.reel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reel-media { position: absolute; inset: 0; overflow: hidden; }
.reel-media img, .reel-media .reel-vid {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: reelPan 16s ease-in-out infinite alternate;
}
.reel-card:nth-child(even) .reel-media img { animation-duration: 19s; }
@keyframes reelPan {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-2%, -3%, 0); }
}
.reel-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,2,0.30) 0%, rgba(20,15,2,0) 32%, rgba(20,15,2,0.06) 50%, rgba(20,15,2,0.86) 100%);
}
.reel-tag {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--head); font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(20, 15, 2, 0.38);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 12px; border-radius: 999px;
}
.reel-tag i { width: 7px; height: 7px; border-radius: 50%; background: #FF5A5A; box-shadow: 0 0 0 0 rgba(255,90,90,0.6); animation: reelLive 1.8s infinite; }
@keyframes reelLive { 0% { box-shadow: 0 0 0 0 rgba(255,90,90,0.55); } 70% { box-shadow: 0 0 0 7px rgba(255,90,90,0); } 100% { box-shadow: 0 0 0 0 rgba(255,90,90,0); } }
.reel-body { position: absolute; inset: auto 0 0 0; padding: 20px 18px; color: #FFFFFF; z-index: 2; }
.reel-kicker { display: inline-flex; align-items: center; gap: 6px; font-family: var(--head); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.84); }
.reel-kicker .ic { width: 1em; height: 1em; }
.reel-body b { display: block; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; line-height: 1.1; margin: 6px 0 12px; text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.reel-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 600; font-size: 0.8rem;
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 9px 16px; border-radius: 999px;
}
.reel-cta .x-arr { transition: transform 0.4s var(--ease); }
.reel-card:hover .reel-cta .x-arr { transform: translateX(4px); }

/* ---------- Vibe discovery strip (Trips page) ---------- */
.vibe-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.vibe-lead { font-family: var(--head); font-weight: 600; font-size: 0.82rem; color: var(--muted); margin-right: 2px; }
.vibe-pill {
  font-family: var(--head); font-weight: 600; font-size: 0.82rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 17px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.vibe-pill:hover { transform: translateY(-2px); border-color: var(--green); color: var(--dark); }
.vibe-pill.active { background: var(--ink); border-color: var(--ink); color: #FFFFFF; box-shadow: var(--shadow-md); }

/* ---------- Saved (wishlist) filter toggle ---------- */
.saved-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  margin-left: auto;
}
.saved-toggle svg { width: 15px; height: 15px; }
.saved-toggle i { font-style: normal; font-weight: 700; font-size: 0.78em; opacity: 0.7; }
.saved-toggle.active svg { fill: #D14B5A; stroke: #D14B5A; color: #D14B5A; }

/* ---------- Availability poll (planner) ---------- */
.avail-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.avail-cell {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 6px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: all 0.28s var(--ease);
}
.avail-cell b { font-family: var(--head); font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.avail-cell small { color: var(--muted); font-size: 0.72rem; }
.avail-cell:hover { border-color: var(--green); transform: translateY(-2px); }
.avail-cell.on { background: var(--ink); border-color: var(--ink); }
.avail-cell.on b, .avail-cell.on small { color: #FFFFFF; }
.avail-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.avail-result {
  font-family: var(--head); font-weight: 600; font-size: 0.92rem; color: var(--dark);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.avail-result.show { opacity: 1; transform: none; }
.avail-result .ic { width: 1.05em; height: 1.05em; color: var(--green); }
#findDate.loading { opacity: 0.7; pointer-events: none; }

/* ---------- Vote reactions (planner) ---------- */
.vc-reactions { display: flex; gap: 8px; margin-bottom: 12px; }
.vc-react {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--head); font-weight: 600; font-size: 0.8rem;
  color: var(--muted);
  background: var(--green-mist);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.26s var(--ease);
}
.vc-react svg { width: 15px; height: 15px; }
.vc-react:hover { transform: translateY(-2px); border-color: var(--green); color: var(--dark); }
.vc-react .vr-n { font-variant-numeric: tabular-nums; }
.vc-react[data-kind="love"].on { color: #D14B5A; border-color: #E8A6AE; background: #FBEAEC; }
.vc-react[data-kind="love"].on svg { fill: #D14B5A; stroke: #D14B5A; }
.vc-react[data-kind="hype"].on { color: #C77A2A; border-color: #E8C39A; background: #FBF1E4; }
.vc-react[data-kind="hype"].on svg { fill: #E09A3E; stroke: #C77A2A; }

/* ---------- Milo itinerary card (chat) ---------- */
.chat-itin {
  align-self: flex-start;
  max-width: 92%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  animation: msgIn 0.45s var(--ease) both;
}
.chat-itin .ci-top { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.chat-itin .ci-ic { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--green-soft); color: var(--dark); display: grid; place-items: center; }
.chat-itin .ci-ic svg { width: 18px; height: 18px; }
.chat-itin .ci-top b { font-family: var(--head); font-weight: 700; font-size: 0.92rem; display: block; line-height: 1.25; }
.chat-itin .ci-top small { color: var(--muted); font-size: 0.74rem; }
.chat-itin .ci-days { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.chat-itin .ci-days li { display: flex; gap: 11px; }
.chat-itin .ci-d {
  flex-shrink: 0;
  font-family: var(--head); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--dark);
  background: var(--green-mist);
  border: 1px solid var(--line);
  height: fit-content;
  padding: 4px 9px; border-radius: 7px;
}
.chat-itin .ci-txt b { font-family: var(--head); font-weight: 600; font-size: 0.86rem; display: block; line-height: 1.3; }
.chat-itin .ci-txt p { color: var(--muted); font-size: 0.8rem; line-height: 1.5; margin-top: 2px; }
.chat-itin .ci-open {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 13px;
  font-family: var(--head); font-weight: 600; font-size: 0.82rem;
  color: var(--dark);
}
.chat-itin .ci-open .arr { transition: transform 0.35s var(--ease); }
.chat-itin .ci-open:hover .arr { transform: translateX(4px); }

/* ---------- New features — responsive ---------- */
@media (max-width: 760px) {
  .avail-grid { grid-template-columns: repeat(3, 1fr); }
  .reel-card { width: clamp(200px, 64vw, 260px); }
  .reel-rail { padding-inline: 16px; }
  .vibe-strip { gap: 8px; }
  .saved-toggle { margin-left: 0; }
}

/* ==========================================================================
   MOBILE PREMIUM LAYER — phone-specific polish (≤ 560px / ≤ 480px)
   Targets the gaps the base responsive rules leave on 390–430px viewports.
   ========================================================================== */

/* ── Section rhythm: breathe at phone scale ──────────────────────────────── */
@media (max-width: 560px) {
  section { padding: clamp(52px, 12vw, 76px) 0; }
  .hero-search { padding: clamp(44px, 10vw, 68px) 0 clamp(32px, 8vw, 52px); }
  .hs-head { margin-bottom: 22px; }
  footer { margin-top: 60px; padding-top: 48px; }
  .section-sub { font-size: 0.94rem; }
  .eyebrow { margin-bottom: 14px; font-size: 0.65rem; letter-spacing: 0.2em; }
}

/* ── Navbar: keep logo + burger clean on tiny screens ────────────────────── */
@media (max-width: 400px) {
  .nav-inner { padding: 6px 6px 6px 12px; gap: 0; }
  .logo .brand-mark { width: 34px; height: 22px; }
  .logo .logo-word { font-size: 0.98rem; }
  .hamburger { padding: 8px; }
  .hamburger span { width: 20px; }
}

/* ── Cinematic hero: push copy down enough, avoid safe-area clash ─────────── */
@media (max-width: 560px) {
  .cine-hero { height: 88svh; min-height: 520px; }
  .cine-inner {
    padding-bottom: clamp(52px, 11vh, 88px);
    padding-top: clamp(84px, 16vh, 160px);
  }
  .cine-title {
    font-size: clamp(2.1rem, 10.5vw, 3.4rem);
    margin: 14px 0 16px;
    max-width: 14ch;
  }
  .cine-sub { font-size: 0.9rem; max-width: 34ch; margin-bottom: 22px; }
  .cine-ctas { gap: 10px; }
  .btn-cine, .btn-glass {
    padding: 14px 22px;
    font-size: 0.84rem;
    min-height: 50px;
  }
}

/* ── Search bar: single column stack on phones ───────────────────────────── */
@media (max-width: 560px) {
  .searchbar,
  .searchbar-lg {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 7px;
    gap: 5px;
  }
  .searchbar .sb-field,
  .searchbar-lg .sb-field {
    padding: 11px 16px;
    border-radius: 16px;
  }
  .searchbar .sb-field::after,
  .searchbar-lg .sb-field::after { display: none; }
  .searchbar .btn,
  .searchbar-lg .btn {
    grid-column: 1 / -1;
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 0.92rem;
  }
}

/* ── Featured trips: wider cards on small phones ─────────────────────────── */
@media (max-width: 480px) {
  .hscroll { grid-auto-columns: 88vw; gap: 14px; padding: 6px 2px 26px; }
}

/* ── Pill-tabs + nav row: horizontal scroll so they never wrap ───────────── */
@media (max-width: 560px) {
  .pill-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    display: inline-flex;
    flex-wrap: nowrap;
    max-width: 100%;
  }
  .pill-tabs::-webkit-scrollbar { display: none; }
  .pill-tabs button { flex-shrink: 0; padding: 8px 17px; font-size: 0.82rem; }
  /* sec-head row that holds tabs + arrows: prevent wrapping overflow */
  .sec-head > div:last-child {
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .sec-head > div:last-child::-webkit-scrollbar { display: none; }
  .hscroll-nav button { width: 42px; height: 42px; font-size: 0.9rem; flex-shrink: 0; }
}

/* ── Mood cards: tighter padding, crisper on 2-col grid ─────────────────── */
@media (max-width: 560px) {
  .mood-card { padding: 20px 12px 16px; }
  .mood-card .mc-ic { width: 44px; height: 44px; margin-bottom: 10px; }
  .mood-card .mc-ic svg { width: 20px; height: 20px; }
  .mood-card b { font-size: 0.88rem; }
  .mood-card small { font-size: 0.71rem; }
}

/* ── Group planner dark section: breathe on phone ───────────────────────── */
@media (max-width: 560px) {
  .dark-section {
    border-radius: 22px;
    margin-inline: 8px;
    padding: 40px 20px 36px;
  }
  .planner-feats { gap: 16px; margin: 20px 0 26px; }
  .planner-feat { gap: 12px; }
  .planner-feat .pf-ic { width: 40px; height: 40px; flex-shrink: 0; }
  .planner-feat .pf-ic svg { width: 18px; height: 18px; }
  .planner-feat b { font-size: 0.95rem; }
  .planner-feat p { font-size: 0.86rem; line-height: 1.55; }
}

/* ── Vote mock widget: phone-readable ───────────────────────────────────── */
@media (max-width: 480px) {
  .vote-mock .vm-in { padding: 18px 16px; }
  .vm-head { margin-bottom: 16px; }
  .vm-head b { font-size: 0.96rem; }
  .vm-option { padding: 11px 13px; margin-bottom: 8px; border-radius: var(--r-sm); }
  .vm-option .vm-row { font-size: 0.86rem; }
  .vm-votes { font-size: 0.72rem; }
  .vm-split { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 14px; margin-top: 14px; }
  .vm-split b { font-size: 1.1rem; }
  .vm-paid { font-size: 0.74rem; }
}

/* ── Honest pricing receipts: legible at phone width ─────────────────────── */
@media (max-width: 560px) {
  .receipt { padding: 28px 18px 22px; }
  .receipt h3 { font-size: 1rem; margin-bottom: 14px; }
  .receipt li { font-size: 0.86rem; gap: 8px; }
  .receipt .r-total { font-size: 0.96rem; }
  .receipt .r-total b { font-size: 1.4rem; }
  .receipt .r-note { font-size: 0.76rem; }
  .receipt .r-tag { font-size: 0.66rem; padding: 5px 12px; }
}

/* ── Steps cards: tighter but still premium ─────────────────────────────── */
@media (max-width: 480px) {
  .step-card { padding: 28px 22px 24px; }
  .step-card::before { font-size: 3.4rem; top: 12px; right: 16px; }
  .step-card .st-emoji { width: 46px; height: 46px; margin-bottom: 16px; }
  .step-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
  .step-card p { font-size: 0.9rem; }
}

/* ── Testimonials: full-width, no artificial max-width on phone ──────────── */
@media (max-width: 560px) {
  .testi-grid { max-width: 100%; }
  .testi-card { padding: 24px 20px; gap: 14px; }
  .testi-card .quote-mark { font-size: 2.8rem; }
  .testi-card p { font-size: 0.96rem; }
  .testi-who b { font-size: 0.9rem; }
  .testi-who small { font-size: 0.76rem; }
}

/* ── Stats: tidy 2×2 on phones ──────────────────────────────────────────── */
@media (max-width: 560px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .stat b { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .stat small { font-size: 0.82rem; }
}

/* ── CTA banner: full-width clean read on phone ─────────────────────────── */
@media (max-width: 560px) {
  .cta-banner h2 { font-size: clamp(2rem, 9.5vw, 3rem); margin-bottom: 12px; }
  .cta-banner p { font-size: 0.94rem; max-width: 36ch; margin-bottom: 28px; }
  .cta-banner .btn { min-height: 50px; font-size: 0.88rem; padding: 15px 24px; }
}

/* ── Footer: structured, airy on phone ──────────────────────────────────── */
@media (max-width: 560px) {
  .foot-grid { gap: 30px; }
  .foot-brand p { font-size: 0.88rem; max-width: 100%; }
  .foot-tagline { font-size: 0.88rem; }
  footer h4 { font-size: 0.72rem; margin-bottom: 14px; }
  footer ul { gap: 9px; }
  footer ul a { font-size: 0.88rem; }
  .foot-watermark { font-size: clamp(2.8rem, 10vw, 5rem); }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 0.78rem; }
  .foot-bottom .links { gap: 14px; flex-wrap: wrap; }
  .newsletter { border-radius: 14px; }
  .newsletter input { padding: 9px 14px; font-size: 0.85rem; }
  .newsletter button { padding: 9px 16px; font-size: 0.8rem; border-radius: 12px; }
}

/* ── Mobile menu: larger serif links, easier to tap ─────────────────────── */
@media (max-width: 560px) {
  .mobile-menu { padding: 7vh 7vw; gap: 4px; }
  .mobile-menu a {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    padding: 13px 0;
  }
  .mobile-menu .mm-foot { margin-top: 24px; gap: 14px; }
}

/* ── Reel feed: thumb-friendly on phones ────────────────────────────────── */
@media (max-width: 480px) {
  .reel-card { width: clamp(185px, 72vw, 250px); }
  .reel-body b { font-size: 1.28rem; }
  .reel-kicker { font-size: 0.7rem; }
}

/* ── Chat FAB: clear of safe-area bottom ────────────────────────────────── */
@media (max-width: 480px) {
  .chat-fab { right: 14px; padding: 11px 13px; }
}

/* ── Safe-area insets for notched iPhones ───────────────────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  @media (max-width: 900px) {
    .mobile-menu {
      padding-bottom: calc(6vh + env(safe-area-inset-bottom));
    }
    .mobile-book-bar {
      padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
  }
}

/* ==========================================================================
   AUTHENTICATION — sign in / sign up / account  +  navbar avatar menu
   Reuses the Quiet-Luxury glass system; gold accent, Cormorant headings.
   ========================================================================== */

/* ---------- navbar: account avatar + dropdown ---------- */
.auth-slot { display: flex; align-items: center; }
.acct-menu { position: relative; }
.acct-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 9px 5px 5px; border-radius: 999px;
  background: rgba(255,255,255,0.55); border: 1px solid var(--line);
  cursor: pointer; transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.acct-trigger:hover { background: rgba(255,255,255,0.85); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.acct-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden;
  background: var(--green); color: #fff;
  font-family: var(--head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.02em;
}
.acct-avatar img { width: 100%; height: 100%; object-fit: cover; }
.acct-avatar.lg { width: 46px; height: 46px; font-size: 1rem; }
.acct-caret { font-size: 0.7rem; color: var(--muted); transition: transform .3s var(--ease); }
.acct-menu.open .acct-caret { transform: rotate(180deg); }
.acct-pop {
  position: absolute; top: calc(100% + 12px); right: 0; width: 256px;
  background: var(--glass-2); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-line); border-radius: var(--r-md);
  box-shadow: var(--glass-shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98);
  transform-origin: top right; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 120;
}
.acct-menu.open .acct-pop { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.acct-pop-head { display: flex; align-items: center; gap: 11px; padding: 10px 10px 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.acct-pop-head b { display: block; font-family: var(--head); font-weight: 700; font-size: 0.92rem; color: var(--ink); line-height: 1.2; }
.acct-pop-head small { display: block; color: var(--muted); font-size: 0.76rem; max-width: 165px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct-pop a, .acct-pop button {
  display: flex; align-items: center; width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 10px; font-size: 0.88rem; color: var(--ink);
  background: none; border: 0; cursor: pointer; font-family: var(--body); transition: background .2s var(--ease), color .2s var(--ease);
}
.acct-pop a:hover, .acct-pop button:hover { background: rgba(168,133,20,0.10); color: var(--dark); }
.acct-pop .acct-signout { color: #9c3a23; margin-top: 4px; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; }
.acct-pop .acct-signout:hover { background: rgba(156,58,35,0.08); color: #9c3a23; }
.mm-auth { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }

/* ---------- auth page shell (split layout) ---------- */
.auth-page { min-height: 100vh; }
/* the [hidden] attribute must win over the flex display rules below */
.auth-form[hidden], .auth-demo[hidden], #otpStep[hidden], #phoneStep[hidden] { display: none !important; }
.auth-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100vh;
}
/* left — cinematic travel panel */
.auth-aside {
  position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(32px, 4vw, 64px);
  background: linear-gradient(155deg, #221a05, #4a3a05 60%, #6b520a);
  color: #fff;
}
.auth-aside .aa-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.42; filter: saturate(1.05);
}
.auth-aside .aa-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(20,15,2,0.55), rgba(20,15,2,0.78)); }
.auth-aside > * { position: relative; z-index: 2; }
.aa-top { display: flex; align-items: center; gap: 12px; }
.aa-top .logo-word { color: #fff; font-family: var(--head); font-weight: 700; letter-spacing: 0.04em; }
.aa-top .logo-word .go { color: var(--neon); }
.aa-top .brand-mark { filter: brightness(0) invert(1); width: 40px; height: 27px; display: inline-block; background-size: contain; background-repeat: no-repeat; }
.aa-quote { max-width: 460px; }
.aa-quote h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }

/* ==========================================================================
   MOBILE PREMIUM REFINE — Airbnb-style swipe rail (≤640px)
   Photo stands alone in a rounded frame; info flows below in ink on white.
   Cards shrink, get a peek of the next card, declutter to title + price.
   ========================================================================== */
@media (max-width: 640px) {

  /* Airier vertical rhythm between sections */
  section { padding: clamp(44px, 9vw, 68px) 0; }
  .sec-head { margin-bottom: 18px; gap: 10px; }
  .section-title { font-size: clamp(1.7rem, 7.4vw, 2.2rem); line-height: 1.1; }
  .section-sub { font-size: 0.92rem; line-height: 1.55; max-width: 38ch; }

  /* Horizontal rail — tighter, more whitespace, real peek of next card */
  .hscroll {
    grid-auto-columns: 74vw;
    gap: 14px;
    padding: 4px 0 22px;
    padding-inline: max(5vw, calc((100vw - var(--container)) / 2));
    scroll-padding-inline-start: max(5vw, calc((100vw - var(--container)) / 2));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  /* Arrow controls are touch-redundant on phones */
  .hscroll-nav { display: none; }

  /* Featured section header reflows — title alone on its row */
  #featured .sec-head { flex-direction: column; align-items: flex-start; }
  #featured .sec-head > div:last-child { width: 100%; }

  /* CARD — flatten the chrome, photo becomes the hero, text moves below */
  .pkg-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  .pkg-card:hover { transform: none; box-shadow: none; }
  /* .pkg-media becomes a vertical stack: photo (clipped) + overlay (below) */
  .pkg-media {
    aspect-ratio: auto;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    display: block;
  }
  .pkg-media img {
    aspect-ratio: 5 / 6;
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 8px 22px rgba(58, 47, 8, 0.10);
  }
  .pkg-media .ph-fallback {
    border-radius: 18px;
    aspect-ratio: 5 / 6;
    position: relative;
    inset: auto;
  }
  .pkg-scrim { display: none; }

  /* Info now lives BELOW the photo, in ink, not on the image */
  .pkg-overlay {
    position: static;
    inset: auto;
    padding: 14px 2px 4px;
    color: var(--ink);
  }
  .pkg-name {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.005em;
    text-shadow: none;
    color: var(--ink);
  }
  .pkg-tagline {
    font-size: 0.82rem;
    color: var(--muted);
    text-shadow: none;
    margin-top: 3px;
    line-height: 1.45;
    -webkit-line-clamp: 1;
  }

  /* One tight row for rating + duration, muted — Airbnb-style sub-info */
  .pkg-chips { margin-top: 6px; gap: 6px; }
  .pkg-duration {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    color: var(--muted);
    padding: 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
  }
  .pkg-duration::before { content: ""; }
  .pkg-eco {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: var(--muted);
    font-size: 0.74rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .pkg-eco::before { content: "·"; margin-right: 4px; color: var(--muted); }

  /* Rating + price line — clean, no border, no Explore pill */
  .pkg-meta-row { margin-top: 8px; gap: 8px; }
  .pkg-rating {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 600;
  }
  .pkg-rating i { color: var(--muted); font-size: 0.78rem; font-weight: 400; }
  .pkg-explore { display: none; }

  .pkg-price-row {
    border: none;
    margin-top: 2px;
    padding-top: 0;
    color: var(--muted);
    font-size: 0.78rem;
  }
  .pkg-loc { display: none; } /* location echoes the title region; hide on phone */
  .pkg-price { margin-left: auto; color: var(--ink); }
  .pkg-price b {
    color: var(--ink);
    font-family: var(--head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .pkg-price i { color: var(--muted); font-size: 0.74rem; }

  /* Badge: smaller, less shouty */
  .pkg-badge {
    top: 12px; left: 12px;
    font-size: 0.6rem;
    padding: 5px 10px;
    letter-spacing: 0.14em;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    border: none;
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Save heart: floating on the photo, no glassy ring */
  .pkg-save {
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
  .pkg-save svg { width: 18px; height: 18px; }

  /* Reel cards: a touch smaller + more peek too */
  .reel-rail { padding-inline: 5vw; gap: 14px; }
  .reel-card { width: 64vw; max-width: 260px; }

  /* Hero search on mobile: the fixed top pill IS the search, so the fat in-page
     form is redundant clutter. Drop it; keep the editorial line as a calm,
     premium lead-in to the trips below. */
  .hero-search { padding: clamp(30px, 7vw, 50px) 0 0; }
  .hs-head { margin-bottom: 6px; }
  .hs-title { font-size: clamp(1.6rem, 7vw, 2rem); line-height: 1.15; }
  .hs-sub { font-size: 0.92rem; }
  .searchbar-lg { display: none; }

  /* "See all trips" CTA needs a touch more space above */
  #featured + section { padding-top: 6vw; }
}

/* Very small phones — even more peek, ensure no overflow */
@media (max-width: 380px) {
  .hscroll { grid-auto-columns: 78vw; }
  .pkg-name { font-size: 1.1rem; }
  .pkg-price b { font-size: 0.95rem; }
}

.aa-quote p { color: rgba(255,255,255,0.82); font-size: 1.02rem; line-height: 1.6; max-width: 420px; }
.aa-perks { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.aa-perk { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.aa-perk .ic { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 50%; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); color: var(--neon); }
.aa-perk .ic svg { width: 20px; height: 20px; }

/* right — form panel */
.auth-main { display: flex; align-items: center; justify-content: center; padding: clamp(28px, 4vw, 56px); background: #FAFAF7; }
.auth-card { width: 100%; max-width: 432px; }
.auth-back { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 0.84rem; margin-bottom: 26px; transition: color .25s var(--ease); }
.auth-back:hover { color: var(--ink); }
.auth-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.auth-head p { color: var(--muted); margin-top: 8px; font-size: 0.96rem; }
.auth-head p a { color: var(--green); font-weight: 600; }
.auth-head p a:hover { text-decoration: underline; }

/* method tabs (email / phone) */
.auth-tabs { display: flex; gap: 4px; margin: 26px 0 22px; padding: 4px; background: var(--green-mist); border-radius: 999px; border: 1px solid var(--line); }
.auth-tabs button {
  flex: 1; padding: 10px; border: 0; background: none; cursor: pointer; border-radius: 999px;
  font-family: var(--head); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.03em; color: var(--muted);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.auth-tabs button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* social buttons */
.auth-socials { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.soc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
  cursor: pointer; font-family: var(--head); font-weight: 600; font-size: 0.82rem; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.soc-btn:hover { border-color: rgba(50,42,22,0.3); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.soc-btn svg { width: 19px; height: 19px; flex: none; }
.soc-btn span { display: none; }
.auth-or { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 22px 0; }
.auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* fields */
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.fld { position: relative; }
.fld > label { display: block; font-family: var(--head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 7px; }
.fld input {
  width: 100%; padding: 14px 15px; font-size: 0.95rem; font-family: var(--body); color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.fld input::placeholder { color: #b3ad9c; }
.fld input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(168,133,20,0.12); }
.fld.has-icon input { padding-left: 44px; }
.fld .fld-ic { position: absolute; left: 14px; top: 38px; color: var(--muted); pointer-events: none; }
.fld .fld-ic svg { width: 19px; height: 19px; }
.fld .pw-toggle { position: absolute; right: 12px; top: 34px; background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 0.78rem; font-family: var(--head); font-weight: 600; padding: 4px 6px; }
.fld .pw-toggle:hover { color: var(--ink); }
.fld.invalid input { border-color: #c0492f; box-shadow: 0 0 0 4px rgba(192,73,47,0.10); }
.fld-err { display: none; color: #c0492f; font-size: 0.78rem; margin-top: 6px; }
.fld.invalid .fld-err { display: block; }

/* phone field with country code */
.phone-row { display: flex; gap: 10px; }
.phone-row select { flex: none; width: 96px; padding: 14px 10px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; font-family: var(--body); font-size: 0.92rem; color: var(--ink); }
.phone-row select:focus { outline: none; border-color: var(--green); }
.phone-row .fld { flex: 1; }

/* password strength */
.pw-strength { display: flex; gap: 5px; margin-top: 9px; }
.pw-strength i { flex: 1; height: 4px; border-radius: 3px; background: var(--line); transition: background .3s var(--ease); }
.pw-strength.s1 i:nth-child(1) { background: #c0492f; }
.pw-strength.s2 i:nth-child(-n+2) { background: #d99411; }
.pw-strength.s3 i:nth-child(-n+3) { background: #c9a23a; }
.pw-strength.s4 i { background: #4e8d4a; }
.pw-hint { font-size: 0.76rem; color: var(--muted); margin-top: 6px; }

/* options row */
.auth-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; }
.auth-check { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); cursor: pointer; }
.auth-check input { width: 17px; height: 17px; accent-color: var(--green); cursor: pointer; }
.auth-link { color: var(--green); font-weight: 600; cursor: pointer; background: none; border: 0; font-family: var(--body); font-size: 0.85rem; }
.auth-link:hover { text-decoration: underline; }
.auth-form .btn { width: 100%; margin-top: 4px; }
.auth-form .btn[data-loading] { position: relative; color: transparent !important; }
.auth-form .btn[data-loading]::after {
  content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; animation: authSpin .7s linear infinite;
}
@keyframes authSpin { to { transform: rotate(360deg); } }
.auth-note { font-size: 0.76rem; color: var(--muted); text-align: center; line-height: 1.5; }
.auth-note a { color: var(--green); }
.auth-guest { text-align: center; margin-top: 18px; }

/* form-level alert */
.auth-alert { display: none; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--r-sm); font-size: 0.86rem; margin-bottom: 4px; }
.auth-alert.show { display: flex; }
.auth-alert.err { background: rgba(192,73,47,0.10); color: #9c3a23; border: 1px solid rgba(192,73,47,0.2); }
.auth-alert.ok { background: rgba(78,141,74,0.12); color: #2f6b2c; border: 1px solid rgba(78,141,74,0.25); }

/* demo / config banner */
.auth-demo { display: flex; gap: 10px; align-items: flex-start; padding: 11px 13px; margin-top: 22px; border-radius: var(--r-sm); background: var(--green-mist); border: 1px solid var(--line); font-size: 0.76rem; color: var(--muted); line-height: 1.5; }
.auth-demo b { color: var(--ink); }

/* OTP boxes */
.otp-row { display: flex; gap: 10px; justify-content: space-between; }
.otp-row input { width: 100%; aspect-ratio: 1; text-align: center; font-size: 1.3rem; font-weight: 700; font-family: var(--head); padding: 0; }
.otp-back { background: none; border: 0; color: var(--muted); font-size: 0.84rem; cursor: pointer; margin-top: 2px; }
.otp-back:hover { color: var(--ink); }

@media (max-width: 860px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .auth-main { min-height: 100vh; }
  /* stack social buttons full-width with labels — cleaner than a cramped 3-up grid */
  .auth-socials { grid-template-columns: 1fr; }
  .soc-btn { justify-content: flex-start; padding-left: 18px; min-width: 0; }
  .soc-btn span { display: inline; }
}

/* ---------- account dashboard ---------- */
.account-page { background: #FAFAF7; }
.acct-hero { padding: 130px 0 30px; }
.acct-hero-in { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.acct-hero .acct-avatar { width: 76px; height: 76px; font-size: 1.6rem; box-shadow: var(--shadow-md); }
.acct-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.05; color: var(--ink); }
.acct-hero p { color: var(--muted); margin-top: 2px; }
.acct-hero .btn { margin-left: auto; }
.acct-tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin: 26px 0 30px; overflow-x: auto; }
.acct-tabs button {
  padding: 13px 18px; border: 0; background: none; cursor: pointer; white-space: nowrap;
  font-family: var(--head); font-weight: 600; font-size: 0.88rem; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .25s var(--ease), border-color .25s var(--ease);
}
.acct-tabs button.active { color: var(--ink); border-bottom-color: var(--green); }
.acct-panel { display: none; padding-bottom: 80px; }
.acct-panel.active { display: block; animation: fadeUp .4s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.acct-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.acct-box { background: var(--card); border: 1px solid var(--glass-line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--glass-shadow); }
.acct-box h3 { font-family: var(--head); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 16px; }
.acct-box .fld + .fld { margin-top: 14px; }
.acct-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.acct-empty .ic { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--green-mist); color: var(--green); margin-bottom: 16px; }
.acct-empty .ic svg { width: 30px; height: 30px; }
.acct-empty h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.acct-empty p { max-width: 360px; margin: 0 auto 20px; }
.acct-stat-row { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 6px; }
.acct-stat b { display: block; font-family: var(--serif); font-size: 2rem; color: var(--ink); line-height: 1; }
.acct-stat span { font-size: 0.82rem; color: var(--muted); }
.acct-pref { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.acct-pref:last-child { border-bottom: 0; }
.acct-pref b { font-family: var(--head); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.acct-pref small { display: block; color: var(--muted); font-size: 0.8rem; font-weight: 400; }

/* ==========================================================================
   MOBILE TOP SEARCH PILL + BOTTOM TAB BAR (Airbnb-style chrome)
   JS injects .nav-search-pill into .navbar and .bottom-nav into <body>.
   ========================================================================== */
.nav-search-pill, .bottom-nav { display: none; }

@media (max-width: 900px) {
  /* Hide desktop nav chrome on phones: links, currency, plan-btn, hamburger, slide-in menu */
  .navbar .nav-links { display: none; }
  .navbar .nav-actions { display: none; }
  .navbar .hamburger { display: none !important; }
  .mobile-menu { display: none !important; }

  /* Compact logo: keep the mark, drop the wordmark to free space for the pill */
  .navbar .nav-inner { gap: 12px; }
  .navbar .logo .logo-word { display: none; }
  .navbar .brand-mark { width: 34px; height: 23px; }

  /* The search bar: magazine kicker — DISCOVER eyebrow over a real input */
  .nav-search-pill {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
  }
  /* Eyebrow: tiny uppercase kicker + thin gold gradient line */
  .nsp-eye {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 16px;
  }
  .nsp-kick {
    font-family: var(--head);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--green);
  }
  .nsp-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(168, 133, 20, 0.55), rgba(168, 133, 20, 0));
  }
  /* The pill itself */
  .nsp-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 46px;
    background: #fff;
    border-radius: 999px;
    padding: 4px 4px 4px 18px;
    box-shadow: 0 6px 22px rgba(58, 47, 8, 0.08), 0 0 0 0.5px rgba(168, 133, 20, 0.15) inset;
    transition: box-shadow 0.35s var(--ease), transform 0.25s var(--ease);
  }
  .nsp-bar:focus-within {
    box-shadow: 0 10px 28px rgba(58, 47, 8, 0.10), 0 0 0 1px rgba(168, 133, 20, 0.45) inset;
  }
  .nsp-compass {
    display: inline-flex;
    align-items: center;
    color: var(--green);
    flex-shrink: 0;
  }
  .nsp-compass svg { width: 18px; height: 18px; }
  .nsp-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.02rem;
    color: var(--ink);
    line-height: 1;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
  }
  .nsp-input::placeholder {
    font-family: var(--serif);
    font-style: italic;
    color: rgba(42, 36, 24, 0.55);
    opacity: 1;
  }
  .nsp-input::-webkit-search-cancel-button { display: none; }
  /* When the user is typing, switch to clean sans for legibility */
  .nsp-input:not(:placeholder-shown) {
    font-style: normal;
    font-family: var(--head);
    font-weight: 500;
    font-size: 0.92rem;
  }
  .nsp-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-right: 2px;
  }
  .nsp-go {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--darker);
    color: var(--neon);
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(36, 27, 2, 0.28);
  }
  .nsp-go svg { width: 16px; height: 16px; color: var(--neon); }
  .nsp-go:hover { background: var(--ink); box-shadow: 0 6px 16px rgba(36, 27, 2, 0.34); }
  .nsp-go:active { transform: scale(0.94); }

  .navbar { padding: 10px 0; }

  /* ── Bottom tab bar ──────────────────────────────────────────── */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

  .bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(58, 47, 8, 0.10);
    padding: 6px 4px calc(8px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 22px rgba(58, 47, 8, 0.05);
  }
  .bn-item {
    position: relative;
    flex: 1 1 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
    padding: 6px 2px 4px;
    text-decoration: none;
    color: var(--muted);
    font-family: var(--head);
    font-weight: 500;
    font-size: 0.66rem;
    letter-spacing: 0.02em;
    min-width: 0;
    transition: color 0.25s ease;
  }
  .bn-item .bn-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px;
    color: inherit;
  }
  /* signed-in account tab: round avatar (Google photo or initials) in the icon slot */
  .bn-item .bn-dp {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%; overflow: hidden;
    font-family: var(--head); font-weight: 700; font-size: 0.6rem;
    color: #fff; line-height: 1; box-shadow: 0 0 0 1.5px rgba(255,255,255,0.9);
  }
  .bn-item .bn-dp img { width: 100%; height: 100%; object-fit: cover; }
  .bn-item.active .bn-dp { box-shadow: 0 0 0 1.5px var(--green); }
  .bn-item svg {
    width: 22px; height: 22px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    transition: stroke-width 0.25s ease, transform 0.25s ease;
  }
  .bn-item .bn-lbl { color: inherit; line-height: 1; }
  .bn-item:active { transform: scale(0.94); }
  .bn-item.active { color: var(--ink); }
  .bn-item.active svg { stroke-width: 2; transform: translateY(-1px); }
  .bn-item.active::before {
    content: "";
    position: absolute; top: 0;
    width: 24px; height: 2px;
    background: var(--green);
    border-radius: 0 0 3px 3px;
  }

  /* Move the chat FAB above the new bottom bar so it never hides behind tabs */
  .chat-fab { bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important; }
  /* Back-to-top also above the bar */
  .back-top { bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important; }
  /* Toast stack lifts above the bar */
  .toast-stack { bottom: calc(86px + env(safe-area-inset-bottom, 0px)) !important; }

  /* ── Trip-detail "Reserve" bar: stack it flush ABOVE the tab bar ──────────
     Previously both were fixed at bottom:0 and collided (the tab bar showed
     through behind the price). Now the Reserve bar sits directly on top of the
     ~63px tab bar; the page gets room for both, and the floating controls lift
     clear of the taller stack. Only pages that actually have a book bar are
     affected (`:has`). */
  .mobile-book-bar {
    bottom: calc(63px + env(safe-area-inset-bottom, 0px));
    padding-bottom: 13px;
    box-shadow: 0 -10px 30px rgba(46, 36, 6, 0.07);
  }
  body:has(.mobile-book-bar) {
    padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px));
  }
  body:has(.mobile-book-bar) .chat-fab,
  body:has(.mobile-book-bar) .back-top {
    bottom: calc(156px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* Very narrow phones: drop label font a hair so 5 tabs always fit */
@media (max-width: 360px) {
  .bn-item { font-size: 0.62rem; }
  .bn-item svg { width: 20px; height: 20px; }
  .nsp-bar { height: 42px; padding-left: 14px; gap: 8px; }
  .nsp-eye { padding-left: 14px; }
  .nsp-kick { font-size: 0.46rem; letter-spacing: 0.26em; }
  .nsp-input { font-size: 0.96rem; }
  .nsp-input:not(:placeholder-shown) { font-size: 0.86rem; }
  .nsp-go { width: 34px; height: 34px; }
  .nsp-go svg { width: 14px; height: 14px; }
}
