/* ==========================================================================
   JAZZEE'S 46TH BIRTHDAY ESCAPE — Digital Itinerary
   Design tokens + reusable component system.
   ========================================================================== */

:root {
  /* Neutrals — warm ivory / deep espresso plum */
  --espresso-900: #211820;
  --espresso-700: #3b2c3f;
  --mauve-500: #8a7690;
  --mauve-300: #c9bccf;
  --ivory-100: #f7f2ea;
  --ivory-50: #fbf7f2;
  --white: #fffdfb;

  /* Purple system — Deep Aubergine / Royal Plum / Muted Lavender */
  --aubergine-900: #2d1638;
  --aubergine-800: #3b1f4a;
  --aubergine-700: #492659;
  --plum-700: #46215a;
  --plum-600: #5a2a6e;
  --plum-500: #713687;
  --lavender-400: #b9a3c8;
  --lavender-300: #cdbdd8;
  --lavender-200: #e5dbeb;

  /* Champagne gold — reserved for fine lines, icons, dates, signature moments */
  --gold-700: #7d6335;
  --gold-600: #9c7d48;
  --gold-500: #c5a46d;
  --gold-300: #e2cda2;
  --gold-100: #f4ead7;

  /* Semantic */
  --bg-body: var(--ivory-100);
  --text-primary: var(--espresso-900);
  --text-muted: var(--mauve-500);
  --border-soft: rgba(45, 22, 56, 0.12);
  --border-gold: rgba(197, 164, 109, 0.5);
  --border-lavender: rgba(185, 163, 200, 0.5);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-max: 1180px;
  --gutter: 24px;
  --bottom-nav-h: 64px;

  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-soft: 0 20px 60px -30px rgba(45, 22, 56, 0.4);
  --shadow-card: 0 12px 32px -20px rgba(45, 22, 56, 0.24);

  --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) {
  :root { --gutter: 40px; }
}
@media (min-width: 1024px) {
  :root { --gutter: 56px; }
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.01em;
  color: var(--espresso-900);
}

.section-intro {
  max-width: 620px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-editorial), transform 0.8s var(--ease-editorial);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------- */
/* Navigation                                                              */
/* ---------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: max(18px, env(safe-area-inset-top)) var(--gutter) 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.4s var(--ease-editorial), box-shadow 0.4s var(--ease-editorial), padding 0.4s var(--ease-editorial);
}
.site-nav.is-scrolled {
  background: rgba(251, 247, 242, 0.9);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--border-soft);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s var(--ease-editorial);
  white-space: nowrap;
}
/* Safety net for the narrowest phones only (≤350px, e.g. iPhone SE) —
   prevents the brand line from pushing the menu button off-screen.
   No effect at normal widths, where the full text already fits. */
@media (max-width: 350px) {
  .brand-mark {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.site-nav.is-scrolled .brand-mark { color: var(--espresso-900); }

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
}
@media (min-width: 760px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 250, 0.88);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.35s var(--ease-editorial), border-color 0.35s var(--ease-editorial);
}
.site-nav.is-scrolled .nav-links a { color: var(--espresso-700); }
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--plum-500);
  border-color: var(--plum-500);
}
.site-nav:not(.is-scrolled) .nav-links a:hover,
.site-nav:not(.is-scrolled) .nav-links a.is-active {
  color: var(--gold-300);
  border-color: var(--gold-300);
}

/* Save to Phone — nav trigger buttons */
.stp-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.stp-trigger-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
}
.stp-trigger-icon svg { width: 100%; height: 100%; }

.stp-trigger--nav {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 253, 250, 0.4);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 250, 0.92);
  transition: color 0.35s var(--ease-editorial), border-color 0.35s var(--ease-editorial), background-color 0.35s var(--ease-editorial);
}
.stp-trigger--nav:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}
.site-nav.is-scrolled .stp-trigger--nav {
  border-color: var(--border-gold);
  color: var(--gold-700);
}
.site-nav.is-scrolled .stp-trigger--nav:hover {
  background: var(--gold-100);
  border-color: var(--gold-600);
}

/* Mobile top bar — compact icon-only trigger, replaces the old hamburger */
.stp-trigger--mobile-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  transition: color 0.35s var(--ease-editorial);
}
.stp-trigger--mobile-top .stp-trigger-icon { width: 19px; height: 19px; }
.site-nav.is-scrolled .stp-trigger--mobile-top { color: var(--espresso-900); }
.stp-trigger--mobile-top:hover { color: var(--gold-300); }
.site-nav.is-scrolled .stp-trigger--mobile-top:hover { color: var(--gold-700); }
@media (min-width: 760px) {
  .stp-trigger--mobile-top { display: none; }
}

/* Share This Trip — nav trigger buttons (same visual language as Save to Phone) */
.share-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.share-trigger-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
}
.share-trigger-icon svg { width: 100%; height: 100%; }

.share-trigger--nav {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 253, 250, 0.4);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 250, 0.92);
  transition: color 0.35s var(--ease-editorial), border-color 0.35s var(--ease-editorial), background-color 0.35s var(--ease-editorial);
}
.share-trigger--nav:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}
.site-nav.is-scrolled .share-trigger--nav {
  border-color: var(--border-gold);
  color: var(--gold-700);
}
.site-nav.is-scrolled .share-trigger--nav:hover {
  background: var(--gold-100);
  border-color: var(--gold-600);
}

.share-trigger--mobile-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  transition: color 0.35s var(--ease-editorial);
}
.share-trigger--mobile-top .share-trigger-icon { width: 19px; height: 19px; }
.site-nav.is-scrolled .share-trigger--mobile-top { color: var(--espresso-900); }
.share-trigger--mobile-top:hover { color: var(--gold-300); }
.site-nav.is-scrolled .share-trigger--mobile-top:hover { color: var(--gold-700); }
@media (min-width: 760px) {
  .share-trigger--mobile-top { display: none; }
}

/* Fixed bottom navigation — mobile / small tablet only */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  background: rgba(251, 247, 242, 0.96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 -10px 30px -14px rgba(45, 22, 56, 0.3);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 760px) {
  .bottom-nav { display: none; }
}

.bottom-nav-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--bottom-nav-h);
  padding: 8px 2px 7px;
  color: var(--mauve-500);
}
.bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background-color 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial);
}
.bottom-nav-icon svg { width: 18px; height: 18px; }
.bottom-nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease-editorial);
}
.bottom-nav-item.is-active .bottom-nav-icon {
  background: var(--lavender-200);
  color: var(--plum-600);
}
.bottom-nav-item.is-active .bottom-nav-label {
  color: var(--plum-700);
  font-weight: 700;
}
.bottom-nav-item:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: -2px;
  border-radius: 10px;
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 8%, rgba(197, 164, 109, 0.22) 0%, rgba(197, 164, 109, 0) 55%),
    radial-gradient(130% 100% at 85% 100%, rgba(113, 54, 135, 0.55) 0%, rgba(45, 22, 56, 0) 60%),
    linear-gradient(160deg, #2d1638 0%, #3b1f4a 38%, #492659 68%, #5a2a6e 100%);
}
/* Dedicated photo layer, separate from .hero itself, so the slow cinematic
   zoom (desktop only) can animate the image without moving the title/content
   that sits above it. */
.hero-photo-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: var(--hero-photo-position, center);
  transform-origin: center;
}
.hero[data-has-photo="true"] .hero-photo-layer {
  background-image: var(--hero-photo-url);
}
@media (min-width: 760px) {
  .hero[data-has-photo="true"] .hero-photo-layer {
    animation: hero-ken-burns 32s ease-in-out infinite alternate;
  }
}
@keyframes hero-ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo-layer { animation: none !important; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 12, 30, 0.4) 0%, rgba(24, 12, 30, 0.18) 40%, rgba(24, 12, 30, 0.58) 100%);
  pointer-events: none;
}
.hero[data-has-photo="false"] .hero-scrim { display: none; }
.hero[data-has-photo="true"] .hero-scrim {
  background:
    radial-gradient(72% 60% at 50% 47%, rgba(16, 8, 20, 0.62) 0%, rgba(16, 8, 20, 0.38) 50%, rgba(16, 8, 20, 0.05) 80%),
    linear-gradient(180deg, rgba(16, 8, 20, 0.5) 0%, rgba(16, 8, 20, 0.22) 24%, rgba(16, 8, 20, 0.3) 64%, rgba(14, 7, 18, 0.76) 100%);
}
.hero-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(197, 164, 109, 0.4);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.hero[data-has-photo="false"] .hero-frame { display: none; }

/* Original JazzeeXscapes ambient detail — a handful of soft champagne-gold
   glints that quietly twinkle. Desktop only; purely decorative, so it's
   skipped entirely on mobile rather than just muted, and switched off for
   prefers-reduced-motion. */
.hero-glints {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 760px) {
  .hero-glints { display: block; }
}
.hero-glint {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(197, 164, 109, 0.95) 0%, rgba(197, 164, 109, 0.35) 45%, rgba(197, 164, 109, 0) 75%);
  animation: hero-glint-twinkle 7s ease-in-out infinite;
}
.hero-glint--1 { top: 16%;  left: 11%;  width: 7px;  height: 7px;  animation-delay: 0s;    animation-duration: 6.5s; }
.hero-glint--2 { top: 24%;  right: 15%; width: 5px;  height: 5px;  animation-delay: 2.1s;  animation-duration: 8s; }
.hero-glint--3 { top: 66%;  left: 8%;   width: 6px;  height: 6px;  animation-delay: 3.6s;  animation-duration: 7.2s; }
.hero-glint--4 { top: 74%;  right: 11%; width: 8px;  height: 8px;  animation-delay: 1.2s;  animation-duration: 9s; }
.hero-glint--5 { top: 44%;  right: 6%;  width: 4px;  height: 4px;  animation-delay: 4.8s;  animation-duration: 6s; }

@keyframes hero-glint-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.55; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glints { display: none; }
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: hero-rise 1.4s var(--ease-editorial) both;
}
.hero[data-has-photo="true"] .hero-content {
  text-shadow:
    0 1px 2px rgba(10, 5, 13, 0.85),
    0 2px 10px rgba(10, 5, 13, 0.6),
    0 6px 26px rgba(10, 5, 13, 0.45);
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 9vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-300);
}

.hero-divider {
  width: 46px;
  height: 1px;
  background: rgba(255, 253, 250, 0.5);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 250, 0.92);
}
.hero-meta .destination {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
}
.hero-meta .dates {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender-300);
}
.hero[data-has-photo="true"] .hero-meta .dates {
  color: var(--gold-300);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 250, 0.75);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  animation: cue-pulse 2.2s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Transition wave from hero into content */
.hero-transition {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 3;
}
.hero-transition svg { width: 100%; height: 60px; display: block; }
.hero-transition path { fill: var(--bg-body); }

/* ---------------------------------------------------------------------- */
/* Trip Countdown                                                          */
/* ---------------------------------------------------------------------- */
.countdown {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background: linear-gradient(120deg, var(--aubergine-900) 0%, var(--plum-700) 100%);
  border-top: 1px solid rgba(197, 164, 109, 0.3);
  border-bottom: 1px solid rgba(197, 164, 109, 0.3);
}
.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 140% at 50% 0%, rgba(197, 164, 109, 0.16) 0%, rgba(197, 164, 109, 0) 60%);
  pointer-events: none;
}

.countdown-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.countdown-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.countdown-values {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 30px;
}
.countdown-values[hidden] { display: none; }
@media (max-width: 480px) {
  .countdown-values { grid-template-columns: repeat(2, 1fr); gap: 18px 36px; }
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 54px;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 500;
  line-height: 1;
  color: var(--ivory-50);
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender-300);
}

.countdown-complete {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(21px, 4vw, 28px);
  color: var(--gold-300);
}

/* ---------------------------------------------------------------------- */
/* Trip at a Glance                                                        */
/* ---------------------------------------------------------------------- */
.glance {
  padding: 84px 0 64px;
  background: var(--bg-body);
}
.glance-header {
  text-align: center;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.glance-header .section-intro { text-align: center; color: var(--text-muted); font-size: 15px; }

.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) {
  .glance-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

.glance-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.glance-card .icon {
  width: 26px;
  height: 26px;
  color: var(--plum-600);
}
.glance-card .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.glance-card .value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--espresso-900);
  line-height: 1.3;
}

/* ---------------------------------------------------------------------- */
/* The Stay — richer resort/accommodation feature                         */
/* ---------------------------------------------------------------------- */
.stay-feature {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: linear-gradient(165deg, var(--aubergine-900) 0%, var(--aubergine-800) 55%, var(--plum-700) 130%);
}
.stay-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 12% 0%, rgba(197, 164, 109, 0.14) 0%, rgba(197, 164, 109, 0) 60%);
  pointer-events: none;
}

.stay-feature-header {
  position: relative;
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.stay-feature-header .eyebrow { color: var(--gold-300); }
.stay-feature-header .section-heading { color: var(--white); }
.stay-feature-header .section-intro {
  text-align: center;
  color: var(--lavender-300);
  font-size: 15.5px;
}

.stay-feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}
@media (min-width: 960px) {
  .stay-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

/* Primary resort card */
.stay-card {
  position: relative;
  background: var(--ivory-50);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .stay-card { padding: 48px 44px; }
}
.stay-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.stay-card-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  color: var(--espresso-900);
  margin-top: 10px;
}
.stay-card-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.stay-card-location svg { width: 14px; height: 14px; color: var(--plum-600); flex-shrink: 0; }
a.stay-card-location:hover { color: var(--plum-600); }

.stay-card-times {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.stay-time { display: flex; flex-direction: column; gap: 3px; }
.stay-time-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stay-time-value {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--espresso-900);
}
.stay-time-divider {
  width: 1px;
  height: 30px;
  background: var(--border-soft);
}

.stay-cta-row {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.stay-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  background: var(--plum-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease-editorial);
}
.stay-cta svg { width: 14px; height: 14px; }
a.stay-cta:hover { background: var(--plum-500); }
.stay-cta.is-pending {
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold-700);
}

/* Info column — 01 / 02 / 03 */
.stay-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stay-block-number {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-300);
  margin-bottom: 6px;
}
.stay-block-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 12px;
}
.stay-block-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(229, 219, 235, 0.82);
  max-width: 50ch;
}

.stay-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stay-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(247, 242, 233, 0.92);
}
.stay-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197, 164, 109, 0.14);
  color: var(--gold-300);
  flex-shrink: 0;
}
.stay-highlight-icon svg { width: 16px; height: 16px; }

.stay-goodtoknow-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(229, 219, 235, 0.85);
}
.stay-pending {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.stay-pending p {
  font-size: 13.5px;
  color: rgba(229, 219, 235, 0.65);
  max-width: 42ch;
}
.stay-feature .stay-pending .pill-tbd {
  color: var(--gold-300);
  border-color: rgba(197, 164, 109, 0.5);
}

/* ---------------------------------------------------------------------- */
/* Itinerary                                                               */
/* ---------------------------------------------------------------------- */
.itinerary {
  padding: 40px 0 96px;
  background: var(--bg-body);
}
.itinerary-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.itinerary-header .section-intro { color: var(--text-muted); font-size: 15px; }

.day-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.day-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 90px;
}
@media (min-width: 700px) {
  .day-card { padding: 36px 40px; }
}

.day-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.day-card-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}
.day-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.day-date {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.day-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 500;
  color: var(--espresso-900);
  margin-top: 4px;
}
.day-summary {
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
}

.activity-list {
  display: flex;
  flex-direction: column;
}

/* --- Expandable activity accordion (reusable pattern) --- */
.activity-item {
  border-top: 1px solid var(--border-soft);
}
.activity-item:first-child { border-top: none; }

.activity-item.is-static { padding: 14px 2px; }
.activity-item.is-static:first-child { padding-top: 4px; }
.activity-item.is-static .activity-title { font-size: 15px; font-weight: 600; color: var(--espresso-900); }

.activity-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 2px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.activity-item:first-child .activity-header { padding-top: 4px; }
.activity-header:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.activity-header-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.activity-title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--espresso-900);
}
.activity-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.activity-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.activity-time-preview {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--plum-600);
  white-space: nowrap;
}
.activity-chevron {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--lavender-400);
  transition: transform 0.35s var(--ease-editorial), color 0.35s var(--ease-editorial);
}
.activity-chevron svg { width: 100%; height: 100%; }
.activity-item.is-open .activity-chevron {
  transform: rotate(180deg);
  color: var(--plum-600);
}

/* Height animates via the grid 0fr → 1fr trick — no JS measuring needed */
.activity-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-editorial);
}
.activity-item.is-open .activity-panel-wrap {
  grid-template-rows: 1fr;
}
.activity-panel-inner { overflow: hidden; }
.activity-panel { padding: 2px 2px 22px; }

.activity-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.activity-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.activity-field-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lavender-200);
  color: var(--plum-600);
  margin-top: 1px;
}
.activity-field-icon svg { width: 13px; height: 13px; }
.activity-field-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.activity-field-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.activity-field-value {
  font-size: 14px;
  color: var(--espresso-900);
  line-height: 1.45;
}
.activity-field-value a { color: var(--plum-600); text-decoration: underline; text-underline-offset: 2px; }
.activity-field-value .is-tbd {
  color: var(--mauve-300);
  font-style: italic;
  font-weight: 400;
}
.activity-included-list {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.activity-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  transition: background-color 0.3s var(--ease-editorial);
}
.activity-calendar-btn:hover { background: var(--gold-100); }
.activity-calendar-btn:focus-visible { outline: 2px solid var(--plum-500); outline-offset: 2px; }
.activity-calendar-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Pending state — shown whenever an activity doesn't yet have a finalized
   time. Stays visible (never hidden) so guests always see the action exists,
   it just isn't active until scheduling is confirmed. */
.activity-calendar-btn.is-pending {
  cursor: default;
  align-items: center;
  text-align: left;
  color: var(--mauve-500);
  border-color: var(--border-lavender);
}
.activity-calendar-btn.is-pending:hover { background: none; }
.activity-calendar-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.activity-calendar-btn-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-style: italic;
  color: var(--mauve-300);
}

.pill-tbd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-600);
  border: 1px solid var(--border-lavender);
  padding: 4px 10px 4px 8px;
  border-radius: var(--radius-full);
}
.pill-tbd svg { width: 11px; height: 11px; }

/* Open / TBD day placeholder */
.day-open-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0 4px;
}
.day-open-state .glyph {
  width: 34px;
  height: 34px;
  color: var(--lavender-400);
}
.day-open-state .msg {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
}

/* --- Birthday day: signature treatment --- */
.day-card.is-birthday {
  background: linear-gradient(165deg, var(--aubergine-900) 0%, var(--aubergine-800) 55%, var(--plum-700) 130%);
  border: 1px solid rgba(197, 164, 109, 0.35);
  color: var(--ivory-50);
  padding: 34px 24px 30px;
  box-shadow: 0 30px 70px -30px rgba(45, 22, 56, 0.65);
}
@media (min-width: 700px) {
  .day-card.is-birthday { padding: 48px 44px 42px; }
}
.day-card.is-birthday::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(197, 164, 109, 0.28);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.day-card.is-birthday .day-tag {
  background: rgba(197, 164, 109, 0.18);
  color: var(--gold-300);
}
.day-card.is-birthday .day-date { color: rgba(229, 219, 235, 0.7); }
.day-card.is-birthday .day-title { color: var(--white); }
.day-card.is-birthday .day-summary { color: var(--lavender-300); }
.day-card.is-birthday .activity-item { border-top-color: rgba(229, 219, 235, 0.14); }
.day-card.is-birthday .activity-title { color: var(--white); }
.day-card.is-birthday .activity-subtitle { color: rgba(229, 219, 235, 0.7); }
.day-card.is-birthday .activity-time-preview { color: var(--gold-300); }
.day-card.is-birthday .activity-chevron { color: var(--lavender-300); }
.day-card.is-birthday .activity-item.is-open .activity-chevron { color: var(--gold-300); }
.day-card.is-birthday .activity-field-icon {
  background: rgba(197, 164, 109, 0.16);
  color: var(--gold-300);
}
.day-card.is-birthday .activity-field-label { color: rgba(229, 219, 235, 0.5); }
.day-card.is-birthday .activity-field-value { color: var(--white); }
.day-card.is-birthday .activity-field-value a { color: var(--gold-300); }
.day-card.is-birthday .activity-field-value .is-tbd { color: rgba(229, 219, 235, 0.45); }
.day-card.is-birthday .activity-calendar-btn {
  border-color: rgba(197, 164, 109, 0.5);
  color: var(--gold-300);
}
.day-card.is-birthday .activity-calendar-btn:hover { background: rgba(197, 164, 109, 0.14); }
.day-card.is-birthday .activity-calendar-btn.is-pending {
  color: rgba(229, 219, 235, 0.55);
  border-color: rgba(185, 163, 200, 0.4);
}
.day-card.is-birthday .activity-calendar-btn.is-pending:hover { background: none; }
.day-card.is-birthday .activity-calendar-btn-sub { color: rgba(229, 219, 235, 0.4); }

.birthday-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 14px;
}
.birthday-badge svg { width: 14px; height: 14px; }

/* Dress code spotlight */
.dresscode-block {
  position: relative;
  margin-top: 26px;
  padding: 22px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.06);
  border: 1px solid rgba(197, 164, 109, 0.3);
}
.dresscode-block .dresscode-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dresscode-block p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(229, 219, 235, 0.82);
  max-width: 52ch;
}

/* ---------------------------------------------------------------------- */
/* Travel Toolkit                                                          */
/* ---------------------------------------------------------------------- */
.toolkit {
  padding: 8px 0 88px;
  background: var(--bg-body);
}
.toolkit-header {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toolkit-header .section-intro { color: var(--text-muted); font-size: 15px; }

.toolkit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .toolkit-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
}

.toolkit-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.toolkit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}
.toolkit-badge svg { width: 10px; height: 10px; }

.toolkit-card.is-featured {
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 760px) {
  .toolkit-card.is-featured { padding: 32px 28px; }
}

.toolkit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--lavender-200);
  color: var(--plum-600);
}
.toolkit-icon svg { width: 20px; height: 20px; }
.toolkit-card.is-featured .toolkit-icon {
  background: rgba(197, 164, 109, 0.18);
  color: var(--gold-700);
}

.toolkit-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--espresso-900);
  margin-top: 6px;
}
.toolkit-description {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.toolkit-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-600);
  transition: gap 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial);
}
.toolkit-cta svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease-editorial); }
.toolkit-cta:hover { gap: 11px; color: var(--plum-500); }
.toolkit-card.is-featured .toolkit-cta { color: var(--gold-700); }
.toolkit-card.is-featured .toolkit-cta:hover { color: var(--gold-600); }

.toolkit-cta.is-pending {
  color: var(--mauve-300);
  cursor: default;
  pointer-events: none;
}
.toolkit-pending-pill {
  margin-top: 2px;
  align-self: flex-start;
}

/* ---------------------------------------------------------------------- */
/* Birthday Passport                                                       */
/* ---------------------------------------------------------------------- */
.passport {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--lavender-200) 0%, var(--ivory-100) 100%);
  border-top: 1px solid var(--border-soft);
}
.passport-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.passport-header .section-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}
.passport-hint {
  display: inline-block;
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum-600);
}

/* ---------------------------------------------------------------------- */
/* Vertical timeline                                                       */
/* ---------------------------------------------------------------------- */
.timeline {
  position: relative;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 68px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 20px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(197, 164, 109, 0) 0%,
    rgba(197, 164, 109, 0.55) 8%,
    rgba(197, 164, 109, 0.55) 92%,
    rgba(197, 164, 109, 0) 100%
  );
}
@media (min-width: 900px) {
  .timeline::before { left: 50%; transform: translateX(-0.5px); }
}

.timeline-entry {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 52px;
}
@media (min-width: 900px) {
  .timeline-entry {
    /* DOM order is [photo, info]; plain "row" already renders
       photo-left / info-right, matching the odd-entry example. */
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding-left: 0;
  }
  .timeline-entry:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.timeline-node {
  position: absolute;
  top: 6px;
  left: 20px;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ivory-50);
  border: 2px solid var(--gold-500);
  z-index: 2;
}
@media (min-width: 900px) {
  .timeline-node {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.timeline-node.is-finale {
  background: var(--gold-500);
  border-color: var(--plum-600);
}

.timeline-photo { position: relative; }
@media (min-width: 900px) {
  .timeline-photo { flex: 1 1 0; max-width: 440px; }
}

.timeline-photo-btn {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: none;
  position: relative;
  box-shadow: var(--shadow-card);
}
.timeline-photo-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.timeline-photo-btn:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

.timeline-photo.is-diptych {
  display: flex;
  gap: 8px;
}
.timeline-photo.is-diptych .timeline-photo-btn { flex: 1 1 0; }

.timeline-tile-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(45, 22, 56, 0.5);
  padding: 4px 9px;
  border-radius: var(--radius-full);
}

.timeline-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
@media (min-width: 900px) {
  .timeline-info { flex: 1 1 0; max-width: 380px; }
}
.timeline-age {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.timeline-year {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  color: var(--plum-600);
  margin-top: 2px;
}
.timeline-destination {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--espresso-900);
  margin-top: 4px;
}

/* Finale entry (age 46 — Cancún, the current trip) */
.timeline-entry.timeline-entry--finale {
  padding-left: 52px;
}
@media (min-width: 900px) {
  .timeline-entry.timeline-entry--finale {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    margin-top: 8px;
  }
}

.timeline-finale {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--aubergine-900) 0%, var(--aubergine-800) 55%, var(--plum-700) 130%);
  border: 1px solid rgba(197, 164, 109, 0.35);
  box-shadow: 0 30px 70px -30px rgba(45, 22, 56, 0.55);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.timeline-finale::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(197, 164, 109, 0.28);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.timeline-finale-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.timeline-finale-eyebrow svg { width: 12px; height: 12px; }
.timeline-finale-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  color: var(--gold-300);
  margin-top: 6px;
}
.timeline-finale-meta {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--lavender-200);
}
.timeline-finale-note {
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(229, 219, 235, 0.78);
  max-width: 32ch;
}

.passport-empty {
  max-width: 560px;
  margin: 0 auto;
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 52px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 253, 250, 0.55);
}
.passport-empty .glyph { width: 30px; height: 30px; color: var(--gold-600); }
.passport-empty .headline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--espresso-900);
}
.passport-empty p {
  max-width: 44ch;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Lightbox (future use once photos are added) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24, 12, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-editorial), visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: 10px; }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer {
  padding: 22px var(--gutter) 26px;
  background: var(--aubergine-900);
  color: rgba(229, 219, 235, 0.65);
}
/* Clears the fixed bottom nav so the footer is never hidden beneath it */
@media (max-width: 759px) {
  .site-footer {
    padding-bottom: calc(26px + var(--bottom-nav-h) + env(safe-area-inset-bottom));
  }
}
.footer-line {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.footer-line .dot {
  color: rgba(229, 219, 235, 0.3);
}
.footer-line .brand-link {
  color: var(--gold-300);
  font-weight: 600;
}
.footer-line .brand-link[href] { cursor: pointer; }
.footer-line .brand-link:not([href]) { cursor: default; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 2px;
}
.footer-social a,
.footer-social span {
  display: inline-flex;
  color: rgba(229, 219, 235, 0.55);
  transition: color 0.3s var(--ease-editorial);
}
.footer-social a:hover { color: var(--gold-300); }
.footer-social svg { width: 15px; height: 15px; }

@media (max-width: 380px) {
  .footer-line { font-size: 11.5px; }
}

/* ---------------------------------------------------------------------- */
/* Save to Phone                                                           */
/* ---------------------------------------------------------------------- */
.stp-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(24, 12, 30, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-editorial), visibility 0.35s;
}
.stp-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 640px) {
  .stp-overlay { align-items: center; padding: 24px; }
}

.stp-sheet {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--ivory-50);
  border-radius: 22px 22px 0 0;
  padding: 14px 26px 30px;
  box-shadow: 0 -20px 60px -20px rgba(24, 12, 30, 0.5);
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-editorial);
}
.stp-overlay.is-open .stp-sheet {
  transform: translateY(0);
}
.stp-sheet:focus {
  outline: none;
}
@media (min-width: 640px) {
  .stp-sheet {
    border-radius: var(--radius-lg);
    padding: 32px 34px 34px;
    max-height: 84vh;
  }
}

.stp-handle {
  display: block;
  width: 40px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--lavender-300);
  margin: 4px auto 18px;
}
@media (min-width: 640px) {
  .stp-handle { display: none; }
}

.stp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lavender-200);
  border: none;
  color: var(--plum-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-editorial);
}
.stp-close:hover { background: var(--lavender-300); }
.stp-close svg { width: 15px; height: 15px; }

.stp-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 8px;
}
.stp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--aubergine-900);
  color: var(--gold-300);
  margin-bottom: 4px;
}
.stp-icon svg { width: 20px; height: 20px; }
.stp-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso-900);
}
.stp-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 38ch;
}

.stp-tabs {
  margin: 24px auto 4px;
  display: flex;
  width: fit-content;
  background: var(--lavender-200);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
}
.stp-tab {
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--plum-700);
  transition: background-color 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial);
}
.stp-tab.is-active {
  background: var(--plum-600);
  color: var(--white);
}

.stp-panels { margin-top: 22px; }
.stp-panel[hidden] { display: none; }

.stp-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: stp-step;
}
.stp-step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stp-step::before {
  counter-increment: stp-step;
  content: counter(stp-step);
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--plum-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stp-step-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-md);
  background: var(--lavender-200);
  color: var(--plum-700);
}
.stp-step-icon svg { width: 15px; height: 15px; }
.stp-step-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--espresso-900);
}

/* ---------------------------------------------------------------------- */
/* Share This Trip                                                         */
/* ---------------------------------------------------------------------- */
.share-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(24, 12, 30, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-editorial), visibility 0.35s;
}
.share-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 640px) {
  .share-overlay { align-items: center; padding: 24px; }
}

.share-sheet {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--ivory-50);
  border-radius: 22px 22px 0 0;
  padding: 14px 26px 30px;
  box-shadow: 0 -20px 60px -20px rgba(24, 12, 30, 0.5);
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-editorial);
}
.share-overlay.is-open .share-sheet {
  transform: translateY(0);
}
.share-sheet:focus { outline: none; }
@media (min-width: 640px) {
  .share-sheet {
    border-radius: var(--radius-lg);
    padding: 32px 34px 34px;
    max-height: 84vh;
  }
}

.share-handle {
  display: block;
  width: 40px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--lavender-300);
  margin: 4px auto 18px;
}
@media (min-width: 640px) {
  .share-handle { display: none; }
}

.share-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lavender-200);
  border: none;
  color: var(--plum-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-editorial);
}
.share-close:hover { background: var(--lavender-300); }
.share-close svg { width: 15px; height: 15px; }

.share-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 8px;
}
.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--aubergine-900);
  color: var(--gold-300);
  margin-bottom: 4px;
}
.share-icon svg { width: 20px; height: 20px; }
.share-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso-900);
}
.share-intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 34ch;
}

.share-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--plum-600);
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease-editorial);
}
.share-copy-btn:hover { background: var(--plum-500); }
.share-copy-btn:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.share-copy-icon { display: inline-flex; width: 16px; height: 16px; }
.share-copy-icon svg { width: 100%; height: 100%; }

.share-status {
  margin-top: 14px;
  min-height: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--plum-600);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease-editorial), transform 0.3s var(--ease-editorial);
}
.share-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}
