/* ============================================================
   Coastal Christmas Del Mar — "Twilight Purple + Ember Orange"
   Brand palette: deep purple night · warm ember-orange action ·
   gold lights · magenta sparkle · cream type. Mobile-first.
   (Derived from the client's live-site colors; refine on brand guidelines.)
   ============================================================ */

/* ------------------------------------------------------------
   BRAND FONTS — real licensed files (drop-in). The font picker
   already offers "Futura", "Proxima Nova", "Belinda"; today they
   render free Google look-alikes (Jost / Mulish / Sacramento).
   To activate the REAL brand fonts: drop the licensed .woff2 files
   into /assets/fonts/ (see assets/fonts/README.md) and UNCOMMENT
   the matching @font-face block below. No other change needed —
   FONTS in js/main.js already lists the real family first.
   ------------------------------------------------------------ */
/*
@font-face { font-family: 'Futura Brand';  src: url('/assets/fonts/futura.woff2') format('woff2');  font-weight: 400 800; font-display: swap; }
@font-face { font-family: 'Proxima Brand'; src: url('/assets/fonts/proxima-nova.woff2') format('woff2'); font-weight: 400 900; font-display: swap; }
@font-face { font-family: 'Belinda Brand'; src: url('/assets/fonts/belinda.woff2') format('woff2'); font-weight: 400; font-display: swap; }
*/

:root {
  /* ---- surfaces ---- */
  --night:      #2B1142;   /* warm twilight (hero + atmosphere + night moments) */
  --night-2:    #38194F;
  --ink:        #2B1142;   /* alias kept so existing dark rules adapt */
  --ink-2:      #38194F;
  --panel:      #46215F;   /* lifted panels */
  --panel-2:    #5A2C78;
  --paper:      #FFF6EC;   /* warm cream — kept for any neutral use */
  --paper-2:    #FCE9D6;   /* peach cream */
  --paper-3:    #FFFFFF;
  /* coral + red section blocks (owner's brand) */
  --coral:      #F4775C;   /* orange section bg (dark text) */
  --redbg:      #E03939;   /* red section bg (white text) */
  --on-coral:   #20102E;   /* near-black text on coral */
  --on-red:     #FFFFFF;   /* pure white text on red */

  /* ---- brand accents (pulled from coastalchristmasdelmar.com) ---- */
  --gold:       #FBC56A;   /* lights */
  --gold-deep:  #E79C3F;
  --gold-soft:  #FCD79A;
  --ember:      #F4775C;   /* coral-orange — primary action */
  --ember-deep: #E85A3C;
  --orange:     #FF8A5B;
  --red:        #E63A3A;
  --indigo:     #2A1A8A;   /* their deep blue-purple */
  --magenta:    #FF4F93;   /* pink sparkle */
  --magenta-deep:#DD277A;
  --sky:        #4EB7F5;

  /* ---- text ---- */
  --cream:      #FFF6EC;
  --cream-dim:  rgba(255, 246, 236, 0.80);
  --cream-faint:rgba(255, 246, 236, 0.62);
  --ink-text:   #2A0F45;   /* dark text on light surfaces */
  --ink-dim:    rgba(42, 15, 69, 0.76);
  --ink-faint:  rgba(42, 15, 69, 0.56);
  --line:       rgba(255, 246, 236, 0.14);
  --line-soft:  rgba(255, 246, 236, 0.07);
  --berry:      var(--ember);
  --teal:       var(--magenta);

  /* ---- type ---- */
  --display: 'Montserrat', system-ui, sans-serif;   /* punchy geometric headlines */
  --script:  'Great Vibes', cursive;                /* festive script flourish */
  --body: 'Poppins', -apple-system, system-ui, sans-serif;

  /* ---- spacing / shape ---- */
  --gut: clamp(1.25rem, 5vw, 4.5rem);
  --section-pad: clamp(2.6rem, 5.5vw, 4.75rem);
  --radius: 16px;
  --radius-lg: 28px;
  --maxw: 1320px;
  --shadow-card: 0 30px 70px -34px rgba(43, 17, 66, 0.45);
  --shadow-soft: 0 22px 50px -28px rgba(43, 17, 66, 0.35);
  --shadow-glow: 0 14px 40px -10px rgba(244, 119, 92, 0.5);
  --z-modal: 100;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--cream);
  background: var(--site-bg, var(--ink));
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.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; }

/* ---- accessibility: visible keyboard focus (gold on dark surfaces) ---- */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px;
}
/* dark outline where the focusable element sits on a light surface */
.sponsor a:focus-visible, .stop:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

/* skip link — first focusable element, visible only on focus */
.skip-link {
  position: fixed; top: 0.6rem; left: 0.6rem; z-index: 200;
  background: var(--gold); color: #1E0A33; font-weight: 700; font-size: 0.9rem;
  padding: 0.7rem 1.1rem; border-radius: 8px; transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ============================================================
   ATMOSPHERE — purple night + drifting glow + sparks + snow
   ============================================================ */
.atmosphere { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.atmosphere__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(255, 138, 91, 0.22), transparent 60%),
    radial-gradient(90% 70% at 86% 12%, rgba(255, 79, 147, 0.16), transparent 55%),
    radial-gradient(80% 60% at 10% 96%, rgba(78, 183, 245, 0.14), transparent 55%),
    linear-gradient(180deg, var(--night) 0%, #34164A 50%, var(--night-2) 100%);
}
/* slow-drifting aurora-style blobs (purple + ember) */
.atmosphere__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; mix-blend-mode: screen; }
.atmosphere__blob--1 { width: 46vw; height: 46vw; top: -10%; left: -8%; background: radial-gradient(circle, rgba(123,74,179,0.55), transparent 70%); animation: drift1 34s ease-in-out infinite; }
.atmosphere__blob--2 { width: 40vw; height: 40vw; bottom: -12%; right: -6%; background: radial-gradient(circle, rgba(244,119,92,0.4), transparent 70%); animation: drift2 42s ease-in-out infinite; }
.atmosphere__blob--3 { width: 32vw; height: 32vw; top: 36%; left: 30%; background: radial-gradient(circle, rgba(255,93,143,0.3), transparent 70%); animation: drift3 50s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw,4vh) scale(1.15); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-5vw,-4vh) scale(1.2); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw,-5vh) scale(0.9); } }

.atmosphere__stars { position: absolute; inset: 0; }
.atmosphere__stars i {
  position: absolute; border-radius: 50%;
  background: currentColor; color: var(--gold-soft);
  box-shadow: 0 0 6px 1px currentColor;
  opacity: 0; animation: twinkle 3.4s ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: 0; transform: scale(0.6); } 50% { opacity: 0.85; transform: scale(1); } }

/* gentle falling snow (JS-populated #snow) */
.atmosphere__snow { position: absolute; inset: 0; overflow: hidden; }
.atmosphere__snow i {
  position: absolute; top: -5%; border-radius: 50%;
  background: #fff; opacity: 0; will-change: transform;
  animation: snowfall linear infinite;
}
@keyframes snowfall {
  0% { opacity: 0; transform: translateY(-10px) translateX(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(105vh) translateX(var(--drift, 20px)); }
}

.atmosphere__grain {
  position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* main is intentionally NOT a stacking context, so hero + gallery can lift ABOVE the
   star overlay (z-40) to exclude twinkles there while keeping them everywhere else. */
main, .site-header, .site-footer { position: relative; }

/* snow + twinkling lights overlay — ABOVE the opaque sections so they show everywhere,
   below the header (60), floating CTA (55), and modal (100). */
.skyfx { position: fixed; inset: 0; z-index: 40; pointer-events: none; }
.skyfx .atmosphere__stars i { box-shadow: 0 0 6px 1px currentColor, 0 0 2px 0 rgba(0,0,0,0.25); }

/* per-section snow, BEHIND content (above the section bg, below cards/text/images) */
.snowy { position: relative; isolation: isolate; }
.section-snow { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.section-snow i {
  position: absolute; top: -6%; border-radius: 50%; background: #fff; opacity: 0;
  will-change: transform; animation: snowfall linear infinite;
}
.section-snow .flake {
  position: absolute; top: -8%; opacity: 0; will-change: transform;
  background: center / contain no-repeat; filter: drop-shadow(0 0 2px rgba(255,255,255,0.55));
  animation: snowfall-spin linear infinite;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cg id='a' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' fill='none'%3E%3Cline x1='50' y1='50' x2='50' y2='8'/%3E%3Cline x1='50' y1='20' x2='41' y2='12'/%3E%3Cline x1='50' y1='20' x2='59' y2='12'/%3E%3Cline x1='50' y1='32' x2='43' y2='26'/%3E%3Cline x1='50' y1='32' x2='57' y2='26'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23a'/%3E%3Cuse href='%23a' transform='rotate(60 50 50)'/%3E%3Cuse href='%23a' transform='rotate(120 50 50)'/%3E%3Cuse href='%23a' transform='rotate(180 50 50)'/%3E%3Cuse href='%23a' transform='rotate(240 50 50)'/%3E%3Cuse href='%23a' transform='rotate(300 50 50)'/%3E%3C/svg%3E");
}
@keyframes snowfall-spin {
  0% { opacity: 0; transform: translateY(-12px) translateX(0) rotate(0deg); }
  10% { opacity: 0.85; }
  90% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(105vh) translateX(var(--drift, 30px)) rotate(320deg); }
}

/* ============================================================
   TYPE PRIMITIVES
   ============================================================ */
.eyebrow {
  font-family: var(--body); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ember-deep); margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: var(--ember); opacity: 0.85; }
.section-head { max-width: 820px; margin: 0 auto clamp(2.6rem, 5vw, 4.2rem); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { content: ''; width: 26px; height: 2px; border-radius: 2px; background: var(--ember); opacity: 0.85; }
.section-head__title {
  font-family: var(--display); font-weight: 800; line-height: 1.04;
  letter-spacing: -0.02em; font-size: clamp(2.2rem, 5.6vw, 3.7rem);
}

/* All display headings are now punchy geometric (Montserrat heavy). */
.section-head__title, .welcome__headline, .card__title, .mosaic__heading,
.split__heading, .gallery__heading, .journey__heading, .charity__heading,
.involved__heading, .waitlist__heading, .map-modal__title, .sponsors__label {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.02em;
}
/* Script flourish accent (festive, on-brand). */
.flourish { font-family: var(--script); font-weight: 400; letter-spacing: 0; text-transform: none; }

/* ============================================================
   SURFACE TONES — coral + red blocks (owner's brand).
   Each tone remaps the --cream* text vars so existing inner rules
   flip to the right text color for free; coral = dark text, red = white.
   ============================================================ */
.tone-coral {
  background: var(--coral); color: var(--on-coral);
  --cream: #20102E; --cream-dim: #2E1A40; --cream-faint: #3A2550;
  --line: rgba(32,16,46,0.22); --line-soft: rgba(32,16,46,0.12);
}
.tone-red {
  background: var(--redbg); color: #fff;
  /* #E03939 caps contrast with white at ~4.7:1, so all text stays solid white */
  --cream: #FFFFFF; --cream-dim: #FFFFFF; --cream-faint: #FFFFFF;
  --line: rgba(255,255,255,0.30); --line-soft: rgba(255,255,255,0.16);
}
.tone-coral .eyebrow { color: #20102E; }
.tone-coral .eyebrow::before, .tone-coral .eyebrow::after { background: var(--indigo); }
.tone-red .eyebrow { color: #fff; }
.tone-red .eyebrow::before, .tone-red .eyebrow::after { background: var(--gold); }
/* buttons need contrast vs the section bg (an orange button on orange would vanish) */
.tone-coral .btn--ticket { background: var(--indigo); color: #fff; box-shadow: 0 14px 36px -12px rgba(26,10,60,0.6); }
.tone-coral .btn--ghost { color: #20102E; border-color: rgba(32,16,46,0.4); }
.tone-coral .btn--ghost:hover { background: rgba(32,16,46,0.08); border-color: #20102E; }
.tone-red .btn--ticket { background: #fff; color: #20102E; box-shadow: 0 14px 36px -12px rgba(0,0,0,0.5); }
.tone-red .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.tone-red .btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.tone-color { color: #fff; }   /* vivid color-block sections style themselves */
/* deep purple "night" sections (map + cards) — keep text light, gold accents */
.tone-night {
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--cream);
  --cream: #FFF6EC; --cream-dim: rgba(255,246,236,0.82); --cream-faint: rgba(255,246,236,0.62);
  --line: rgba(255,246,236,0.14); --line-soft: rgba(255,246,236,0.07);
}
.tone-night .eyebrow { color: var(--gold); }
.tone-night .eyebrow::before, .tone-night .eyebrow::after { background: var(--gold); }
/* elements that sit directly on the red bg with hardcoded colors → flip to white */
.tone-red .faq-group__label, .tone-red .sponsors__label { color: #fff; }
.tone-red .faq-group__label { border-bottom-color: rgba(255,255,255,0.5); }
.tone-red .faq-group__label::before { background: #fff; }

/* ---- extra per-section palette colors (editor color picker) ----
   Dark-text tones behave like coral; tone-indigo is a light-text deep section. */
.tone-orange, .tone-magenta, .tone-sky, .tone-gold, .tone-cream {
  color: var(--on-coral);
  --cream: #20102E; --cream-dim: #2E1A40; --cream-faint: #322046;
  --line: rgba(32,16,46,0.22); --line-soft: rgba(32,16,46,0.12);
}
.tone-orange { background: var(--orange); }
.tone-magenta { background: var(--magenta); }
.tone-sky { background: var(--sky); }
.tone-gold { background: var(--gold); }
.tone-cream { background: var(--paper); }
.tone-orange .eyebrow, .tone-magenta .eyebrow, .tone-sky .eyebrow, .tone-gold .eyebrow, .tone-cream .eyebrow { color: #20102E; }
.tone-orange .eyebrow::before, .tone-orange .eyebrow::after, .tone-magenta .eyebrow::before, .tone-magenta .eyebrow::after,
.tone-sky .eyebrow::before, .tone-sky .eyebrow::after, .tone-gold .eyebrow::before, .tone-gold .eyebrow::after,
.tone-cream .eyebrow::before, .tone-cream .eyebrow::after { background: var(--indigo); }
.tone-orange .btn--ticket, .tone-magenta .btn--ticket, .tone-sky .btn--ticket, .tone-gold .btn--ticket, .tone-cream .btn--ticket {
  background: var(--indigo); color: #fff; box-shadow: 0 14px 36px -12px rgba(26,10,60,0.6);
}
.tone-orange .btn--ghost, .tone-magenta .btn--ghost, .tone-sky .btn--ghost, .tone-gold .btn--ghost, .tone-cream .btn--ghost {
  color: #20102E; border-color: rgba(32,16,46,0.4);
}
/* indigo section (light text, like night but blue) */
.tone-indigo {
  background: linear-gradient(180deg, var(--indigo) 0%, #1B1266 100%); color: #fff;
  --cream: #FFFFFF; --cream-dim: rgba(255,255,255,0.86); --cream-faint: rgba(255,255,255,0.66);
  --line: rgba(255,255,255,0.22); --line-soft: rgba(255,255,255,0.12);
}
.tone-indigo .eyebrow { color: var(--gold); }
.tone-indigo .eyebrow::before, .tone-indigo .eyebrow::after { background: var(--gold); }
.tone-indigo .faq-group__label, .tone-indigo .sponsors__label { color: #fff; }
.tone-indigo .faq-group__label { border-bottom-color: rgba(255,255,255,0.5); }
.tone-indigo .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn--ticket { background: linear-gradient(135deg, var(--ember), var(--ember-deep)); color: #1E0A33; box-shadow: var(--shadow-glow); }
.btn--ticket:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(244,119,92,0.65); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn--ghost:hover { background: rgba(253,241,236,0.07); border-color: var(--cream-faint); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }

/* ============================================================
   STICKY HEADER + NAV
   ============================================================ */
.top-chrome { position: sticky; top: 0; z-index: 60; }
.onsale-banner { display: block; }
.onsale-banner[hidden] { display: none; }
.onsale-banner__link {
  display: block; text-align: center;
  padding: 0.55rem var(--gut);
  background: linear-gradient(90deg, #BC9557, #E1A950 50%, #BC9557);
  color: #2B1142; font-weight: 700; font-size: 0.98rem; letter-spacing: 0.03em;
  text-decoration: none;
}
.onsale-banner__link:hover { filter: brightness(1.06); }
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.75rem var(--gut);
  background: linear-gradient(180deg, rgba(43,17,66,0.96), rgba(43,17,66,0.78) 80%, rgba(43,17,66,0.45));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(251,197,106,0.18);
}
.site-header__brand { display: flex; align-items: center; flex: none; }
.site-header__brand img { height: 98px; width: auto; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4)); transition: transform 0.3s ease; }
.site-header__brand:hover img { transform: scale(1.04); }
.site-nav { display: flex; align-items: center; gap: 2.2rem; margin-left: auto; }
.site-nav__link {
  font-weight: 600; font-size: 1.02rem; letter-spacing: 0.01em; color: var(--cream-dim);
  position: relative; padding: 0.4rem 0; transition: color 0.2s ease;
}
.site-nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--ember); transition: width 0.28s ease;
}
.site-nav__link:hover { color: var(--cream); }
.site-nav__link:hover::after { width: 100%; }
.site-header__right { display: flex; align-items: center; gap: 1rem; flex: none; }
.site-header__cta { padding: 0.72rem 1.5rem; font-size: 0.95rem; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; cursor: pointer; padding: 0; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
/* Hero = full-bleed video + scroll cue (no logo/text overlay; the verbiage lives in Welcome).
   Shorter than a full screen, and the video is anchored to the top so cover crops the bottom ~1/3. */
.hero {
  position: relative; z-index: 41; min-height: clamp(360px, 62vh, 720px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(4rem, 10vh, 7rem) var(--gut); overflow: hidden; background: var(--night);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43,17,66,0.34) 0%, transparent 32%, rgba(43,17,66,0.4) 76%, var(--night) 100%),
    radial-gradient(120% 80% at 50% 42%, transparent 48%, rgba(43,17,66,0.42));
}
.hero__scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,246,236,0.72); border-radius: 14px;
}
.hero__scroll-hint span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: scrollhint 1.8s ease-in-out infinite; }
@keyframes scrollhint { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 20px; } }

/* ============================================================
   WELCOME — bright section holding the relocated hero verbiage
   ============================================================ */
/* bg + text colors come from the tone class (default tone-coral); text uses the tone --cream* vars */
.welcome {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gut) clamp(3.5rem, 7vw, 5.5rem);
}
.welcome__inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.welcome__eyebrow { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 1.1rem; }
.welcome__headline {
  font-family: var(--display); font-weight: 800; color: var(--cream);
  font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.02; letter-spacing: -0.025em; text-wrap: balance;
}
.welcome__subhead { margin: 1.2rem auto 0; max-width: 640px; font-size: clamp(1.05rem, 2.1vw, 1.25rem); color: var(--cream-dim); }
.welcome__date { margin-top: 2.4rem; }
.welcome__date-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center;
  font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--indigo); font-size: 0.82rem; margin-bottom: 0.6rem;
}
.welcome__date-kicker::before, .welcome__date-kicker::after { content: ''; width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
.welcome__date-big {
  display: block; font-family: var(--display); font-weight: 800;
  /* same size as the "Coastal Christmas" headline (matches .welcome__headline incl. heading-scale) */
  font-size: calc(clamp(2.2rem, 6vw, 4rem) * var(--heading-scale)); line-height: 0.98; letter-spacing: -0.025em; color: var(--indigo);
}
/* on dark-bg tones the indigo date/kicker flip to white for contrast */
.tone-red .welcome__date-big, .tone-night .welcome__date-big, .tone-indigo .welcome__date-big,
.tone-red .welcome__date-kicker, .tone-night .welcome__date-kicker, .tone-indigo .welcome__date-kicker { color: #fff; }
/* magenta: the indigo accent is too low-contrast for the small kicker → dark ink instead */
.tone-magenta .welcome__date-big, .tone-magenta .welcome__date-kicker { color: #20102E; }
/* red: deepen the bg slightly so the small white text (eyebrow/subhead/location) clears AA */
.welcome.tone-red { background: #D93333; }
.welcome__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 2rem; }
.welcome__loc { margin-top: 1.4rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); font-weight: 700; }

/* countdown (lives in Welcome on a light surface) */
.countdown { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.4rem; }
.countdown__unit {
  display: flex; flex-direction: column; align-items: center; min-width: 72px;
  padding: 0.75rem 0.7rem; border-radius: 14px;
  background: var(--paper-3); border: 1px solid rgba(42,15,69,0.10); box-shadow: var(--shadow-soft);
}
.countdown__num { font-family: var(--display); font-weight: 800; font-size: 2rem; line-height: 1; color: var(--indigo); font-variant-numeric: tabular-nums; }
.countdown__label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); margin-top: 0.45rem; font-weight: 700; }
.countdown__live { width: 100%; font-size: 0.98rem; color: var(--indigo); font-weight: 700; }

/* ============================================================
   HOOK
   ============================================================ */
.hook { padding: var(--section-pad) var(--gut); text-align: center; }
.hook__inner { max-width: 880px; margin: 0 auto; }
.hook__heading {
  font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 5.4vw, 3.3rem);
  line-height: 1.08; letter-spacing: -0.015em;
  background: linear-gradient(120deg, var(--cream) 30%, var(--gold-soft) 70%, var(--ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hook__body { margin-top: 1.6rem; font-size: clamp(1.05rem, 2.1vw, 1.28rem); color: var(--cream-dim); }

/* ============================================================
   MAP JOURNEY — interactive (cream card; clickable numbered stops)
   ============================================================ */
.journey {
  padding: var(--section-pad) var(--gut); position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--cream);
}
.journey__head { text-align: center; max-width: 800px; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); position: relative; z-index: 1; }
.journey__eyebrow { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.journey__heading { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 5.6vw, 3.7rem); line-height: 1.03; letter-spacing: -0.02em; color: var(--cream); }
.journey__intro { margin-top: 1rem; color: var(--cream-dim); font-size: 1.1rem; }
.journey__hint { margin-top: 0.6rem; font-size: 0.9rem; color: var(--cream); font-weight: 700; letter-spacing: 0.02em; }
.journey__stage { z-index: 1; }

.journey__stage {
  max-width: 960px; margin: 0 auto; position: relative;
  border-radius: var(--radius-lg); padding: clamp(0.9rem, 2.4vw, 1.8rem);
  background: linear-gradient(180deg, #FFFDF8, #F4ECDD);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(244,119,92,0.2);
}
.journey__map { position: relative; border-radius: var(--radius); overflow: hidden; }
.journey__zoom { position: relative; transition: transform 0.7s cubic-bezier(0.65,0,0.35,1); }
.journey__map.is-zoomed .journey__zoom { transform: scale(2.3); }
.journey__map img {
  width: 100%; height: auto; display: block;
  opacity: 0; transform: scale(1.03) translateY(16px);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.journey__stage.is-in .journey__map img { opacity: 1; transform: scale(1) translateY(0); }
.journey__markers { position: absolute; inset: 0; }

/* clickable numbered hotspot (ring highlights the map's printed number) */
.stop {
  position: absolute; transform: translate(-50%, -50%);
  width: 46px; height: 46px; padding: 0; border: 0; background: transparent;
  cursor: pointer; opacity: 0; transition: opacity 0.5s ease;
}
.stop__ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) scale(0.4);
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid var(--ember); background: rgba(244,119,92,0.12);
  box-shadow: 0 0 16px 2px rgba(244,119,92,0.7);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, border-color 0.25s ease;
}
.stop__pulse {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(244,119,92,0.85);
}
.stop.is-in { opacity: 1; }
.stop.is-in .stop__ring { transform: translate(-50%,-50%) scale(1); }
.stop.is-in .stop__pulse { animation: pulse 2.8s ease-out infinite; }
.stop:hover .stop__ring, .stop:focus-visible .stop__ring { transform: translate(-50%,-50%) scale(1.18); background: rgba(244,119,92,0.28); border-color: var(--gold); }
@keyframes pulse { 0% { transform: translate(-50%,-50%) scale(1); opacity: 0.85; } 100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0; } }

/* ---- map detail modal ---- */
.map-modal {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
.map-modal.is-open { opacity: 1; visibility: visible; }
.map-modal__backdrop { position: absolute; inset: 0; background: rgba(16,5,30,0.78); backdrop-filter: blur(8px); }
.map-modal__panel {
  position: relative; width: min(1040px, 100%); max-height: 90vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line); box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9);
  transform: translateY(24px) scale(0.97); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.map-modal.is-open .map-modal__panel { transform: translateY(0) scale(1); }
.map-modal__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.map-modal__media img { width: 100%; height: 100%; object-fit: cover; }
.map-modal__num {
  position: absolute; top: 1rem; left: 1rem; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  color: #1E0A33; background: linear-gradient(135deg, var(--ember), var(--ember-deep)); box-shadow: var(--shadow-glow);
}
.map-modal__body { padding: clamp(1.5rem, 4vw, 2.4rem); overflow-y: auto; }
.map-modal__eyebrow { font-weight: 700; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.map-modal__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.08; margin: 0.5rem 0 0.8rem; }
.map-modal__desc { color: var(--cream-dim); font-size: 1.02rem; max-width: 60ch; }
.map-modal__close {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(20,8,40,0.6); color: var(--cream); cursor: pointer;
  font-size: 1.4rem; line-height: 1; display: grid; place-items: center; transition: background 0.2s ease, transform 0.2s ease;
}
.map-modal__close:hover { background: var(--ember); transform: rotate(90deg); }
body.modal-open { overflow: hidden; }
@media (min-width: 720px) {
  .map-modal__panel { grid-template-columns: 1.25fr 1fr; max-height: 82vh; }
  .map-modal__media { aspect-ratio: auto; height: 100%; min-height: 420px; }
}

/* ============================================================
   ATTRACTIONS — 8 cards, "4 and 4"
   ============================================================ */
.attractions { padding: var(--section-pad) var(--gut); }
/* flexbox (not grid) so a partial last row — e.g. the bottom 2 of 8 cards — stays centered */
.card-grid { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.card {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--paper); border: 1px solid rgba(42,15,69,0.08);
  box-shadow: var(--shadow-soft); transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* a <button>: flex-column so content pins to the top. */
  display: flex; flex-direction: column; width: 100%; text-align: left;
  font: inherit; color: var(--ink-text); cursor: pointer; -webkit-appearance: none;
  appearance: none; padding: 0;
}
/* festive top accent bar, rotating brand colors for variety */
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; z-index: 2; background: var(--ember); }
.card:nth-child(4n+2)::before { background: var(--magenta); }
.card:nth-child(4n+3)::before { background: var(--sky); }
.card:nth-child(4n+4)::before { background: var(--gold); }
.card__media { flex: none; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.card:hover, .card:focus-visible { transform: translateY(-8px); box-shadow: 0 38px 72px -30px rgba(43,17,66,0.42); outline: none; }
.card:hover .card__media img { transform: scale(1.07); }
.card:focus-visible { box-shadow: var(--shadow-soft), 0 0 0 3px var(--ember); }
.card__body { padding: 1.4rem 1.5rem 1.7rem; }
.card__title { font-family: var(--display); font-weight: 800; font-size: 1.32rem; line-height: 1.14; letter-spacing: -0.01em; color: var(--ink-text); }
.card__blurb { margin-top: 0.55rem; color: var(--ink-dim); font-size: 0.95rem; }
.card__more { display: inline-block; margin-top: 0.9rem; font-weight: 700; font-size: 0.82rem; color: var(--indigo); letter-spacing: 0.02em; }

/* ============================================================
   GALLERY — full-bleed panorama + moments
   ============================================================ */
.gallery { padding: 0; position: relative; z-index: 41; }  /* lift above the star overlay */
.gallery__pano { position: relative; height: clamp(380px, 72vh, 760px); overflow: hidden; }
.gallery__pano img { width: 100%; height: 122%; object-fit: cover; }
.gallery__pano::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,10,51,0.2), transparent 30%, rgba(30,10,51,0.88)); }
.gallery__pano-cap { position: absolute; left: var(--gut); right: var(--gut); bottom: clamp(2rem, 5vw, 4rem); z-index: 2; max-width: 640px; }
.gallery__heading { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 5.4vw, 3.4rem); line-height: 1.04; letter-spacing: -0.02em; margin: 0.2rem 0 0.7rem; }
/* pano caption + photo captions sit on dark imagery → keep light text even in a light section */
.gallery__pano-cap, .gallery__pano-cap .eyebrow, .gallery__heading { color: #FFF6EC; }
.gallery__pano-cap .eyebrow::before, .gallery__pano-cap .eyebrow::after { background: var(--gold); }
.gallery__pano-cap p { color: rgba(255,246,236,0.88); font-size: 1.05rem; max-width: 48ch; }
.mosaic__photo figcaption { color: #FFF6EC; }
/* editorial mosaic: FULL-BLEED edge-to-edge quadrants, big type, script kicker */
.mosaic { width: 100%; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; }
.mosaic__cell { position: relative; overflow: hidden; min-height: clamp(300px, 44vw, 560px); }
.mosaic__photo img { width: 100%; height: 100%; min-height: clamp(300px, 44vw, 560px); object-fit: cover; }
/* crab.jpg has a thin white strip baked into its right edge; scale from the left to crop it off */
.mosaic__photo img[src*="crab"] { transform: scale(1.05); transform-origin: left center; }
.mosaic__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.5rem 1.2rem;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em; color: #FFF6EC;
  background: linear-gradient(transparent, rgba(20,8,36,0.85));
}
/* color panels */
.mosaic__panel { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding: clamp(2.4rem, 6vw, 4.5rem); color: #fff; }
.mosaic__panel-inner { position: relative; z-index: 1; max-width: 30ch; }
.mosaic__panel--indigo, .mosaic__panel--purple { background: linear-gradient(150deg, #3A1466, var(--indigo)); }
.mosaic__panel--red { background: linear-gradient(150deg, #F0524F, var(--red)); }
.mosaic__panel--ember { background: linear-gradient(150deg, var(--orange), var(--ember-deep)); }
.mosaic__panel--magenta { background: linear-gradient(150deg, var(--magenta), var(--magenta-deep)); }
.mosaic__panel--sky { background: linear-gradient(150deg, #74CBFA, var(--sky)); }
.mosaic__panel--gold { background: linear-gradient(150deg, var(--gold-soft), var(--gold)); }
.mosaic__kicker { display: block; font-family: var(--script); font-weight: 400; color: var(--gold); font-size: clamp(1.7rem, 4.2vw, 3rem); line-height: 1; margin-bottom: 0.1rem; }
.mosaic__heading { font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(2.2rem, 6vw, 3.8rem); line-height: 0.95; color: #fff; }
.mosaic__body { margin: 1rem auto 0; color: rgba(255,255,255,0.92); font-size: 1.02rem; max-width: 38ch; }
/* AA contrast: dark text + indigo kicker on the BRIGHT panels; cream on the dark indigo panel */
.mosaic__panel--red .mosaic__heading, .mosaic__panel--red .mosaic__body,
.mosaic__panel--ember .mosaic__heading, .mosaic__panel--ember .mosaic__body,
.mosaic__panel--magenta .mosaic__heading, .mosaic__panel--magenta .mosaic__body,
.mosaic__panel--sky .mosaic__heading, .mosaic__panel--sky .mosaic__body,
.mosaic__panel--gold .mosaic__heading, .mosaic__panel--gold .mosaic__body { color: #1E0A33; }
.mosaic__panel--red .mosaic__kicker, .mosaic__panel--ember .mosaic__kicker,
.mosaic__panel--magenta .mosaic__kicker, .mosaic__panel--sky .mosaic__kicker,
.mosaic__panel--gold .mosaic__kicker { color: var(--indigo); }
/* twinkling sparkle on the text panels — two offset layers shimmer out of phase */
.mosaic__panel::after, .mosaic__panel::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background-repeat: repeat;
}
.mosaic__panel::after {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 0 1.2px, transparent 1.9px),
    radial-gradient(circle, rgba(255,255,255,0.65) 0 1px, transparent 1.6px);
  background-size: 78px 78px, 120px 100px; background-position: 12px 18px, 56px 64px;
  animation: paneltwinkle 2.6s ease-in-out infinite;
}
.mosaic__panel::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.9) 0 1.1px, transparent 1.7px);
  background-size: 96px 88px; background-position: 44px 52px;
  animation: paneltwinkle 3.4s ease-in-out infinite 0.7s;
}
@keyframes paneltwinkle { 0%,100% { opacity: 0.12; } 50% { opacity: 0.7; } }

/* ============================================================
   SPLIT SECTIONS — Igloos + Private Parties
   ============================================================ */
.igloos, .parties { padding: var(--section-pad) var(--gut); }
.split-inner, .igloos__inner, .parties__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
}
.igloos__inner { background: radial-gradient(100% 120% at 100% 0%, rgba(251,197,106,0.16), transparent 55%), linear-gradient(180deg, var(--panel), var(--ink-2)); }
.parties__inner { background: radial-gradient(100% 120% at 0% 0%, rgba(255,93,143,0.2), transparent 55%), linear-gradient(180deg, var(--panel), var(--ink-2)); }
.igloos__media, .parties__media { position: relative; min-height: 300px; overflow: hidden; }
.igloos__media img, .parties__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.igloos__copy, .parties__copy { padding: clamp(2rem, 5vw, 3.4rem); display: flex; flex-direction: column; justify-content: center; }
.igloos__copy .eyebrow { color: var(--gold); }
.igloos__copy .eyebrow::before { background: var(--gold); }
.parties__copy .eyebrow { color: var(--magenta); }
.parties__copy .eyebrow::before { background: var(--magenta); }
.igloos__heading, .parties__heading { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.06; }
.igloos__body, .parties__body { margin: 1.2rem 0 2rem; color: var(--cream-dim); font-size: 1.05rem; }
.igloos__copy .btn, .parties__copy .btn { align-self: flex-start; }

/* ============================================================
   SPLIT block (image + copy). Generalizes the igloos/parties
   layout so the reorderable body can place any number of them.
   imageSide (left|right) + accent (gold|magenta) set on wrapper.
   ============================================================ */
.split { padding: var(--section-pad) var(--gut); }
.split__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
}
/* cozy night panels (deep plum, cream text) — replaces the plain white card */
.split__inner { background: linear-gradient(150deg, #3A1F58, #2E1846); box-shadow: var(--shadow-card); border-color: rgba(251,197,106,0.16); }
.split--accent-gold .split__inner { background: radial-gradient(120% 130% at 0% 0%, rgba(251,197,106,0.20), transparent 55%), linear-gradient(150deg, #3A1F58, #2E1846); }
.split--accent-magenta .split__inner { background: radial-gradient(120% 130% at 100% 0%, rgba(255,79,147,0.22), transparent 55%), linear-gradient(150deg, #3A1F58, #2E1846); }
.split__media { position: relative; min-height: 320px; overflow: hidden; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* explicit light text — the plum panel is dark regardless of the section tone's --cream remap */
.split__copy { padding: clamp(2rem, 5vw, 3.4rem); display: flex; flex-direction: column; justify-content: center; color: #FFF6EC; }
.split .eyebrow { color: var(--gold); }     /* gold on the deep plum panel */
.split--accent-gold .eyebrow::before { background: var(--gold); }
.split--accent-magenta .eyebrow::before { background: var(--magenta); }
.split__heading { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; color: #FFF6EC; }
.split__body { margin: 1.2rem 0 2rem; color: rgba(255,246,236,0.85); font-size: 1.05rem; }
.split__copy .btn { align-self: flex-start; }
/* vibrant orange CTA pops on the dark plum panel (overrides the section-tone button color) */
.split__inner .btn--ticket { background: linear-gradient(135deg, var(--ember), var(--ember-deep)); color: #20102E; box-shadow: var(--shadow-glow); }
.split__inner .btn--ticket:hover { box-shadow: 0 18px 50px -10px rgba(244,119,92,0.65); }
@media (min-width: 980px) {
  .split__inner { grid-template-columns: 1.04fr 1fr; }
  .split--media-right .split__media { order: 2; }
  .split--media-right .split__copy { order: 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-pad) var(--gut); }
.accordion { max-width: 820px; margin: 0 auto; }
.faq-group { max-width: 820px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: clamp(2rem, 4vw, 3.2rem); }
.faq-group__label {
  font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--indigo);
  padding-bottom: 0.6rem; margin-bottom: 0.4rem; border-bottom: 2px solid rgba(244,119,92,0.5);
  display: flex; align-items: center; gap: 0.6rem;
}
.faq-group__label::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--ember); }
/* each question is a light card (dark text regardless of the section tone) */
.accordion__item {
  position: relative; overflow: hidden; background: #FFF8F0;
  border: 1px solid rgba(42,15,69,0.08); border-radius: 14px; box-shadow: var(--shadow-soft);
  margin-bottom: 0.85rem; transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.accordion__item:hover { box-shadow: 0 26px 50px -28px rgba(43,17,66,0.4); }
.accordion__panel-inner p { line-height: 1.7; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; color: #20102E;
  font-family: var(--display); font-size: clamp(1.05rem, 2.4vw, 1.2rem); font-weight: 700;
  text-align: left; padding: 1.25rem 1.5rem; transition: color 0.2s ease;
}
.accordion__icon { position: relative; flex: none; width: 18px; height: 18px; }
.accordion__icon::before, .accordion__icon::after { content: ''; position: absolute; top: 50%; left: 0; width: 18px; height: 2px; background: var(--ember-deep); border-radius: 2px; transition: transform 0.3s ease, background 0.3s ease; }
.accordion__icon::after { transform: rotate(90deg); }
/* OPEN state: question turns indigo + an orange accent bar + warm tint (the color change on click) */
.accordion__item.is-open { background: #FFF1E0; box-shadow: 0 26px 54px -26px rgba(43,17,66,0.45); }
.accordion__item.is-open::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--ember), var(--magenta)); }
.accordion__item.is-open .accordion__trigger { color: var(--indigo); }
.accordion__item.is-open .accordion__icon::before, .accordion__item.is-open .accordion__icon::after { background: var(--indigo); }
.accordion__item.is-open .accordion__icon::after { transform: rotate(0); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion__panel-inner { padding: 0 1.5rem 1.4rem; color: #2E1A40; font-size: 1rem; max-width: 68ch; }

/* ============================================================
   WAITLIST + TICKETING
   ============================================================ */
.waitlist { padding: var(--section-pad) var(--gut); }
.waitlist__inner {
  position: relative; overflow: hidden;
  max-width: 920px; margin: 0 auto; text-align: center; padding: clamp(2.6rem, 6vw, 4.4rem);
  border-radius: var(--radius-lg);
  background: radial-gradient(100% 130% at 50% 0%, rgba(244,119,92,0.22), transparent 60%), linear-gradient(180deg, #FFFFFF, #FFF1E6);
  border: 1px solid rgba(244,119,92,0.35); box-shadow: 0 24px 60px -30px rgba(244,119,92,0.5), var(--shadow-soft);
}
/* festive multicolor top accent bar */
.waitlist__inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--ember), var(--gold), var(--magenta), var(--sky));
}
/* vibrant primary button on the white card (was white-on-white in the red section) */
.waitlist__inner .btn--ticket {
  background: linear-gradient(135deg, var(--ember), var(--ember-deep)); color: #20102E;
  box-shadow: var(--shadow-glow);
}
.waitlist__inner .btn--ticket:hover { box-shadow: 0 18px 50px -10px rgba(244,119,92,0.65); }
.waitlist__heading { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-text); }
.waitlist__copy .eyebrow { color: var(--indigo); justify-content: center; }
.waitlist__meta { margin-top: 1rem; color: var(--ink-dim); font-weight: 600; letter-spacing: 0.03em; }
.waitlist__buy { margin-top: 1.8rem; }
.waitlist__buy .btn { font-size: 1.05rem; padding: 1.05rem 2.4rem; }
.waitlist__form { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; max-width: 560px; margin: 1.5rem auto 0; }
.waitlist__form input { flex: 1 1 240px; min-width: 0; padding: 0.95rem 1.2rem; border-radius: 100px; border: 1px solid rgba(42,15,69,0.22); background: var(--paper); color: var(--ink-text); font-family: var(--body); font-size: 1rem; }
.waitlist__form input::placeholder { color: var(--ink-faint); }
.waitlist__form input:focus { outline: 2px solid var(--ember-deep); outline-offset: 1px; }
.waitlist__form-status { flex-basis: 100%; min-height: 1.2em; font-size: 0.85rem; color: var(--ink-dim); margin-top: 0.3rem; }
.waitlist__form.is-success .waitlist__form-status { color: var(--indigo); font-weight: 700; }

/* ============================================================
   CHARITY BAND
   ============================================================ */
.charity { padding: var(--section-pad) var(--gut); }
.charity__inner {
  max-width: var(--maxw); margin: 0 auto; text-align: center; position: relative; overflow: hidden;
  padding: clamp(2.4rem, 5vw, 3.6rem); border-radius: var(--radius-lg);
  background: radial-gradient(110% 140% at 0% 0%, rgba(244,119,92,0.4), transparent 55%), linear-gradient(135deg, var(--indigo), #3A1466);
  border: 1px solid rgba(251,197,106,0.2); box-shadow: var(--shadow-card); color: #fff;
}
.charity__badge { display: inline-block; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.charity__heading { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; color: #fff; }
.charity__body { margin-top: 0.7rem; color: rgba(255,246,236,0.9); }

/* ============================================================
   PROMO / FLASH SALE — bold urgency band (recolorable; default red tone)
   ============================================================ */
.promo { padding: clamp(3rem, 7vw, 5rem) var(--gut); text-align: center; position: relative; overflow: hidden; }
/* deepen the default red so small white text (eyebrow/body/badge/ghost btn) clears WCAG AA */
.promo.tone-red { background: #D93333; }
.promo__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.promo__badge {
  display: inline-block; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); background: transparent;
  border: 1.5px solid var(--cream-faint); padding: 0.4rem 0.95rem; border-radius: 999px; margin-bottom: 1rem;
}
.promo__eyebrow { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 0.7rem; }
.promo__heading { font-family: var(--display); font-weight: 800; color: var(--cream); font-size: clamp(2rem, 5.5vw, 3.4rem); line-height: 1.03; letter-spacing: -0.02em; text-wrap: balance; }
.promo__body { margin: 1rem auto 0; max-width: 620px; color: var(--cream-dim); font-size: clamp(1.02rem, 2vw, 1.2rem); }
.promo__countdown { margin-top: 1.8rem; }

/* Owner-added button rows (any block) */
.block__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.8rem; }
.charity__inner .block__actions, .showcase__copy .block__actions,
.promo__inner .block__actions, .attractions .block__actions { justify-content: center; }
.split__copy .block__actions { justify-content: flex-start; }

/* CMS live-preview ONLY: low-contrast warning ribbon (guarded by IS_PREVIEW; never on the public site) */
.cms-contrast-warn {
  position: relative; z-index: 20; margin: 0 0 0.4rem; padding: 0.6rem 1rem; text-align: center;
  font-size: 0.82rem; font-weight: 700; color: #1a1206; background: #FFD54A; border-bottom: 2px solid #B8860B;
}

/* ============================================================
   SHOWCASE — full-bleed "wow" photo band
   ============================================================ */
.showcase { position: relative; height: clamp(420px, 80vh, 820px); overflow: hidden; }
.showcase__media { position: absolute; inset: 0; }
.showcase__media img { width: 100%; height: 122%; object-fit: cover; }
.showcase::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(30,10,51,0.35), transparent 28%, rgba(30,10,51,0.82)); }
.showcase__copy { position: absolute; left: 0; right: 0; bottom: clamp(2.5rem, 7vw, 5rem); z-index: 2; text-align: center; padding: 0 var(--gut); }
.showcase__heading { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1.0; color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,0.55); }
.showcase__body { margin: 1rem auto 0; max-width: 640px; color: var(--cream); font-size: clamp(1.05rem, 2.2vw, 1.3rem); text-shadow: 0 1px 22px rgba(0,0,0,0.6); }

/* ============================================================
   GET INVOLVED — influencer / vendor callouts
   ============================================================ */
.involved { padding: var(--section-pad) var(--gut); }
.involved__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.involved__card { position: relative; text-align: center; padding: clamp(2rem, 4vw, 2.8rem); border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid rgba(42,15,69,0.08); box-shadow: var(--shadow-soft); overflow: hidden; }
.involved__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--ember); }
.involved__card:nth-child(2n)::before { background: var(--sky); }
.involved__heading { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.95rem); letter-spacing: -0.01em; color: var(--ink-text); }
.involved__body { margin: 0.7rem 0 1.5rem; color: var(--ink-dim); }
.involved .btn--ghost { color: var(--indigo); border-color: rgba(42,15,69,0.22); }
.involved .btn--ghost:hover { background: rgba(42,15,69,0.05); border-color: var(--indigo); }
@media (min-width: 700px) { .involved__inner { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FOOTER — sponsor logos + social icons
   ============================================================ */
.site-footer { padding: clamp(3.5rem, 7vw, 5.5rem) var(--gut) 2.5rem; border-top: 1px solid var(--line); background: var(--site-bg, linear-gradient(180deg, transparent, rgba(16,5,30,0.7))); }
.site-footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.site-footer__brand { display: flex; align-items: center; gap: 1.2rem; }
.site-footer__brand img { height: 104px; width: auto; }
.site-footer__tagline { text-align: center; max-width: 640px; margin: 0 auto 1.4rem; color: var(--cream-dim); font-size: 0.95rem; line-height: 1.5; }
.site-footer__social { display: flex; gap: 0.7rem; }
.social-icon { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--cream-dim); transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { color: var(--ember); border-color: var(--ember); transform: translateY(-2px); }

/* sponsors band (its own section above the Get Involved callouts) */
.sponsors { padding: var(--section-pad) var(--gut); }
.sponsors__inner { max-width: var(--maxw); margin: 0 auto; }
.sponsors__label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--indigo); text-align: center; margin-bottom: 1.8rem; }
.sponsors__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.sponsor { background: #fff; border: 1px solid rgba(42,15,69,0.07); border-radius: 14px; height: 88px; display: flex; align-items: center; justify-content: center; padding: 12px 18px; box-shadow: var(--shadow-soft); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.sponsor a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.sponsor img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sponsor:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.6); }
.sponsor__name { color: var(--ink-text); font-weight: 700; font-size: 0.85rem; text-align: center; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.7rem; margin-bottom: 1.1rem; }
.site-footer__links a { font-size: 0.82rem; font-weight: 600; color: var(--cream-dim); letter-spacing: 0.04em; transition: color 0.2s ease; }
.site-footer__links a:hover { color: var(--ember); }
.site-footer__legal { max-width: var(--maxw); margin: 0 auto; text-align: center; color: var(--cream-faint); font-size: 0.82rem; }
.site-footer__legal p { margin-top: 0.4rem; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
/* deep indigo + white ring so it stays visible over the coral/red sections */
.floating-cta { position: fixed; right: 1rem; bottom: 1rem; z-index: 55; background: var(--indigo); color: #fff; border: 2px solid rgba(255,255,255,0.9); font-weight: 700; font-size: 0.9rem; padding: 0.85rem 1.4rem; border-radius: 100px; box-shadow: 0 16px 40px -12px rgba(0,0,0,0.55); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity 0.4s ease, transform 0.4s ease; }
.floating-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.todo-note { text-align: center; color: var(--cream-faint); }

/* ============================================================
   REVEAL PRIMITIVE
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   FESTIVE DECOR — firework bursts, string-light garland, palms
   ============================================================ */
/* firework bursts (JS appends .firework > i into [data-fireworks]) */
.firework { position: absolute; width: 0; height: 0; z-index: 1; }
.firework i {
  position: absolute; left: 0; top: 0; width: 4px; height: 4px; border-radius: 50%;
  opacity: 0; animation: spark 1.2s ease-out forwards;
}
@keyframes spark {
  0% { transform: translate(0,0) scale(1); opacity: 1; }
  72% { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.3); opacity: 0; }
}

.welcome, .attractions, .involved { position: relative; }

/* coastal palm trees — lit (dark fronds + gold lights so they read on dark AND bright),
   framing the hero / welcome / map; gentle sway. */
/* ============================================================
   CALIFORNIA-CHRISTMAS SCENE — lit palms + crescent moon + Santa's sleigh
   ============================================================ */
/* lush palm: dense radial crown (CSS mask = shape), dark silhouette */
.palm {
  position: absolute; bottom: 0; z-index: 0; pointer-events: none;
  width: clamp(165px, 28vw, 330px); aspect-ratio: 1;
  background-color: #1C1030; opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.28));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='%23000'%3E%3Cpath d='M93 62C91 108 89 150 96 194 103 150 107 108 107 62Z'/%3E%3Cpath d='M100 58C72 56 34 70 12 98 36 76 70 68 100 68Z'/%3E%3Cpath d='M100 56C70 50 36 52 10 72 38 56 72 60 100 66Z'/%3E%3Cpath d='M100 55C72 40 44 30 20 40 48 40 78 50 100 64Z'/%3E%3Cpath d='M100 54C80 32 60 18 44 12 64 26 90 44 100 60Z'/%3E%3Cpath d='M100 53C92 30 86 14 82 6 98 18 102 34 100 56Z'/%3E%3Cpath d='M100 53C108 30 114 14 118 6 102 18 98 34 100 56Z'/%3E%3Cpath d='M100 54C120 32 140 18 156 12 136 26 110 44 100 60Z'/%3E%3Cpath d='M100 55C128 40 156 30 180 40 152 40 122 50 100 64Z'/%3E%3Cpath d='M100 56C130 50 164 52 190 72 162 56 128 60 100 66Z'/%3E%3Cpath d='M100 58C128 56 166 70 188 98 164 76 130 68 100 68Z'/%3E%3Cpath d='M100 58C84 48 66 48 52 54 68 46 86 52 100 64Z'/%3E%3Cpath d='M100 58C116 48 134 48 148 54 132 46 114 52 100 64Z'/%3E%3Ccircle cx='95' cy='64' r='5'/%3E%3Ccircle cx='105' cy='65' r='5'/%3E%3C/g%3E%3C/svg%3E") bottom center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='%23000'%3E%3Cpath d='M93 62C91 108 89 150 96 194 103 150 107 108 107 62Z'/%3E%3Cpath d='M100 58C72 56 34 70 12 98 36 76 70 68 100 68Z'/%3E%3Cpath d='M100 56C70 50 36 52 10 72 38 56 72 60 100 66Z'/%3E%3Cpath d='M100 55C72 40 44 30 20 40 48 40 78 50 100 64Z'/%3E%3Cpath d='M100 54C80 32 60 18 44 12 64 26 90 44 100 60Z'/%3E%3Cpath d='M100 53C92 30 86 14 82 6 98 18 102 34 100 56Z'/%3E%3Cpath d='M100 53C108 30 114 14 118 6 102 18 98 34 100 56Z'/%3E%3Cpath d='M100 54C120 32 140 18 156 12 136 26 110 44 100 60Z'/%3E%3Cpath d='M100 55C128 40 156 30 180 40 152 40 122 50 100 64Z'/%3E%3Cpath d='M100 56C130 50 164 52 190 72 162 56 128 60 100 66Z'/%3E%3Cpath d='M100 58C128 56 166 70 188 98 164 76 130 68 100 68Z'/%3E%3Cpath d='M100 58C84 48 66 48 52 54 68 46 86 52 100 64Z'/%3E%3Cpath d='M100 58C116 48 134 48 148 54 132 46 114 52 100 64Z'/%3E%3Ccircle cx='95' cy='64' r='5'/%3E%3Ccircle cx='105' cy='65' r='5'/%3E%3C/g%3E%3C/svg%3E") bottom center / contain no-repeat;
}
.palm--l { left: -26px; transform-origin: bottom left; animation: sway 7s ease-in-out infinite; }
.palm--r { right: -26px; transform: scaleX(-1); transform-origin: bottom right; animation: sway-r 8s ease-in-out infinite; }
/* twinkling string-light bulbs wrapped on each palm crown (JS-seeded) */
.palm-lights { position: absolute; bottom: 0; z-index: 0; pointer-events: none; width: clamp(165px, 28vw, 330px); aspect-ratio: 1; }
.palm-lights--l { left: -26px; }
.palm-lights--r { right: -26px; }
.palm-lights i { position: absolute; width: 5px; height: 5px; margin: -2.5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 7px 1px currentColor; opacity: 0; animation: twinkle 2.4s ease-in-out infinite; }

/* crescent moon */
.xmas-moon {
  position: absolute; top: clamp(1.4rem, 5vh, 3.5rem); right: clamp(2.2rem, 9vw, 8rem); z-index: 0; pointer-events: none;
  width: 44px; height: 50px; background: center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(252,227,168,0.65));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 92'%3E%3Cpath fill='%23FCE3A8' d='M40 6A40 40 0 1 0 40 86A31 31 0 1 1 40 6Z'/%3E%3C/svg%3E");
}

@keyframes sway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(0deg); } }
@keyframes sway-r { 0%,100% { transform: scaleX(-1) rotate(-3deg); } 50% { transform: scaleX(-1) rotate(0deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .sponsors__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  .igloos__inner { grid-template-columns: 1fr 1.05fr; }
  .parties__inner { grid-template-columns: 1.05fr 1fr; }
  .parties__copy { order: 2; }   /* copy left, media right -> mirror of igloos */
  .parties__media { order: 1; }
}

/* Mobile nav: links collapse into a drawer under the bar. */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; margin-left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(30,10,51,0.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  }
  .site-nav.is-open { max-height: 60vh; }
  .site-nav__link { padding: 1rem var(--gut); border-top: 1px solid var(--line-soft); font-size: 1rem; }
  .site-nav__link::after { display: none; }
  .site-header__cta { display: none; }   /* floating CTA covers mobile */
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@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; }
  .reveal { opacity: 1; transform: none; }
  .journey__map img { opacity: 1; transform: none; }
  .journey__map.is-zoomed .journey__zoom { transform: none; }
  .stop { opacity: 1; }
  .stop .stop__ring { transform: translate(-50%,-50%) scale(1); }
  .atmosphere__snow, .atmosphere__blob { display: none; }
  .hero__video { display: none; }
  .hero { background: linear-gradient(180deg, rgba(58,26,94,0.7), var(--ink)); }
}

/* ============================================================
   GLOBAL HEADLINE SIZE — CMS "Site Design → Headline size".
   --heading-scale is set on :root by applyTheme() (default 1 = unchanged).
   Each display heading = its original clamp() × the scale.
   ============================================================ */
:root { --heading-scale: 1; }
.welcome__headline { font-size: calc(clamp(2.2rem, 6vw, 4rem) * var(--heading-scale)); }
.section-head__title { font-size: calc(clamp(2.2rem, 5.6vw, 3.7rem) * var(--heading-scale)); }
.split__heading { font-size: calc(clamp(2rem, 5vw, 3rem) * var(--heading-scale)); }
.showcase__heading { font-size: calc(clamp(2.4rem, 7vw, 4.6rem) * var(--heading-scale)); }
.promo__heading { font-size: calc(clamp(2rem, 5.5vw, 3.4rem) * var(--heading-scale)); }
.journey__heading { font-size: calc(clamp(2.2rem, 5.6vw, 3.7rem) * var(--heading-scale)); }
.gallery__heading { font-size: calc(clamp(2rem, 5.4vw, 3.4rem) * var(--heading-scale)); }
.mosaic__heading { font-size: calc(clamp(2.2rem, 6vw, 3.8rem) * var(--heading-scale)); }
.charity__heading { font-size: calc(clamp(1.7rem, 4vw, 2.6rem) * var(--heading-scale)); }
.waitlist__heading { font-size: calc(clamp(2rem, 5vw, 3.2rem) * var(--heading-scale)); }
.igloos__heading, .parties__heading { font-size: calc(clamp(2rem, 5vw, 3rem) * var(--heading-scale)); }
.involved__heading { font-size: calc(clamp(1.4rem, 3vw, 1.95rem) * var(--heading-scale)); }

/* ============================================================
   CLIENT EDITS (2026-08-13)
   ============================================================ */
/* Text that sits above a headline (eyebrows) → yellow on the dark theme */
.tone-night .welcome__eyebrow,
.tone-night .welcome__date-kicker,
.tone-night .promo__eyebrow,
.tone-night .waitlist__copy .eyebrow { color: var(--gold); }
/* Blue/indigo text sitting directly on the dark purple → white */
.tone-night .faq-group__label,
.tone-night .sponsors__label,
.tone-night .countdown__live { color: #fff; }
/* Pink glow on the Welcome "Explore the Park" button */
.welcome__cta .btn--ghost { box-shadow: 0 0 22px -2px rgba(255,79,147,0.7), 0 0 44px -10px rgba(255,79,147,0.5); }
.welcome__cta .btn--ghost:hover { box-shadow: 0 0 30px 0 rgba(255,79,147,0.9), 0 0 58px -8px rgba(255,79,147,0.55); }
/* Global button color (Site Design → Button color) on all solid buttons; ghost (Explore the Park) excluded */
.btn--ticket, .split__inner .btn--ticket { background: var(--btn-bg, linear-gradient(135deg, var(--ember), var(--ember-deep))); color: var(--btn-text, #1E0A33); }
.floating-cta { background: var(--btn-bg, var(--indigo)); color: var(--btn-text, #fff); }
/* Per-card gold ALL-CAPS tagline (deep gold so it stays legible on the cream card) */
.card__caps { text-transform: uppercase; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.05em; line-height: 1.45; color: #e1a950; margin-top: 0.55rem; }
/* Private-event cards (the ones with a gold tagline) get a dark body so the bright #e1a950 gold reads */
.card:has(.card__caps) { background: var(--night); border-color: rgba(255,255,255,0.12); }
.card:has(.card__caps) .card__title { color: var(--cream); }
.card:has(.card__caps) .card__blurb { color: var(--cream-dim); }
.card:has(.card__caps) .card__more { color: #e1a950; }

/* Card CTA button (e.g. "Plan Your Event") sits below the card, inside the same grid cell */
.card-wrap { display: flex; flex-direction: column; flex: 1 1 280px; max-width: 340px; }
/* Park Map placed as a draggable section: transparent wrapper, the map element brings its own styling */
.map-holder { padding: 0; background: transparent; }
.card-wrap > .card { flex: 1 1 auto; }
.card__cta { margin-top: 0.9rem; text-align: center; }

/* ============================================================
   PLAN YOUR EVENT — private-events inquiry form
   ============================================================ */
.partyform { padding: var(--section-pad) var(--gut); }
.partyform__inner { max-width: 780px; margin: 0 auto; }
.partyform__head { text-align: center; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.partyform__heading { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; color: var(--cream); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; }
.partyform__intro { color: var(--cream-dim); max-width: 620px; margin: 0.9rem auto 0; }
.partyform__form { display: flex; flex-direction: column; gap: 1.6rem; background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-card); }
.partyform__fs { border: 0; padding: 0; margin: 0; }
.partyform__legend { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--gold); margin-bottom: 0.9rem; padding: 0; }
.partyform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field__label { font-size: 0.82rem; font-weight: 700; color: var(--cream-dim); letter-spacing: 0.01em; }
.field__hint { font-size: 0.75rem; color: var(--cream-faint); margin-top: 0.1rem; }
.partyform__form input, .partyform__form select, .partyform__form textarea {
  width: 100%; padding: 0.72rem 0.85rem; border-radius: 10px; border: 1px solid rgba(42,15,69,0.15);
  background: #fff; color: #20102E; font: inherit; font-size: 0.95rem;
}
.partyform__form textarea { resize: vertical; min-height: 96px; }
.partyform__form input::placeholder, .partyform__form textarea::placeholder { color: #6b5a7a; }
.partyform__form input:focus, .partyform__form select:focus, .partyform__form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.partyform__form .btn--ticket { align-self: center; }
.partyform__form .btn--ticket:disabled { opacity: 0.55; cursor: not-allowed; }
.partyform__status { text-align: center; color: var(--cream-dim); min-height: 1.2em; }
.partyform__form.is-success .partyform__status { color: var(--gold); font-weight: 700; font-size: 1.08rem; }
@media (max-width: 560px) { .partyform__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PLAN YOUR EVENT — popup modal (holds the inquiry form)
   ============================================================ */
.party-modal { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: clamp(0.6rem, 3vw, 2rem); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.party-modal.is-open { opacity: 1; visibility: visible; }
.party-modal__backdrop { position: absolute; inset: 0; background: rgba(16,5,30,0.8); backdrop-filter: blur(8px); }
.party-modal__panel {
  position: relative; width: min(760px, 100%); max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
  padding: clamp(1.4rem, 4vw, 2.6rem); transform: translateY(16px) scale(0.98); transition: transform 0.3s ease;
}
.party-modal.is-open .party-modal__panel { transform: translateY(0) scale(1); }
.party-modal__close {
  position: sticky; top: 0; float: right; z-index: 2; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,0.1); color: var(--cream); font-size: 1.5rem;
  line-height: 1; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.party-modal__close:hover { background: var(--ember); transform: rotate(90deg); }
/* the form inside the modal uses the modal panel as its container (no nested panel) */
.party-modal .partyform__inner { max-width: none; }
.party-modal .partyform__head { margin-bottom: 1.3rem; }
.party-modal .partyform__form { background: transparent; border: 0; box-shadow: none; padding: 0; }
