/* ==========================================================================
   NIKKI'S NOLARETTE — Digital Itinerary
   Design tokens + reusable component system.
   Luxe New Orleans: rich purple (dominant) + energetic yellow accent +
   metallic gold (premium detail) + near-black neutral. Brown appears only
   within the Friday dinner "Brown Girl Magic" dress-code treatment — never
   in the site's overall palette.
   ========================================================================== */

:root {
  /* Neutrals — warm ivory / near-black grounding (not brown) */
  --ink-900: #18101c;
  --ink-700: #2e2035;
  --mauve-500: #8a7a91;
  --mauve-300: #cabdd0;
  --ivory-100: #f8f3ec;
  --ivory-50: #fdfbf8;
  --white: #fffdfb;

  /* Purple system — dominant identity color */
  --purple-900: #29102f;
  --purple-800: #3d144a;
  --purple-700: #4a1e5c;
  --purple-600: #5c2a70;
  --purple-500: #7a3a8c;
  --lilac-400: #b79cc4;
  --lilac-300: #cdb6d8;
  --lilac-200: #e7dbee;

  /* Metallic gold — premium borders, icons, highlights, signature moments */
  --gold-700: #8a6a35;
  --gold-600: #a9843f;
  --gold-500: #d4af64;
  --gold-300: #e9cd93;
  --gold-100: #f7ecd4;

  /* Energetic yellow accent — departure badges, CTAs, high-visibility */
  --yellow-700: #a3760a;
  --yellow-600: #d9a412;
  --yellow-500: #f4c430;
  --yellow-300: #fadd76;

  /* Brown Girl Magic — used ONLY within the Friday dinner dress-code card,
     never elsewhere in the site */
  --brown-900: #2c1a11;
  --brown-700: #5b3620;
  --brown-500: #a86a3c;
  --brown-300: #d9b48c;

  /* Semantic */
  --bg-body: var(--ivory-100);
  --text-primary: var(--ink-900);
  --text-muted: var(--mauve-500);
  --border-soft: rgba(41, 16, 47, 0.12);
  --border-gold: rgba(212, 175, 100, 0.5);
  --border-lilac: rgba(183, 156, 196, 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(41, 16, 47, 0.45);
  --shadow-card: 0 12px 32px -20px rgba(41, 16, 47, 0.26);

  --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;
}

/* iOS Home Screen / standalone launches use a different containing-block
   rule for `position: fixed`: an `overflow` value on <body> (even just
   overflow-x) makes <body> the containing block instead of the viewport,
   so fixed headers/nav scroll away with content. Regular Safari tabs are
   unaffected. Move the overflow containment to <html> only in that mode
   so normal browser behavior is untouched. */
@media (display-mode: standalone) {
  html { overflow-x: hidden; }
  body { overflow-x: visible; }
}
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(--ink-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);
}

/* Visually-hidden but screen-reader-accessible text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------- */
/* 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(253, 251, 248, 0.92);
  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;
}
@media (max-width: 350px) {
  .brand-mark { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
}
.site-nav.is-scrolled .brand-mark { color: var(--ink-900); }

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
}
@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(--ink-700); }
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--purple-500);
  border-color: var(--purple-500);
}
.site-nav:not(.is-scrolled) .nav-links a:hover,
.site-nav:not(.is-scrolled) .nav-links a.is-active {
  color: var(--yellow-500);
  border-color: var(--yellow-500);
}

/* 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:focus-visible,
.share-trigger:focus-visible {
  outline: 2px solid var(--yellow-500);
  outline-offset: 3px;
  border-radius: var(--radius-full);
}
.site-nav.is-scrolled .stp-trigger:focus-visible,
.site-nav.is-scrolled .share-trigger:focus-visible {
  outline-color: var(--gold-600);
}

.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(--yellow-500); color: var(--yellow-500); }
.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); }

.stp-trigger--mobile-top {
  position: relative;
  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(--ink-900); }
.stp-trigger--mobile-top:hover { color: var(--yellow-500); }
.site-nav.is-scrolled .stp-trigger--mobile-top:hover { color: var(--gold-700); }
@media (min-width: 760px) {
  .stp-trigger--mobile-top { display: none; }
}

.stp-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: -6px;
  z-index: 5;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  width: max-content;
  max-width: 172px;
  padding: 9px 13px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  border: 1px solid rgba(212, 175, 100, 0.45);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ivory-100);
  text-align: left;
  white-space: normal;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-editorial), transform 0.45s var(--ease-editorial);
}
.stp-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: var(--purple-900);
  border-left: 1px solid rgba(212, 175, 100, 0.45);
  border-top: 1px solid rgba(212, 175, 100, 0.45);
  transform: rotate(45deg);
}
.stp-tooltip-arrow { color: var(--yellow-500); flex: none; }
.stp-tooltip.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .stp-tooltip { transition: opacity 0.3s ease; transform: none; }
}

/* Share This Trip — nav trigger buttons (same visual language) */
.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(--yellow-500); color: var(--yellow-500); }
.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 {
  position: relative;
  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(--ink-900); }
.share-trigger--mobile-top:hover { color: var(--yellow-500); }
.site-nav.is-scrolled .share-trigger--mobile-top:hover { color: var(--gold-700); }
@media (min-width: 760px) {
  .share-trigger--mobile-top { display: none; }
}

/* One-time discovery tooltip for the mobile icon-only Share trigger —
   same visual language and behavior as .stp-tooltip, staggered to appear
   after the Save tooltip finishes (see share-trip.js) so the two never
   overlap on a narrow phone screen. */
.share-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: -6px;
  z-index: 5;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  width: max-content;
  max-width: 172px;
  padding: 9px 13px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  border: 1px solid rgba(212, 175, 100, 0.45);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ivory-100);
  text-align: left;
  white-space: normal;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-editorial), transform 0.45s var(--ease-editorial);
}
.share-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: var(--purple-900);
  border-left: 1px solid rgba(212, 175, 100, 0.45);
  border-top: 1px solid rgba(212, 175, 100, 0.45);
  transform: rotate(45deg);
}
.share-tooltip-arrow { color: var(--yellow-500); flex: none; }
.share-tooltip.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .share-tooltip { transition: opacity 0.3s ease; transform: 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(253, 251, 248, 0.97);
  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(41, 16, 47, 0.32);
  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(--lilac-200); color: var(--purple-600); }
.bottom-nav-item.is-active .bottom-nav-label { color: var(--purple-700); font-weight: 700; }
.bottom-nav-item:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: -2px; border-radius: 10px; }

/* ---------------------------------------------------------------------- */
/* Splash — JazzeeXscapes Itinerary Splash                                */
/* ---------------------------------------------------------------------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory-100);
  overflow: hidden;
  padding:
    max(32px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(32px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));
  background:
    radial-gradient(120% 90% at 15% 8%, rgba(244, 196, 48, 0.16) 0%, rgba(244, 196, 48, 0) 55%),
    radial-gradient(130% 100% at 85% 100%, rgba(122, 58, 140, 0.55) 0%, rgba(41, 16, 47, 0) 60%),
    linear-gradient(160deg, #29102f 0%, #3d144a 38%, #4a1e5c 68%, #5c2a70 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash[hidden] { display: none; }

.splash-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;
}

.splash-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 460px;
}

.splash-brand {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 26px;
  background: linear-gradient(100deg,
    var(--gold-300) 0%, var(--gold-300) 42%,
    #fff7e6 50%,
    var(--gold-300) 58%, var(--gold-300) 100%);
  background-size: 280% 100%;
  background-position: 180% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: splash-brand-sweep 1.6s ease-out 0.5s 1 forwards;
}
@keyframes splash-brand-sweep { to { background-position: -80% 0; } }

.splash-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 6.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 15ch;
  text-wrap: balance;
  margin: 0 0 20px;
  color: var(--ivory-100);
}

.splash-signature { position: relative; width: min(260px, 62vw); height: 32px; margin-bottom: 22px; }
.splash-path-svg { width: 100%; height: 100%; overflow: visible; }
.splash-path-line {
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0.6;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: splash-path-draw 1.3s ease-out 0.15s 1 forwards;
}
@keyframes splash-path-draw { to { stroke-dashoffset: 0; } }
.splash-path-dot {
  position: absolute;
  top: 75%;
  left: 0;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7e6 0%, var(--gold-300) 55%, rgba(233, 205, 147, 0) 80%);
  box-shadow: 0 0 8px 2px rgba(233, 205, 147, 0.55);
  opacity: 0;
  animation: splash-dot-travel 1.5s ease-in-out 0.25s 1 forwards;
}
@keyframes splash-dot-travel {
  0%   { left: 2%;  top: 82%; opacity: 0; }
  12%  { opacity: 1; }
  50%  { left: 50%; top: 8%; }
  88%  { opacity: 1; }
  100% { left: 97%; top: 82%; opacity: 0; }
}

.splash-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 30px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255, 253, 250, 0.92);
}
.splash-destination { font-family: var(--font-display); font-size: 19px; font-style: italic; }
.splash-dates { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lilac-300); }

.splash-intro {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
  opacity: 0;
  animation: splash-fade-in 0.8s ease-out 0.95s 1 forwards;
}
@keyframes splash-fade-in { to { opacity: 0.85; } }

.splash-skip {
  position: absolute;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(233, 205, 147, 0.35);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, border-color 0.2s ease, background 0.2s ease;
  animation: splash-fade-in 0.6s ease-out 0.4s 1 forwards;
}
.splash-skip:hover, .splash-skip:focus-visible { border-color: var(--gold-300); background: rgba(233, 205, 147, 0.08); }
.splash-skip:focus-visible { outline: 2px solid var(--gold-300); outline-offset: 2px; }
.splash-skip-arrow { display: inline-block; transition: transform 0.2s ease; }
.splash-skip:hover .splash-skip-arrow, .splash-skip:focus-visible .splash-skip-arrow { transform: translateX(3px); }

@media (min-width: 760px) {
  .splash-signature { width: min(320px, 38vw); height: 40px; }
  .splash-title { margin-bottom: 24px; }
  .splash-skip { font-size: 12px; padding: 10px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .splash { transition: opacity 0.3s ease, visibility 0.3s ease; }
  .splash-brand { animation: none !important; background-position: -80% 0; }
  .splash-path-line { animation: none !important; stroke-dashoffset: 0; }
  .splash-path-dot { display: none; }
  .splash-intro, .splash-skip { animation: none !important; opacity: 1; }
  .splash-skip { opacity: 0.85; }
}

/* ---------------------------------------------------------------------- */
/* 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(244, 196, 48, 0.18) 0%, rgba(244, 196, 48, 0) 55%),
    radial-gradient(130% 100% at 85% 100%, rgba(122, 58, 140, 0.55) 0%, rgba(41, 16, 47, 0) 60%),
    linear-gradient(160deg, #29102f 0%, #3d144a 38%, #4a1e5c 68%, #5c2a70 100%);
}
.hero-photo-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* Nikki-hero2.JPG is a tall full-body portrait (1240x2208, face/flower
     crown roughly 380-750px down). With background-size:cover, 0% shows
     the very TOP of the photo and 100% shows the very BOTTOM — so a
     short/wide container (desktop) needs a LOW-ish percentage to keep her
     face in the visible slice, while a tall/narrow container (portrait
     tablet) has much less scrollable "excess" and needs a HIGHER
     percentage to reach the same physical point in the image. Values
     below were derived from that math (not guessed) and confirmed by
     screenshot at each tier, including a 1920x1080-class 21.5" display —
     do not "simplify" back to a single value or a flat top-to-bottom ramp. */
  background-position: 50% 20%;
  transform-origin: center;
}
/* Portrait tablets (e.g. iPad ~768-834px wide) are much taller relative to
   their width than desktop, so the same physical framing needs a notably
   higher percentage here than at the desktop tier below. */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-photo-layer { background-position: 50% 62%; }
}
/* Desktop / laptop, including smaller displays like a 21.5" iMac
   (~1920x1080) — short/wide containers, so the focal point stays low. */
@media (min-width: 1024px) {
  .hero-photo-layer { background-position: 50% 25%; }
}
.hero[data-has-photo="true"] .hero-photo-layer {
  background-image: var(--hero-photo-url);
  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(20, 8, 24, 0.4) 0%, rgba(20, 8, 24, 0.18) 40%, rgba(20, 8, 24, 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% 40%, rgba(14, 6, 18, 0.6) 0%, rgba(14, 6, 18, 0.36) 50%, rgba(14, 6, 18, 0.06) 80%),
    linear-gradient(180deg, rgba(14, 6, 18, 0.5) 0%, rgba(14, 6, 18, 0.2) 22%, rgba(14, 6, 18, 0.32) 62%, rgba(12, 5, 16, 0.8) 100%);
}
.hero-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(212, 175, 100, 0.4);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.hero[data-has-photo="false"] .hero-frame { display: none; }

.hero-glints { display: block; position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-glint {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.95) 0%, rgba(244, 196, 48, 0.35) 45%, rgba(244, 196, 48, 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; }
@media (max-width: 759px) {
  .hero-glint--4, .hero-glint--5 { display: none; }
  .hero-glint--1 { width: 5px; height: 5px; }
  .hero-glint--2 { width: 4px; height: 4px; }
  .hero-glint--3 { width: 4px; height: 4px; }
}
@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(8, 4, 10, 0.85),
    0 2px 10px rgba(8, 4, 10, 0.6),
    0 6px 26px rgba(8, 4, 10, 0.45);
}
@keyframes hero-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

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

.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;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-300);
}
.hero[data-has-photo="true"] .hero-meta .dates { color: var(--yellow-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; } }

.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(--purple-900) 0%, var(--purple-700) 100%);
  border-top: 1px solid rgba(212, 175, 100, 0.3);
  border-bottom: 1px solid rgba(212, 175, 100, 0.3);
}
.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 140% at 50% 0%, rgba(244, 196, 48, 0.14) 0%, rgba(244, 196, 48, 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(--yellow-500);
}

.countdown-values {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 30px;
  justify-content: center;
}
.countdown-values[hidden] { display: none; }

.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;
  white-space: nowrap;
}
.countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac-300);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .countdown-values { gap: clamp(6px, 3vw, 20px); }
  .countdown-unit { min-width: 0; gap: 3px; }
  .countdown-number { font-size: clamp(20px, 7vw, 28px); }
  .countdown-label { font-size: clamp(8px, 2.3vw, 10px); letter-spacing: 0.1em; }
}
@media (max-width: 360px) {
  .countdown-values { gap: clamp(5px, 2.4vw, 14px); }
  .countdown-number { font-size: clamp(18px, 6.6vw, 24px); }
  .countdown-label { font-size: clamp(7px, 2vw, 9px); letter-spacing: 0.06em; }
}

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

/* ---------------------------------------------------------------------- */
/* The Nolarette 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(--purple-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(--ink-900); line-height: 1.3; }

/* ---------------------------------------------------------------------- */
/* The Flights — adapted from the "Journey" component in the JazzeeXscapes */
/* sample itinerary (Jania's 46th Birthday Escape): same card design and   */
/* animated route-line presentation (a slow gold point of light traveling  */
/* between airport codes), restyled to Nikki's Nolarette's purple/yellow/  */
/* gold identity. A static, point-in-time display of confirmed flights —  */
/* not live flight tracking. Not an accordion — every flight is always     */
/* fully visible.                                                          */
/* ---------------------------------------------------------------------- */
.journey { padding: 8px 0 88px; background: var(--bg-body); }
.journey-header { text-align: center; max-width: 560px; margin: 0 auto 44px; display: flex; flex-direction: column; align-items: center; gap: 12px; }

.journey-groups { display: flex; flex-direction: column; gap: 32px; }

.journey-group {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--purple-900) 0%, var(--purple-800) 55%, var(--purple-600) 130%);
  border: 1px solid rgba(212, 175, 100, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 22px 30px;
  box-shadow: 0 30px 70px -30px rgba(41, 16, 47, 0.65);
}
@media (min-width: 700px) { .journey-group { padding: 48px 48px 44px; } }
.journey-group::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 100, 0.22);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

.journey-group-header { position: relative; max-width: 60ch; margin-bottom: 30px; }
.journey-host-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: linear-gradient(120deg, var(--yellow-500) 0%, var(--gold-500) 100%);
  border: none;
  padding: 7px 16px 7px 13px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.4);
}
.journey-host-badge svg { width: 14px; height: 14px; }

.journey-legs { position: relative; display: flex; flex-direction: column; gap: 26px; }
@media (min-width: 760px) {
  .journey-legs { flex-direction: row; gap: 28px; }
  .journey-legs .journey-leg { flex: 1; min-width: 0; }
}

.journey-leg { position: relative; padding-top: 22px; border-top: 1px solid rgba(212, 175, 100, 0.25); }
.journey-legs .journey-leg:first-child { padding-top: 0; border-top: none; }
@media (min-width: 760px) {
  .journey-legs .journey-leg { padding-top: 0; border-top: none; }
  .journey-legs .journey-leg:not(:first-child) {
    padding-left: 28px;
    border-left: 1px solid rgba(212, 175, 100, 0.25);
  }
}

/* A connecting itinerary (e.g. one return journey via a layover) is one
   continuous trip, not two parallel options — its legs always stack in
   order, on every screen size, with a connection divider between them
   instead of the side-by-side treatment above. */
.journey-legs.journey-legs--connecting { flex-direction: column; gap: 0; }
@media (min-width: 760px) {
  .journey-legs.journey-legs--connecting { flex-direction: column; gap: 0; }
  .journey-legs.journey-legs--connecting .journey-leg { flex: none; min-width: 0; }
  .journey-legs.journey-legs--connecting .journey-leg:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
}
.journey-legs--connecting .journey-leg:not(:first-child) { padding-top: 0; border-top: none; }

.journey-connection { display: flex; align-items: center; gap: 10px; margin: 24px 0; }
.journey-connection-line { flex: 1; max-width: 28px; height: 1px; background: rgba(212, 175, 100, 0.45); }
@media (min-width: 480px) {
  .journey-connection { gap: 12px; }
  .journey-connection-line { max-width: 110px; }
}
.journey-connection-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(244, 196, 48, 0.14);
  border: 1px solid rgba(212, 175, 100, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  text-align: center;
  line-height: 1.4;
  white-space: normal;
}
@media (min-width: 480px) {
  .journey-connection-badge { padding: 7px 16px; font-size: 11px; letter-spacing: 0.1em; white-space: nowrap; }
}
.journey-connection-badge svg { width: 13px; height: 13px; flex: none; }

.journey-leg-top { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.journey-leg-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); }
.journey-leg-route-label { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--white); }
.journey-leg-arrow { color: var(--gold-300); font-style: normal; }
.journey-leg-date { font-size: 12.5px; letter-spacing: 0.04em; color: rgba(231, 219, 238, 0.65); }

/* Route visual — airport codes with a slow, restrained point of light
   traveling between them. Purely decorative (aria-hidden); the times/codes
   themselves carry the real information for assistive tech. */
.journey-route { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.journey-route-point { display: flex; flex-direction: column; gap: 3px; flex: none; }
.journey-route-point--arrival { text-align: right; align-items: flex-end; }
.journey-airport-code {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
}
.journey-route-time { font-size: 12px; font-variant-numeric: tabular-nums; color: rgba(231, 219, 238, 0.75); white-space: nowrap; }

.journey-route-line { position: relative; flex: 1; height: 16px; min-width: 32px; }
.journey-route-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 100, 0.15) 0%, rgba(212, 175, 100, 0.65) 50%, rgba(212, 175, 100, 0.15) 100%);
  transform: translateY(-50%);
}
.journey-route-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7e6 0%, var(--yellow-500) 55%, rgba(244, 196, 48, 0) 80%);
  box-shadow: 0 0 7px 1px rgba(244, 196, 48, 0.6);
  animation: journey-dot-travel 5s ease-in-out infinite;
}
@keyframes journey-dot-travel {
  0%   { left: 0%;   opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .journey-route-dot { animation: none; left: 50%; opacity: 0.85; }
}

.journey-leg-details { display: flex; flex-wrap: wrap; gap: 16px 26px; }
.journey-detail { display: flex; flex-direction: column; gap: 3px; }
.journey-detail-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(231, 219, 238, 0.5); }
.journey-detail-value { font-size: 13.5px; color: var(--white); }

/* ---------------------------------------------------------------------- */
/* Home Base — hotel / accommodation feature                              */
/* ---------------------------------------------------------------------- */
.stay-feature {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: linear-gradient(165deg, var(--purple-900) 0%, var(--purple-800) 55%, var(--purple-600) 130%);
}
.stay-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 12% 0%, rgba(244, 196, 48, 0.12) 0%, rgba(244, 196, 48, 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(--yellow-500); }
.stay-feature-header .section-heading { color: var(--white); }
.stay-feature-header .section-intro { text-align: center; color: var(--lilac-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; }
}

.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(--ink-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(--purple-600); flex-shrink: 0; }
a.stay-card-location:hover { color: var(--purple-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(--ink-900); }
.stay-time-value .is-tbd { color: var(--mauve-300); font-style: italic; font-weight: 400; font-size: 16px; }
.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(--purple-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(--purple-500); }
.stay-cta.is-pending { background: none; border: 1px solid var(--border-gold); color: var(--gold-700); }

.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(231, 219, 238, 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(248, 243, 236, 0.92); }
.stay-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.14);
  color: var(--gold-300);
  flex-shrink: 0;
}
.stay-highlight-icon svg { width: 16px; height: 16px; }

/* ---------------------------------------------------------------------- */
/* Destination Weather — reusable, OPTIONAL "TripWeather" module, adapted  */
/* from the JazzeeXscapes sample itinerary (Jania's 46th Birthday Escape). */
/* Live data via Open-Meteo (no key required); each day card shows an     */
/* honest "coming soon" state until real numbers exist. See               */
/* Assets/js/trip-weather.js for the state machine and fetch logic.       */
/* ---------------------------------------------------------------------- */
.weather { padding: 8px 0 88px; background: var(--bg-body); }
.weather-panel { max-width: 900px; margin: 0 auto; }

.weather-header { text-align: center; max-width: 620px; margin: 0 auto 32px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.weather-message { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); max-width: 46ch; margin-top: 4px; }
.weather-submessage { font-size: 13px; line-height: 1.6; color: var(--mauve-500); max-width: 46ch; }
.weather-loading-text { font-size: 13.5px; color: var(--text-muted); font-style: italic; margin-top: 8px; }

.weather-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .weather-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.weather-day-card {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  box-shadow: var(--shadow-card);
}
.weather-day-weekday { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink-900); }
.weather-day-date { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }

.weather-day-body { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 14px; border-top: 1px solid var(--border-soft); width: 100%; }
.weather-day-body--pending { padding-top: 18px; gap: 8px; }
.weather-day-pending-icon { width: 30px; height: 30px; color: var(--gold-500); opacity: 0.75; }
.weather-day-pending-icon svg { width: 100%; height: 100%; }
.weather-day-pending-label { font-size: 12.5px; font-style: italic; color: var(--mauve-500); }

.weather-day-icon { width: 34px; height: 34px; color: var(--purple-600); }
.weather-day-icon svg { width: 100%; height: 100%; }
.weather-day-temps { font-family: var(--font-display); font-size: 23px; color: var(--ink-900); display: flex; gap: 6px; align-items: baseline; }
.weather-day-low { color: var(--text-muted); font-size: 15px; }
.weather-day-condition { font-size: 12.5px; color: var(--text-muted); }
.weather-day-rain { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--purple-600); margin-top: 2px; }
.weather-day-rain svg { width: 12px; height: 12px; }
.weather-day-note { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border-soft); font-size: 12px; font-style: italic; color: var(--text-muted); }

/* "Today" mode — a compact "right now" panel above the three day cards */
.weather-now { display: flex; align-items: center; gap: 16px; margin-top: 22px; justify-content: center; }
.weather-now-icon { width: 46px; height: 46px; color: var(--purple-600); flex: none; }
.weather-now-icon svg { width: 100%; height: 100%; }
.weather-now-info { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.weather-now-temp { font-family: var(--font-display); font-size: clamp(32px, 5vw, 40px); line-height: 1; color: var(--ink-900); }
.weather-now-condition { font-size: 13.5px; color: var(--text-muted); }
.weather-now-range { font-size: 12px; color: var(--text-muted); }

.weather-connect { max-width: 460px; margin: 28px auto 0; padding-top: 22px; border-top: 1px solid var(--border-soft); text-align: center; }
.weather-connect-label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 8px; }
.weather-connect-style-name { font-family: var(--font-display); font-size: 18px; color: var(--ink-900); display: block; margin-bottom: 8px; }
.weather-plans-list { display: flex; flex-direction: column; gap: 6px; margin: 0 auto 8px; max-width: 340px; }
.weather-plans-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 13.5px; color: var(--ink-900); }
.weather-plans-time { font-variant-numeric: tabular-nums; color: var(--text-muted); font-size: 12.5px; white-space: nowrap; }
.weather-connect-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-editorial);
}
.weather-connect-link svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease-editorial); }
.weather-connect-link:hover, .weather-connect-link:focus-visible { border-bottom-color: currentColor; }
.weather-connect-link:hover svg, .weather-connect-link:focus-visible svg { transform: translateX(3px); }
.weather-connect-link:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 3px; }

.weather-post-message { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--text-muted); text-align: center; }

/* ---------------------------------------------------------------------- */
/* The Weekend Lineup — DAY-LEVEL accordion. Each day (Friday/Saturday)   */
/* is the single expand/collapse unit; once a day is open, every activity */
/* inside — including departure badges, notices, and dress code — is     */
/* always fully visible, never nested behind its own toggle. This keeps  */
/* mobile use during the trip fast: open the day you need, see           */
/* everything at a glance.                                                */
/* ---------------------------------------------------------------------- */
.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: 24px; }

/* Every day card uses the signature dark purple/gold treatment — this is
   the premium centerpiece of the itinerary. */
.day-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--purple-900) 0%, var(--purple-800) 55%, var(--purple-600) 130%);
  border: 1px solid rgba(212, 175, 100, 0.35);
  border-radius: var(--radius-lg);
  color: var(--ivory-50);
  box-shadow: 0 30px 70px -30px rgba(41, 16, 47, 0.65);
  scroll-margin-top: 90px;
  transition: box-shadow 0.4s var(--ease-editorial);
}
.day-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 100, 0.24);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
  z-index: 0;
}
.day-card.is-open { box-shadow: 0 36px 80px -28px rgba(41, 16, 47, 0.72); }

/* --- Day-level accordion header: the tappable, always-visible summary --- */
.day-accordion-header {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.3s var(--ease-editorial);
}
@media (min-width: 700px) { .day-accordion-header { padding: 38px 42px; } }
.day-accordion-header:hover { background: rgba(255, 255, 255, 0.03); }
.day-accordion-header:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: -3px; border-radius: var(--radius-lg); }
.day-card.is-open .day-accordion-header { box-shadow: inset 0 -1px 0 rgba(212, 175, 100, 0.25); }

.day-header-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.day-weekday {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 5.4vw, 38px);
  line-height: 1.05;
  color: var(--white);
}
.day-date { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(231, 219, 238, 0.65); }
.day-summary { margin-top: 6px; font-size: 13.5px; color: var(--lilac-300); font-style: italic; max-width: 46ch; }

.day-highlight-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(--ink-900);
  background: linear-gradient(120deg, var(--yellow-500) 0%, var(--gold-500) 100%);
  padding: 6px 14px 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  align-self: flex-start;
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.4);
}
.day-highlight-badge svg { width: 13px; height: 13px; }

/* The + / close control — obvious without being oversized. Rotates 45deg
   on open so the "+" reads as a "close" cue. */
.day-toggle {
  position: relative;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--yellow-500) 0%, var(--gold-500) 100%);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease-editorial), box-shadow 0.3s var(--ease-editorial);
}
@media (min-width: 700px) { .day-toggle { width: 46px; height: 46px; } }
.day-toggle-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink-900);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.day-toggle-bar--h { width: 16px; height: 2.5px; }
.day-toggle-bar--v { width: 2.5px; height: 16px; }
.day-card.is-open .day-toggle { transform: rotate(45deg); box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.55); }
.day-accordion-header:hover .day-toggle { box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.6); }

/* Height animates via the grid 0fr -> 1fr trick — no JS measuring needed */
.day-panel-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease-editorial); }
.day-card.is-open .day-panel-wrap { grid-template-rows: 1fr; }
.day-panel-inner { overflow: hidden; }
.day-panel { position: relative; z-index: 1; padding: 0 22px 30px; }
@media (min-width: 700px) { .day-panel { padding: 0 42px 40px; } }

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

/* --- Activity cards: always fully visible once the day is open --- */
.activity-item { padding: 20px 2px; border-top: 1px solid rgba(231, 219, 238, 0.14); }
.activity-item:first-child { border-top: none; padding-top: 4px; }
.activity-item.is-static { padding: 16px 2px 20px; }
.activity-item.is-static:first-child { padding-top: 4px; }
.activity-item.is-static .activity-title { font-size: 15.5px; font-weight: 600; color: var(--white); }

.activity-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.activity-header-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.activity-title { font-size: 15.5px; font-weight: 600; color: var(--white); }
.activity-subtitle { font-size: 13px; color: rgba(231, 219, 238, 0.72); line-height: 1.45; }

.activity-header-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; padding-top: 2px; }
.activity-time-preview { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--gold-300); white-space: nowrap; }

/* --- Departure badge: the one thing the crew cannot miss --- */
.activity-departure {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0 2px 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, var(--yellow-500) 0%, var(--gold-500) 100%);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.activity-departure-icon {
  display: inline-flex;
  align-self: center;
  width: 18px;
  height: 18px;
  color: var(--ink-900);
  flex: none;
}
.activity-departure-icon svg { width: 100%; height: 100%; }
.activity-departure-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24, 16, 28, 0.72);
}
.activity-departure-time {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1;
}
.activity-departure-note {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink-900);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  margin-left: auto;
}

/* --- Instruction-notice chips (BYOB, No Glass Bottles) --- */
.activity-notices { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 2px 14px; }
.activity-notice-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(244, 196, 48, 0.14);
  border: 1px solid rgba(212, 175, 100, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.activity-notice-chip svg { width: 13px; height: 13px; flex: none; }

/* --- CTA button (Order Your Matching PJs) --- */
.activity-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 0 2px 16px; }
.activity-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(120deg, var(--yellow-500) 0%, var(--gold-500) 100%);
  color: var(--ink-900);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--ease-editorial), box-shadow 0.25s var(--ease-editorial);
}
.activity-cta-btn svg { width: 15px; height: 15px; }
.activity-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.55); }
.activity-cta-btn:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.activity-cta-note { font-size: 12px; font-style: italic; color: rgba(231, 219, 238, 0.65); }

.activity-fields { display: flex; flex-direction: column; gap: 14px; margin: 10px 0 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: rgba(212, 175, 100, 0.16);
  color: var(--gold-300);
  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: rgba(231, 219, 238, 0.5); }
.activity-field-value { font-size: 14px; color: var(--white); line-height: 1.45; }
.activity-field-value a { color: var(--gold-300); text-decoration: underline; text-underline-offset: 2px; }
.activity-field-note { margin-top: 4px; font-size: 13px; line-height: 1.55; color: rgba(231, 219, 238, 0.78); max-width: 48ch; }
.activity-included-list { list-style: disc; padding-left: 18px; display: flex; flex-direction: column; gap: 2px; }

.activity-field-swatches { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.activity-field-swatch {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* Brown Girl Magic dress-code treatment — warm brown/copper accent, used
   only on the Friday dinner activity, never the overall site palette. */
.activity-field--brown .activity-field-icon { background: rgba(168, 106, 60, 0.28); color: var(--brown-300); }
.activity-field--brown .activity-field-label { color: rgba(217, 180, 140, 0.8); }
.activity-field--brown .activity-field-value { color: var(--brown-300); }

.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 rgba(212, 175, 100, 0.5);
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  transition: background-color 0.3s var(--ease-editorial);
}
.activity-calendar-btn:hover { background: rgba(212, 175, 100, 0.14); }
.activity-calendar-btn:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }
.activity-calendar-btn svg { width: 15px; height: 15px; flex-shrink: 0; }


.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(--purple-600);
  border: 1px solid var(--border-lilac);
  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(--lilac-300); }
.day-open-state .msg { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--lilac-300); }

/* ---------------------------------------------------------------------- */
/* Meet the Nolarettes — compact traveler roster                          */
/* ---------------------------------------------------------------------- */
.crew { padding: 8px 0 88px; background: var(--bg-body); }
.crew-header { max-width: 560px; margin: 0 auto 44px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.crew-header .section-intro { text-align: center; color: var(--text-muted); font-size: 15px; }

.crew-grid { display: flex; flex-direction: column; align-items: center; gap: 40px; }

/* Bride — featured, distinguished with a gold ring and larger avatar */
.crew-bride { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.crew-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(165deg, var(--purple-900) 0%, var(--purple-700) 100%);
  border: 1px solid rgba(212, 175, 100, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.crew-avatar--bride {
  width: 118px;
  height: 118px;
  border: none;
  box-shadow: 0 0 0 3px var(--ivory-100), 0 0 0 6px var(--gold-500), var(--shadow-soft);
}
.crew-avatar-ring { display: none; }
.crew-avatar-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.crew-avatar-placeholder { width: 40%; color: rgba(212, 175, 100, 0.55); }
.crew-avatar-placeholder svg { width: 100%; height: 100%; }

.crew-bride-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.crew-bride-pill svg { width: 10px; height: 10px; }

.crew-info { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.crew-name { font-family: var(--font-display); font-size: 20px; color: var(--ink-900); }
.crew-name--small { font-size: 12.5px; font-family: var(--font-body); font-weight: 600; color: var(--text-muted); }

.crew-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-editorial);
}
.crew-social svg { width: 16px; height: 16px; }
.crew-social:hover, .crew-social:focus-visible { color: var(--purple-600); }
.crew-social:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; border-radius: 50%; }

/* The rest of the crew — compact circular slots, several across even on a
   phone screen, deliberately not 12 large profile cards */
.crew-slots {
  width: 100%;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 12px;
  justify-items: center;
}
@media (min-width: 480px) { .crew-slots { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 700px) { .crew-slots { grid-template-columns: repeat(6, 1fr); gap: 26px 16px; } }
@media (min-width: 960px) { .crew-slots { grid-template-columns: repeat(7, 1fr); } }

.crew-card { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
/* Slightly larger than the base 68px avatar so each of the 11 crew faces
   stays easy to recognize, and biased a little above dead-center since
   these are close-up portrait/selfie photos (face usually sits in the
   upper-middle third) — scoped to .crew-card only, never .crew-bride, so
   Nikki's existing featured photo/crop is completely untouched. */
.crew-card .crew-avatar { width: 76px; height: 76px; }
.crew-card .crew-avatar-photo { background-position: center 35%; }
.crew-avatar--empty {
  background: none;
  border: 1.5px dashed var(--border-lilac);
  color: var(--lilac-400);
  transition: border-color 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial);
}
.crew-avatar-plus { font-size: 20px; font-weight: 300; line-height: 1; color: inherit; }
.crew-card:hover .crew-avatar--empty { border-color: var(--gold-500); color: var(--gold-600); }

@media (prefers-reduced-motion: reduce) {
  .crew-avatar--empty { transition: none; }
}

/* ---------------------------------------------------------------------- */
/* The Style Edit — "Dress the Part"                                      */
/* ---------------------------------------------------------------------- */
.style-edit { padding: 8px 0 88px; background: var(--bg-body); }
.style-edit-header { max-width: 620px; margin: 0 auto 48px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.style-edit-header .section-intro { text-align: center; color: var(--text-muted); font-size: 15px; }

.style-edit-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .style-edit-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1020px) { .style-edit-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.style-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 32px 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s var(--ease-editorial), transform 0.4s var(--ease-editorial);
}
@media (min-width: 700px) { .style-card { padding: 36px 28px 30px; min-height: 380px; } }

.style-card-number {
  position: absolute;
  top: -8px;
  right: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(72px, 11vw, 110px);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.5s var(--ease-editorial);
}
.style-card:hover .style-card-number, .style-card:focus-within .style-card-number { transform: translateY(-4px); }

.style-card-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}

.style-card-body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 13px; margin-top: auto; }
.style-card-meta { display: flex; flex-direction: column; gap: 2px; }
.style-card-date { font-size: 10.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.style-card-event { font-family: var(--font-display); font-style: italic; font-size: 13px; }
.style-card-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3.4vw, 29px); line-height: 1.12; }
.style-card-mood { font-size: 13.5px; line-height: 1.55; max-width: 32ch; }

.style-card-swatches { display: flex; align-items: center; gap: 9px; margin-top: 4px; }
.style-swatch {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease-editorial);
}
.style-card:hover .style-swatch:nth-child(1), .style-card:focus-within .style-swatch:nth-child(1) { transition-delay: 0s; }
.style-card:hover .style-swatch:nth-child(2), .style-card:focus-within .style-swatch:nth-child(2) { transition-delay: 0.05s; }
.style-card:hover .style-swatch:nth-child(3), .style-card:focus-within .style-swatch:nth-child(3) { transition-delay: 0.1s; }
.style-card:hover .style-swatch, .style-card:focus-within .style-swatch { transform: translateY(-3px); }

.style-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  width: fit-content;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-editorial);
}
.style-card-cta svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease-editorial); }
.style-card:hover .style-card-cta, .style-card:focus-within .style-card-cta { border-bottom-color: currentColor; }
.style-card-cta:hover svg, .style-card-cta:focus-visible svg { transform: translateX(3px); }
.style-card-cta:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 3px; }

/* Variant — Brown Girl Magic (Friday dinner): the one deliberate brown
   treatment on the whole site */
.style-card--brown {
  background: linear-gradient(155deg, var(--brown-900) 0%, #432515 55%, var(--brown-700) 135%);
  border: 1px solid rgba(217, 180, 140, 0.4);
  color: var(--white);
}
.style-card--brown .style-card-number { color: rgba(217, 180, 140, 0.2); }
.style-card--brown .style-card-date { color: var(--gold-300); }
.style-card--brown .style-card-event { color: rgba(217, 180, 140, 0.78); }
.style-card--brown .style-card-mood { color: rgba(217, 180, 140, 0.85); }
.style-card--brown .style-card-cta { color: var(--gold-300); }
.style-card--brown:hover, .style-card--brown:focus-within { box-shadow: 0 0 0 1px rgba(217, 180, 140, 0.55), var(--shadow-soft); }

/* Variant — Matching Red PJs */
.style-card--red {
  background: linear-gradient(150deg, var(--ivory-50) 0%, #fbe4e8 145%);
  border: 1px solid rgba(184, 31, 58, 0.28);
  color: var(--ink-900);
}
.style-card--red .style-card-number { color: rgba(184, 31, 58, 0.14); }
.style-card--red .style-card-date { color: #b81f3a; }
.style-card--red .style-card-event, .style-card--red .style-card-mood { color: var(--text-muted); }
.style-card--red .style-card-cta { color: #b81f3a; }
.style-card--red:hover, .style-card--red:focus-within { box-shadow: 0 0 0 1px rgba(184, 31, 58, 0.4), var(--shadow-soft); }

/* Variant — Twerk NOLA: onyx black + gold, edgy */
.style-card--onyx {
  background: linear-gradient(160deg, #171018 0%, #241a29 55%, #33223a 130%);
  border: 1px solid rgba(212, 175, 100, 0.4);
  color: var(--white);
}
.style-card--onyx .style-card-number { color: rgba(212, 175, 100, 0.16); }
.style-card--onyx .style-card-date { color: var(--gold-300); }
.style-card--onyx .style-card-event { color: rgba(231, 219, 238, 0.7); }
.style-card--onyx .style-card-mood { color: rgba(231, 219, 238, 0.82); }
.style-card--onyx .style-card-cta { color: var(--gold-300); }
.style-card--onyx:hover, .style-card--onyx:focus-within { box-shadow: 0 0 0 1px rgba(212, 175, 100, 0.6), var(--shadow-soft); }

/* Variant — signature: the site's core purple/gold, strongest treatment */
.style-card--signature {
  background: linear-gradient(165deg, var(--purple-900) 0%, var(--purple-800) 50%, var(--purple-600) 135%);
  border: 1px solid rgba(212, 175, 100, 0.5);
  color: var(--white);
  box-shadow: 0 34px 80px -30px rgba(41, 16, 47, 0.7);
}
.style-card--signature .style-card-number { color: rgba(212, 175, 100, 0.22); }
.style-card--signature .style-card-date { color: var(--gold-300); }
.style-card--signature .style-card-event { color: rgba(231, 219, 238, 0.75); }
.style-card--signature .style-card-name { color: var(--white); }
.style-card--signature .style-card-mood { color: rgba(231, 219, 238, 0.85); }
.style-card--signature .style-card-cta { color: var(--gold-300); }
.style-card--signature:hover, .style-card--signature:focus-within {
  box-shadow: 0 0 0 1px rgba(212, 175, 100, 0.8), 0 34px 80px -28px rgba(41, 16, 47, 0.75);
  transform: translateY(-4px);
}

/* Variant — neutral: ivory/gold fallback for any future look */
.style-card--neutral {
  background: linear-gradient(150deg, var(--ivory-50) 0%, var(--gold-100) 145%);
  border: 1px solid var(--border-gold);
  color: var(--ink-900);
}
.style-card--neutral .style-card-number { color: rgba(212, 175, 100, 0.28); }
.style-card--neutral .style-card-date { color: var(--gold-700); }
.style-card--neutral .style-card-event, .style-card--neutral .style-card-mood { color: var(--text-muted); }
.style-card--neutral .style-card-cta { color: var(--purple-600); }
.style-card--neutral:hover, .style-card--neutral:focus-within { box-shadow: 0 0 0 1px rgba(212, 175, 100, 0.55), var(--shadow-soft); }

/* Variant — soft: pale lilac fallback */
.style-card--soft {
  background: linear-gradient(150deg, var(--lilac-200) 0%, var(--ivory-50) 140%);
  border: 1px solid var(--border-lilac);
  color: var(--purple-700);
}
.style-card--soft .style-card-number { color: rgba(183, 156, 196, 0.4); }
.style-card--soft .style-card-date { color: var(--purple-600); }
.style-card--soft .style-card-event, .style-card--soft .style-card-mood { color: rgba(41, 16, 47, 0.6); }
.style-card--soft .style-card-cta { color: var(--purple-600); }
.style-card--soft:hover, .style-card--soft:focus-within { box-shadow: 0 0 0 1px rgba(183, 156, 196, 0.65), var(--shadow-soft); }

@media (prefers-reduced-motion: reduce) {
  .style-card, .style-card-number, .style-swatch, .style-card-cta, .style-card-cta svg { transition: none; }
  .style-card--signature:hover, .style-card--signature:focus-within { transform: none; }
  .style-card:hover .style-card-number, .style-card:focus-within .style-card-number,
  .style-card:hover .style-swatch, .style-card:focus-within .style-swatch { transform: none; }
}

/* ---------------------------------------------------------------------- */
/* The Bride Era — premium editorial photo story. NOT a chronological     */
/* timeline (no dates, dots, or connecting line) and NOT a gallery grid — */
/* an alternating, offset rhythm visually inspired by the timeline        */
/* presentation in the JazzeeXscapes sample itinerary, reduced to just    */
/* the photography plus two short lines of copy. Decorative elements are */
/* intentionally minimal (one divider, one closing line) so the five     */
/* photos stay the focus.                                                 */
/* ---------------------------------------------------------------------- */
.bride-era { padding: 12px 0 100px; background: var(--bg-body); }
.bride-era-header { text-align: center; max-width: 560px; margin: 0 auto 52px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.bride-era-subtitle { font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 3vw, 19px); color: var(--text-muted); margin-top: 2px; }

.bride-era-story { display: flex; flex-direction: column; max-width: 900px; margin: 0 auto; }

/* Each entry alternates side and varies in size to create the editorial
   zigzag — mobile keeps a gentle version of the same alternation via a
   small inset rather than dramatic overlap, which reads as broken on
   narrow screens. */
.bride-era-entry { position: relative; width: 84%; }
.bride-era-entry--left { align-self: flex-start; margin-right: auto; }
.bride-era-entry--right { align-self: flex-end; margin-left: auto; }
.bride-era-entry:not(:first-child) { margin-top: 26px; }
.bride-era-entry--lg { width: 90%; }
.bride-era-entry--md { width: 76%; }
/* The couple pair sits slightly closer together than the solo trio, so
   the two photos read as visually connected. */
.bride-era-entry--couple:not(:first-child) { margin-top: 18px; }

.bride-era-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(212, 175, 100, 0.32);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-editorial), box-shadow 0.4s var(--ease-editorial);
}
.bride-era-entry:hover .bride-era-photo,
.bride-era-entry:focus-within .bride-era-photo {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 700px) {
  .bride-era-entry { width: 54%; }
  .bride-era-entry--lg { width: 70%; }
  .bride-era-entry--md { width: 50%; }
  .bride-era-entry:not(:first-child) { margin-top: -44px; }
  .bride-era-entry--couple:not(:first-child) { margin-top: -60px; }
}

.bride-era-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 56px 0;
}
@media (min-width: 700px) { .bride-era-divider { margin: 72px 0; } }
.bride-era-divider-line { flex: 1; max-width: 110px; height: 1px; }
.bride-era-divider-line--pre { background: linear-gradient(90deg, rgba(212, 175, 100, 0) 0%, rgba(212, 175, 100, 0.55) 100%); }
.bride-era-divider-line--post { background: linear-gradient(90deg, rgba(212, 175, 100, 0.55) 0%, rgba(212, 175, 100, 0) 100%); }
.bride-era-divider-icon { display: inline-flex; color: var(--gold-500); flex: none; }
.bride-era-divider-icon svg { width: 22px; height: 22px; }
.bride-era-divider-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 3.6vw, 27px);
  color: var(--purple-600);
  white-space: nowrap;
}

.bride-era-closing {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(21px, 3.6vw, 28px);
  color: var(--ink-900);
}
@media (min-width: 700px) { .bride-era-closing { margin-top: 64px; } }

@media (prefers-reduced-motion: reduce) {
  .bride-era-photo { transition: none; }
  .bride-era-entry:hover .bride-era-photo, .bride-era-entry:focus-within .bride-era-photo { transform: none; }
}

/* ---------------------------------------------------------------------- */
/* Shared Trip Album                                                       */
/* ---------------------------------------------------------------------- */
.album { padding: 24px 0 90px; background: var(--bg-body); }
.album-card {
  position: relative;
  overflow: hidden;
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(150deg, var(--ivory-50) 0%, var(--gold-100) 145%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px 26px 40px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
@media (min-width: 640px) { .album-card { padding: 60px 56px 52px; } }

.album-motif { position: relative; width: 92px; height: 66px; margin-bottom: 6px; }
.album-frame { position: absolute; inset: 0; border: 1.5px solid var(--gold-500); border-radius: 8px; background: rgba(255, 253, 250, 0.55); }
.album-frame--1 { transform: rotate(-9deg) translate(-15px, 3px); opacity: 0.5; }
.album-frame--2 { transform: rotate(6deg) translate(11px, -3px); opacity: 0.7; }
.album-frame--3 { transform: rotate(-2deg); opacity: 1; box-shadow: var(--shadow-card); }
.album-glint {
  position: absolute;
  top: -3px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7e6 0%, var(--gold-500) 60%, rgba(212, 175, 100, 0) 80%);
  opacity: 0;
  animation: album-glint-twinkle 5.5s ease-in-out infinite;
}
@keyframes album-glint-twinkle { 0%, 100% { opacity: 0; transform: scale(0.7); } 50% { opacity: 0.85; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .album-glint { animation: none; opacity: 0.5; } }

.album-card .eyebrow { color: var(--gold-700); }
.album-card .section-heading { max-width: 20ch; }
.album-description { max-width: 46ch; font-size: 15px; line-height: 1.7; color: var(--text-muted); }

.album-cta-row { margin-top: 8px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.album-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--purple-600);
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease-editorial), transform 0.3s var(--ease-editorial);
}
.album-cta:hover { background: var(--purple-500); }
.album-cta:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 3px; }
.album-cta-arrow { display: inline-block; transition: transform 0.25s var(--ease-editorial); }
.album-cta:hover .album-cta-arrow { transform: translateX(3px); }
.album-supporting-text { font-size: 12px; font-style: italic; color: var(--text-muted); }

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

.album-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(20, 8, 24, 0.5);
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-editorial);
}
.album-overlay.is-open .album-sheet { transform: translateY(0); }
.album-sheet:focus { outline: none; }
@media (min-width: 640px) {
  .album-sheet { border-radius: var(--radius-lg); padding: 32px 34px 34px; max-height: 84vh; }
}

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

.album-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lilac-200);
  border: none;
  color: var(--purple-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-editorial);
}
.album-close:hover { background: var(--lilac-300); }
.album-close:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }
.album-close svg { width: 15px; height: 15px; }

.album-modal-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 0 8px; }
.album-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-900);
  color: var(--gold-300);
  margin-bottom: 4px;
}
.album-modal-icon svg { width: 20px; height: 20px; }
.album-modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--ink-900); }
.album-modal-body { margin-top: 14px; font-size: 14px; line-height: 1.65; color: var(--text-muted); text-align: center; }
.album-modal-note { margin-top: 10px; font-size: 12.5px; font-style: italic; text-align: center; color: var(--mauve-500); }

.album-modal-dismiss {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--purple-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);
}
.album-modal-dismiss:hover { background: var(--purple-500); }
.album-modal-dismiss:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }

/* ---------------------------------------------------------------------- */
/* 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(--lilac-200);
  color: var(--purple-600);
}
.toolkit-icon svg { width: 20px; height: 20px; }
.toolkit-card.is-featured .toolkit-icon { background: rgba(212, 175, 100, 0.18); color: var(--gold-700); }

.toolkit-title { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink-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(--purple-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(--purple-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; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer { padding: 22px var(--gutter) 26px; background: var(--purple-900); color: rgba(231, 219, 238, 0.65); }
@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(231, 219, 238, 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(231, 219, 238, 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(20, 8, 24, 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: 440px;
  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(20, 8, 24, 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(--lilac-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(--lilac-200);
  border: none;
  color: var(--purple-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-editorial);
}
.stp-close:hover { background: var(--lilac-300); }
.stp-close:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }
.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(--purple-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(--ink-900); }
.stp-intro { margin-top: 6px; font-size: 14px; line-height: 1.6; color: var(--text-muted); text-align: center; max-width: 34ch; }

.stp-tabs { display: flex; gap: 8px; margin-top: 24px; padding: 4px; background: var(--ivory-100); border-radius: var(--radius-full); }
.stp-tab {
  flex: 1;
  padding: 9px 12px;
  border-radius: var(--radius-full);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: background-color 0.3s var(--ease-editorial), color 0.3s var(--ease-editorial);
}
.stp-tab.is-active { background: var(--white); color: var(--purple-700); box-shadow: var(--shadow-card); }
.stp-tab:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }

.stp-panels { margin-top: 20px; }
.stp-steps { display: flex; flex-direction: column; gap: 16px; }
.stp-step { display: flex; align-items: flex-start; gap: 12px; }
.stp-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--lilac-200);
  color: var(--purple-600);
}
.stp-step-icon svg { width: 15px; height: 15px; }
.stp-step-text { font-size: 14px; line-height: 1.5; color: var(--ink-900); padding-top: 5px; }

/* ---------------------------------------------------------------------- */
/* Share This Trip                                                         */
/* ---------------------------------------------------------------------- */
.share-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(20, 8, 24, 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(20, 8, 24, 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(--lilac-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(--lilac-200);
  border: none;
  color: var(--purple-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-editorial);
}
.share-close:hover { background: var(--lilac-300); }
.share-close:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }
.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(--purple-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(--ink-900); }
.share-intro { margin-top: 6px; font-size: 14px; line-height: 1.6; color: var(--text-muted); text-align: center; 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(--purple-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(--purple-500); }
.share-copy-btn:focus-visible { outline: 2px solid var(--yellow-500); outline-offset: 2px; }
.share-copy-icon { display: inline-flex; width: 15px; height: 15px; }
.share-copy-icon svg { width: 100%; height: 100%; }

.share-status {
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple-600);
  opacity: 0;
  transition: opacity 0.3s var(--ease-editorial);
}
.share-status.is-visible { opacity: 1; }
