/* ============================================================
   MEMORA EXPERIENCE — Shared Stylesheet
   Single source of truth for tokens, components, and pages.
   Mobile-first. No hardcoded hex — everything via :root vars.
   ============================================================ */

/* ── 1. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 2. DESIGN TOKENS (:root) ──────────────────────────────── */
:root {
  /* Brand color */
  --gold:            #C8996A;  /* [VERIFY] */
  --gold-deep:       #B9854E;  /* [VERIFY] */
  --gold-light:      #D9B889;  /* [VERIFY] */

  /* Two-tone heading accent */
  --accent-grad: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-deep) 100%); /* [VERIFY direction] */

  /* Closing-CTA section background */
  --cta-grad: linear-gradient(180deg, #CDA277 0%, #BC8A57 100%); /* [VERIFY] */

  /* Ink / text */
  --navy:            #18243F;  /* [VERIFY] */
  --text:            #2A3346;  /* [VERIFY] */
  --text-muted:      #5E6B7B;  /* [VERIFY] */
  --text-faint:      #93A0AD;  /* [VERIFY] */

  /* Surfaces */
  --bg-cream:        #F7F4ED;  /* [VERIFY] */
  --bg-white:        #FFFFFF;
  --border:          #EAE4D9;  /* [VERIFY] */
  --border-soft:     #F0EBE2;

  /* Footer (dark) */
  --footer-bg:       #151D32;  /* [VERIFY] */
  --footer-bg-2:     #1B2440;
  --footer-text:     #AEB6C4;
  --footer-heading:  #7E8AA0;
  --footer-divider:  rgba(255,255,255,.08);

  /* On dark / on caramel */
  --on-dark:         #FFFFFF;
  --on-dark-muted:   rgba(255,255,255,.78);

  /* Radius */
  --r-pill:   999px;
  --r-card:   24px;
  --r-event:  22px;
  --r-img:    18px;
  --r-input:  14px;
  --r-icon:   12px;

  /* Shadows (warm-tinted) */
  --sh-card:   0 24px 60px rgba(46,33,18,.08);
  --sh-soft:   0 12px 30px rgba(46,33,18,.06);
  --sh-img:    0 18px 40px rgba(26,30,46,.16);
  --sh-btn:    0 10px 22px rgba(200,153,106,.35);
  --sh-stack:  6px 6px 0 rgba(0,0,0,.04);

  /* Type — TODO: confirm exact families from live site DevTools */
  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing scale (4px base) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Layout */
  --container:  1240px; /* [VERIFY] */
  --gutter:     24px;
  --section-y:  clamp(64px, 9vw, 128px);

  /* Motion */
  --ease:      cubic-bezier(.22,.61,.36,1);
  --t-fast:    .18s;
  --t-base:    .3s;
}

/* ── 3. LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-pad {
  padding-block: var(--section-y);
}

/* ── 4. TYPOGRAPHY UTILITIES ────────────────────────────────── */
.eyebrow {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.01em;
}

/* Gold gradient text treatment — used on 2nd span of .h2 and hero rotating word */
.grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold); /* fallback */
}

/* ── 5. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Primary — gold fill, white text */
.btn--primary {
  background: var(--gold);
  color: var(--on-dark);
  box-shadow: var(--sh-btn), var(--sh-stack);
}
.btn--primary:hover {
  background: var(--gold-deep);
  box-shadow: var(--sh-btn);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}

/* Ticket variant — hero "Get Tickets" with concave notch on each side */
.btn--ticket {
  background: var(--gold);
  color: var(--on-dark);
  padding: 16px 42px;
  font-size: 1rem;
  border-radius: var(--r-pill);
  /* Notch: circular bite from left & right centres */
  -webkit-mask-image:
    radial-gradient(circle at 100% 50%, transparent 10px, #000 11px),
    radial-gradient(circle at 0%   50%, transparent 10px, #000 11px);
  -webkit-mask-composite: source-in, source-over;
  mask-image:
    radial-gradient(circle at 100% 50%, transparent 10px, #000 11px),
    radial-gradient(circle at 0%   50%, transparent 10px, #000 11px);
  mask-composite: intersect, add;
  /* drop-shadow respects the mask outline */
  filter: drop-shadow(0 8px 20px rgba(200,153,106,.45));
}
.btn--ticket:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 26px rgba(200,153,106,.55));
}
.btn--ticket:active { transform: translateY(0); }

/* White fill, gold text — CTA "Explore Events", featured card */
.btn--white {
  background: var(--bg-white);
  color: var(--gold-deep);
  box-shadow: var(--sh-stack);
}
.btn--white:hover {
  background: var(--bg-cream);
  transform: translateY(-1px);
}
.btn--white:active { transform: translateY(0); }

/* Ghost outline — CTA "Get in Touch" */
.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--on-dark);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-1px);
}
.btn--ghost:active { transform: translateY(0); }

/* Text link style — muted slate with up-right arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.text-link:hover {
  color: var(--navy);
}
.text-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── 6. HEADER ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  width: 100%;
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}

/* Scrolled state — solid white */
.header.is-scrolled {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 20px rgba(26,30,46,.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Nav left */
.header__nav {
  display: none; /* mobile: hidden; shown on desktop */
  align-items: center;
  gap: var(--s-7);
}

.header__link {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--s-1);
  padding: 4px 8px;
  border-radius: 6px;
  position: relative;
  transition: color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.header__link:hover { color: var(--gold); }
.header__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Gold dot beneath active nav link */
.header__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Events dropdown wrapper */
.header__dropdown-wrap {
  position: relative;
}

.header__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -8px;
  background: var(--bg-white);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(26,30,46,.13), 0 4px 16px rgba(26,30,46,.06);
  border: 1px solid var(--border-soft);
  padding: var(--s-4);
  width: 320px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  z-index: 200;
}

/* Upward caret notch pointing at the Events nav item */
.header__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 30px;
  width: 11px;
  height: 11px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
  border-radius: 2px 0 0 0;
  transform: rotate(45deg);
}

/* Invisible hover bridge — fills the 14px gap between trigger and panel so
   moving the mouse downward never breaks the :hover on the wrap */
.header__dropdown::after {
  content: '';
  position: absolute;
  top: -14px;
  left: -8px;
  right: -8px;
  height: 14px;
}

/* Open on hover (pointer devices) */
@media (hover: hover) {
  .header__dropdown-wrap:hover .header__dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header__dropdown-wrap:hover .header__chevron {
    transform: rotate(180deg);
  }
}

/* Open via JS (touch / programmatic toggle) */
.header__dropdown-wrap.is-open .header__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header__dropdown-wrap.is-open .header__chevron {
  transform: rotate(180deg);
}

/* Dropdown header block */
.dropdown__head {
  padding: var(--s-1) var(--s-2) var(--s-3);
}
.dropdown__head-title {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-1);
}
.dropdown__head-sub {
  font-family: var(--font-body);
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.dropdown__divider {
  height: 1px;
  background: var(--border-soft);
  margin-block: var(--s-3);
}

/* Dropdown rows */
.dropdown__row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2);
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease);
}
.dropdown__row + .dropdown__row { margin-top: var(--s-1); }
.dropdown__row:hover { background: var(--bg-cream); }
.dropdown__row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 12px;
}

/* Icon square */
.dropdown__icon-sq {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.dropdown__icon-sq--rot45 svg { transform: rotate(45deg); }

.dropdown__row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dropdown__row-title {
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.dropdown__row-title--gold { color: var(--gold); }
.dropdown__row-sub {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Full-width footer CTA inside dropdown */
.dropdown__footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: var(--s-3);
  padding: 11px var(--s-5);
  font-size: .88rem;
}

/* Chevron icon in nav */
.header__chevron {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform var(--t-fast) var(--ease), color var(--t-base) var(--ease);
}

/* No transition for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .header__dropdown { transition: none; }
}

/* Logo lockup */
.header__logo-link {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.logo__globe {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1;
}

.logo__mem { color: var(--navy); transition: color var(--t-base) var(--ease); }
.logo__ora { color: var(--gold); }

.logo__exp {
  font-family: var(--font-display);
  font-size: .52rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--text-muted);
  margin-top: 3px;
  transition: color var(--t-base) var(--ease);
}

/* On dark logo */
.logo--dark .logo__mem { color: var(--on-dark); }
.logo--dark .logo__ora { color: var(--gold); }
.logo--dark .logo__exp { color: var(--footer-text); border-color: var(--footer-divider); }

/* PNG logo — single transparent asset, works in both header states */
.header__logo-png {
  width: 160px;
  height: auto;
  display: block;
}

/* PNG logo in footer brand column */
.footer__logo-png {
  width: 140px;
  height: auto;
  display: block;
}

/* Header right: CTA + hamburger */
.header__right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.header__cta {
  display: none; /* mobile: hidden; shown on desktop */
  padding: 10px 20px;
  font-size: .875rem;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

/* Hamburger — mobile only */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-fast) var(--ease),
              background var(--t-base) var(--ease);
}

/* FIX 7 — Mobile drawer: compact panel (auto-height), not full-screen */
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: auto;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  background: var(--bg-white);
  z-index: 99;
  padding: var(--s-6) var(--gutter);
  flex-direction: column;
  gap: var(--s-5);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 12px 32px rgba(24,36,63,.12);
}
.header__mobile-nav.is-open { display: flex; }

/* Mobile events accordion (within the drawer) */
.header__mobile-events {
  display: flex;
  flex-direction: column;
}
.header__mobile-events-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}
.header__mobile-events-btn .header__chevron {
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease);
}
.header__mobile-events-btn[aria-expanded="true"] .header__chevron {
  transform: rotate(180deg);
}
.header__mobile-events-panel {
  display: flex;
  flex-direction: column;
  padding-left: var(--s-5);
  padding-top: var(--s-3);
  gap: var(--s-3);
}
/* Override UA [hidden]{display:none} which loses to the class rule above */
.header__mobile-events-panel[hidden] { display: none; }
.header__mobile-sub {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: var(--s-1) 0;
  transition: color var(--t-fast) var(--ease);
}
.header__mobile-sub:hover,
.header__mobile-sub:focus-visible { color: var(--gold); }
.header__mobile-sub--gold { color: var(--gold); }

/* Desktop overrides */
@media (min-width: 901px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__hamburger { display: none; }
}

/* ── Transparent (top-of-page, dark hero) state ─────────────── */
.header:not(.is-scrolled) .header__link              { color: rgba(255,255,255,.88); }
.header:not(.is-scrolled) .header__link:hover        { color: #fff; background: rgba(255,255,255,.1); }
.header:not(.is-scrolled) .header__link--active::after { background: rgba(255,255,255,.75); }
.header:not(.is-scrolled) .header__chevron           { color: rgba(255,255,255,.65); }
.header:not(.is-scrolled) .header__hamburger span    { background: #fff; }
.header:not(.is-scrolled) .header__cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  box-shadow: none;
}
.header:not(.is-scrolled) .header__cta:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .header { transition: none; }
  .header__link, .header__cta,
  .header__chevron, .header__hamburger span { transition: none; }
}

/* FIX 1 — Force dark ink inside mobile drawer regardless of transparent-header state.
   Specificity (.header .header__mobile-nav .*) = (0,3,0) beats the transparent rule (0,3,0)
   by cascade order (placed after). */
.header .header__mobile-nav .header__link,
.header .header__mobile-nav .header__chevron {
  color: var(--navy);
}
.header .header__mobile-nav .header__link:hover {
  color: var(--gold);
  background: none;
}

/* FIX 2 — Suppress active-dot pseudo-element inside the mobile drawer */
.header .header__mobile-nav .header__link--active::after {
  display: none;
}

/* ── 7. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bg-cream);
  overflow: hidden;
  min-height: clamp(580px, 90vh, 860px);
  display: flex;
  align-items: center;
}

/* Subtle radial glow behind center content */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, rgba(200,153,106,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 30% 60%, rgba(200,153,106,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(580px, 90vh, 860px);
  padding-top: var(--s-9);
  padding-bottom: var(--s-9);
}

.hero__content {
  text-align: center;
  max-width: 760px;
  position: relative;
  z-index: 3;
}

/* Eyebrow */
.hero__content .eyebrow {
  margin-bottom: var(--s-4);
}

/* H1 */
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: var(--s-5);
  display: block;
}

/* Subtitle */
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s-5);
  max-width: 580px;
  margin-inline: auto;
}

/* Countdown line — plain centered text, no pill */
.hero__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: var(--s-6);
}
.hero__countdown-label {
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
}
.hero__countdown-sep {
  color: var(--border);
  font-weight: 300;
}
.hero__countdown-event {
  color: var(--navy);
  font-weight: 600;
}
.hero__countdown-time {
  color: var(--gold);
  font-weight: 700;
}

/* Action buttons row */
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.hero__text-link {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.hero__text-link:hover { color: var(--gold); border-color: var(--gold); }
.hero__text-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Stats row inside hero — same items/dividers as .stats-bar but no white card */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  flex-wrap: wrap;
  margin-top: var(--s-7);
}
.hero__stats .stats-bar__div {
  height: 36px;
}
@media (max-width: 600px) {
  .hero { align-items: flex-start; min-height: auto; }
  .hero__container { padding-top: 72px; padding-bottom: var(--s-6); min-height: auto; }
  .hero__stats .stats-bar__div { display: none; }
  .hero__stats { gap: var(--s-7); margin-top: var(--s-6); }
}

/* ── Floating hero tiles (6 tiles matching OG layout) ───────── */
/* TODO: add real photo assets to assets/img/ — see tile comments */

/* Float keyframe — rotation baked in via --rot so tilt is never lost */
@keyframes tile-float {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50%       { transform: rotate(var(--rot, 0deg)) translateY(-12px); }
}

.hero__tile {
  position: absolute;
  border-radius: var(--r-img);
  box-shadow: var(--sh-img);
  overflow: hidden;
  background: #C9BFB0; /* warm tan placeholder */
  z-index: 1;
  background-size: cover;
  background-position: center;
  animation: tile-float var(--float-dur, 6s) ease-in-out var(--float-delay, 0s) infinite;
}

/* LEFT — tile 1 (top-left) */
.hero__tile--1 {
  width: clamp(90px, 10vw, 140px);
  height: clamp(130px, 15vw, 200px);
  left: clamp(8px, 3vw, 32px);
  top: 12%;
  --rot: -4deg;
  transform: rotate(-4deg);
  --float-dur: 5s;
  --float-delay: 0s;
  background-image: url(../images/home-07-planetarium-dome.jpg);
}
/* LEFT — tile 2 (mid-left) */
.hero__tile--2 {
  width: clamp(75px, 8.5vw, 115px);
  height: clamp(100px, 12vw, 160px);
  left: clamp(70px, 10vw, 155px);
  top: 38%;
  --rot: 3deg;
  transform: rotate(3deg);
  --float-dur: 6.5s;
  --float-delay: -1.8s;
  background-image: url(../images/home-01-planetarium-dusk.jpg);
}
/* LEFT — tile 3 (bottom-left) */
.hero__tile--3 {
  width: clamp(70px, 8vw, 108px);
  height: clamp(90px, 11vw, 148px);
  left: clamp(8px, 2.5vw, 28px);
  bottom: 12%;
  --rot: 5deg;
  transform: rotate(5deg);
  --float-dur: 5.8s;
  --float-delay: -3.2s;
  background-image: url(../images/planetarium-lobby.jpg);
}
/* RIGHT — tile 4 (top-right) */
.hero__tile--4 {
  width: clamp(90px, 10vw, 140px);
  height: clamp(130px, 15vw, 200px);
  right: clamp(8px, 3vw, 32px);
  top: 14%;
  --rot: 4deg;
  transform: rotate(4deg);
  --float-dur: 7s;
  --float-delay: -0.6s;
  background-image: url(../images/yacth4.jpg);
}
/* RIGHT — tile 5: boat-party deck (mid-right) */
.hero__tile--5 {
  width: clamp(75px, 8.5vw, 115px);
  height: clamp(100px, 12vw, 155px);
  right: clamp(70px, 10vw, 150px);
  top: 42%;
  --rot: -3.5deg;
  transform: rotate(-3.5deg);
  --float-dur: 5.5s;
  --float-delay: -2.4s;
  background-image: url('../images/memora boat party.webp');
}
/* RIGHT — tile 6 (bottom-right) */
.hero__tile--6 {
  width: clamp(70px, 8vw, 108px);
  height: clamp(90px, 11vw, 148px);
  right: clamp(8px, 2.5vw, 28px);
  bottom: 12%;
  --rot: -5deg;
  transform: rotate(-5deg);
  --float-dur: 6.2s;
  --float-delay: -1.1s;
  background-image: url(../images/home-05-planetarium-performances.jpg);
}

/* FIX 4 — Hide all hero tiles on mobile (video/bg-image will replace later) */
@media (max-width: 600px) {
  .hero__tile { display: none; }
}

/* Respect reduced-motion preference — static tiles, no float */
@media (prefers-reduced-motion: reduce) {
  .hero__tile { animation: none; }
}

/* ── Placeholder / coming-soon section (stub pages) ─────────── */
.coming-soon-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: var(--section-y);
}
.coming-soon-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.coming-soon-section .hero__sub { max-width: 480px; }

/* ── 8. STATS BAR (light) ───────────────────────────────────── */
.stats-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding-block: var(--s-7);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-1);
}

.stats-bar__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.stats-bar__cap {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.stats-bar__div {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-bar__div { display: none; }
  .stats-bar__inner { gap: var(--s-7); }
}

/* ── 9. EVENTS SECTION ──────────────────────────────────────── */
.events-section {
  padding-block: var(--section-y);
}

.events-section__head {
  margin-bottom: clamp(var(--s-8), 6vw, 72px);
}

/* Featured full-width on top; 2-up cards below */
.events-section__grid {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

/* Featured card */
.featured-card {
  position: relative;
  border-radius: var(--r-event);
  overflow: hidden;
  min-height: clamp(360px, 36vw, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy); /* fallback while TODO image is absent */
}

.featured-card__bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/home-06-festival-night-market.jpg);
  background-color: var(--footer-bg-2);
  background-size: cover;
  background-position: center;
}

.featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,30,.92) 0%, rgba(10,14,30,.35) 55%, rgba(10,14,30,.1) 100%);
}

.featured-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: var(--s-6);
  gap: var(--s-4);
}

.featured-card__top { align-self: flex-start; }

/* Plain text badge — no pill background */
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--on-dark-muted);
}
.featured-badge__icon {
  width: 13px;
  height: 13px;
  color: var(--on-dark-muted);
  flex-shrink: 0;
}
.featured-badge__label { text-transform: uppercase; letter-spacing: .14em; }
.featured-badge__sep   { color: rgba(255,255,255,.3); }
.featured-badge__time  { color: var(--gold); font-weight: 600; }

.featured-card__bottom { }

.featured-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: var(--s-3);
  line-height: 1.1;
}

.featured-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.featured-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--on-dark-muted);
}
.featured-card__meta-item svg {
  width: 14px; height: 14px; flex-shrink: 0;
}

.featured-card__cta {
  width: 100%;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  padding: 15px;
  font-size: 1rem;
}
.featured-card__cta:hover { background: var(--bg-cream); }

/* 2-up event cards */
.event-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

@media (min-width: 601px) {
  .event-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.event-card {
  position: relative;
  border-radius: var(--r-event);
  overflow: hidden;
  min-height: clamp(260px, 28vw, 320px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy);
}

.event-card__bg {
  position: absolute;
  inset: 0;
  /* TODO: event image */
  background-size: cover;
  background-position: center;
}

.event-card--events .event-card__bg {
  background-image: url(../images/home-08-festival-podium.jpg);
  background-color: #2d4870;
  background-size: cover;
  background-position: center;
}
.event-card--trips .event-card__bg {
  background-image: url(../images/home-02-fitness-class.jpg);
  background-color: #3d3070;
  background-size: cover;
  background-position: center;
}

.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,28,.88) 0%, rgba(8,12,28,.2) 60%, transparent 100%);
}

.event-card__inner {
  position: relative;
  z-index: 2;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

/* Plain badge — no pill */
.event-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.event-card__badge--coming-soon {
  color: rgba(255,255,255,.45);
}

.event-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.1;
}

.event-card__desc {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

.event-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 500;
  color: var(--on-dark);
  margin-top: var(--s-1);
  transition: color var(--t-fast) var(--ease), gap var(--t-fast) var(--ease);
}
.event-card__link:hover { color: rgba(255,255,255,.7); gap: var(--s-2); }
.event-card__link--disabled {
  color: rgba(255,255,255,.3);
  cursor: default;
  pointer-events: none;
}
.event-card__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Text links row — centered */
.events-section__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

/* ── 10. WORK WITH US / FORM SECTION ────────────────────────── */
.work-section {
  padding-block: var(--section-y);
  background: var(--bg-cream);
}

.work-section__head {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: var(--s-7);
  text-align: center;
}

.work-section__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--s-4);
}

/* Form card */
.form-card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  padding: clamp(var(--s-6), 4vw, 56px);
  max-width: 740px;
  margin-inline: auto;
  border: 1px solid var(--border-soft);
}

/* Toggle */
.form-toggle {
  display: inline-flex;
  background: var(--bg-cream);
  border-radius: var(--r-pill);
  padding: 5px;
  margin-bottom: var(--s-7);
  border: 1px solid var(--border);
  gap: 4px;
}

.form-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}
.form-toggle__btn svg {
  width: 17px; height: 17px; flex-shrink: 0;
  transition: color var(--t-fast) var(--ease);
}
.form-toggle__btn--active {
  background: var(--bg-white);
  color: var(--navy);
  box-shadow: var(--sh-soft);
}
.form-toggle__btn--active svg { color: var(--gold); }
.form-toggle__btn:not(.form-toggle__btn--active):hover {
  color: var(--text);
}
/* FIX 3 — Mobile: form toggle fits the card width (no horizontal overflow) */
@media (max-width: 600px) {
  .form-card { overflow-x: hidden; }
  .form-toggle {
    display: flex;
    width: 100%;
  }
  .form-toggle__btn {
    flex: 1;
    justify-content: center;
    padding: 10px 8px;
    white-space: normal;
    text-align: center;
  }
}

.form-toggle__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}

@media (min-width: 601px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-field--full { grid-column: 1 / -1; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.form-field label {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}

.form-field .req {
  color: var(--gold);
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-input);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,153,106,.15);
}
.form-field input.is-error,
.form-field select.is-error,
.form-field textarea.is-error {
  border-color: #d94f4f;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%2393A0AD' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-error-msg {
  font-size: .8rem;
  color: #d94f4f;
  margin-top: 2px;
  display: none;
}
.form-field.is-error .form-error-msg { display: block; }

/* Submit button row */
.form-submit-row {
  margin-top: var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.form-submit-row .btn {
  padding: 16px 36px;
  font-size: 1rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }
}

/* Below-card contact + privacy */
.work-section__contact {
  margin-top: var(--s-5);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}
/* Align icon SVG and link/text within each contact item */
.work-section__contact span:not(.work-section__contact-sep) {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.work-section__contact svg { flex-shrink: 0; color: var(--gold); }
.work-section__contact a {
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.work-section__contact a:hover { color: var(--gold); }
.work-section__contact-sep {
  color: var(--border);
}

.work-section__privacy {
  margin-top: var(--s-2);
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--text-faint);
  text-align: center;
  max-width: 820px;
}
.work-section__privacy a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.work-section__privacy a:hover { border-color: var(--gold); }

/* Privacy line — sits to the right of the submit button in .form-submit-row */
.form-card-privacy {
  margin: 0;
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--text-faint);
}
.form-card-privacy a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.form-card-privacy a:hover { border-color: var(--gold); }

/* Honeypot — off-screen, invisible to real users */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Inline form feedback (success / error) */
.form-feedback {
  margin-top: var(--s-5);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-input);
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.55;
}
.form-feedback--success {
  background: #f0f7f1;
  border: 1.5px solid #6ab87c;
  color: #1e4a2e;
}
.form-feedback--error {
  background: #fdf2f2;
  border: 1.5px solid #d97070;
  color: #7a2020;
}
.form-feedback a { color: inherit; font-weight: 500; text-decoration: underline; }

/* ── 11. ABOUT SECTION ──────────────────────────────────────── */
.about-section {
  padding-block: var(--section-y);
  background: var(--bg-cream);
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--s-8), 7vw, 96px);
  align-items: center;
}

@media (min-width: 901px) {
  .about-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-section__left { }

.about-section__para {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: var(--s-5);
}

.mission-block {
  margin-top: var(--s-7);
  border-left: 3px solid var(--gold);
  padding-left: var(--s-5);
}

.mission-block__label {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}

.mission-block__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

/* About photos */
.about-section__right { }

.about-photos {
  position: relative;
  height: clamp(320px, 45vw, 520px);
}

.about-photos__img {
  position: absolute;
  border-radius: var(--r-img);
  box-shadow: var(--sh-img);
  overflow: hidden;
  background: #C5BBAE; /* warm neutral placeholder */
}
.about-photos__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.06) 0%, rgba(0,0,0,.12) 100%);
}

.about-photos__img--1 {
  width: 65%;
  height: 80%;
  top: 0;
  right: 0;
  transform: rotate(2.5deg);
  background-image: url(../images/home-04-wellness-market.jpg);
  background-size: cover;
  background-position: center;
}

.about-photos__img--2 {
  width: 55%;
  height: 68%;
  bottom: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
  border: 4px solid var(--bg-white);
  background-image: url(../images/yacth1.jpg);
  background-size: cover;
  background-position: center;
}

/* ── 12. CTA SECTION (closing — injected by components.js) ──── */
.cta-section {
  position: relative;
  background: var(--cta-grad);
  overflow: hidden;
  padding-block: var(--section-y);
  text-align: center;
}

/* Dotted texture overlay */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Decorative radial light */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,255,255,.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
}

.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--on-dark);
  letter-spacing: .08em;
  margin-bottom: var(--s-5);
}

.cta-section__h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.1;
  margin-bottom: var(--s-5);
  letter-spacing: -.02em;
}

.cta-section__h2-line2 {
  display: block;
  position: relative;
  padding-bottom: 18px;
}

/* Hand-drawn cream underline beneath "Unforgettable Memory" */
.cta-section__underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 50%, 440px);
  height: 16px;
  overflow: visible;
}

.cta-section__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--on-dark-muted);
  line-height: 1.7;
  margin-bottom: var(--s-7);
  max-width: 520px;
  margin-inline: auto;
}

.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

/* Stats row on caramel */
.cta-section__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.cta-section__stat {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--on-dark);
}

.cta-section__stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* Overlapping avatar circles */
.cta-section__avatars {
  display: flex;
  align-items: center;
}
.cta-section__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  border: 2.5px solid rgba(255,255,255,.5);
  display: block;
  flex-shrink: 0;
}
.cta-section__avatar + .cta-section__avatar { margin-left: -10px; }

/* Gold stars */
.cta-section__stars {
  color: #FFD66E;
  letter-spacing: 1px;
  font-size: .95rem;
}

@media (max-width: 600px) {
  .cta-section__stat-div { display: none; }
  .cta-section__stats { flex-direction: column; gap: var(--s-4); }
}

/* ── 13. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, var(--footer-bg-2) 0%, var(--footer-bg) 100%);
  position: relative;
  overflow: hidden;
}

/* Dotted texture */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 2;
  padding-top: var(--s-10);
  padding-bottom: var(--s-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}

@media (min-width: 601px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: var(--s-7); }
}

.footer__col--brand { }

.footer__blurb {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--footer-text);
  line-height: 1.7;
  margin-top: var(--s-4);
  margin-bottom: var(--s-5);
  max-width: 280px;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-icon);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--footer-divider);
  color: var(--footer-text);
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.footer__instagram:hover {
  background: var(--gold);
  color: var(--on-dark);
  transform: translateY(-2px);
}
.footer__instagram:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.footer__instagram svg { width: 18px; height: 18px; }

.footer__heading {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin-bottom: var(--s-5);
}

.footer__links li + li { margin-top: var(--s-3); }
.footer__links a {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--footer-text);
  transition: color var(--t-fast) var(--ease);
  display: inline-block;
}
.footer__links a:hover { color: var(--on-dark); }
.footer__links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer__contact { }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.footer__icon-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-icon);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--footer-divider);
  flex-shrink: 0;
  color: var(--gold);
}
.footer__icon-sq svg { width: 15px; height: 15px; }

.footer__contact a,
.footer__contact span {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--footer-text);
  transition: color var(--t-fast) var(--ease);
}
.footer__contact a:hover { color: var(--on-dark); }
.footer__contact a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer__divider {
  height: 1px;
  background: var(--footer-divider);
  margin-bottom: var(--s-6);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.footer__bottom p {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--footer-heading);
}

.footer__zp {
  color: var(--gold);
  transition: opacity var(--t-fast) var(--ease);
}
.footer__zp:hover { opacity: .8; }

/* ── 14. SCROLL ANIMATION HOOK ──────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate].animate-in { opacity: 1; transform: none; transition: none; }
}
/* Puppeteer screenshot helper: mark all animatable elements visible */
.screenshot-reveal [data-animate] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── 15. ACCESSIBILITY ──────────────────────────────────────── */
.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;
}

/* ── 17. BOAT PARTY PAGE ────────────────────────────────────── */

/* Hero */
.bp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--footer-bg);
  overflow: hidden;
}
.bp-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1a2a3e; /* TODO: url(../img/boat-party-hero.jpg) */
  background-size: cover;
  background-position: center;
}
.bp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(6,12,26,.92) 0%,
    rgba(6,12,26,.55) 45%,
    rgba(6,12,26,.28) 100%);
}
.bp-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  padding-block: clamp(100px, 16vh, 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.bp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--on-dark);
  letter-spacing: .06em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bp-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--on-dark);
  margin: 0;
}
.bp-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--on-dark-muted);
  line-height: 1.7;
  max-width: 640px;
}
.bp-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.bp-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--on-dark-muted);
}
.bp-hero__meta-item svg { color: var(--gold); flex-shrink: 0; }
.bp-hero__countdown-label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--s-2);
  text-align: center;
}
.bp-hero__countdown-boxes {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
}
.bp-countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 72px;
}
.bp-countdown-box__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}
.bp-countdown-box__label {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.bp-countdown-sep {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255,255,255,.25);
  align-self: flex-start;
  margin-top: 14px;
}
@media (max-width: 600px) { .bp-countdown-sep { display: none; } }

/* About the Party */
.bp-about {
  padding-block: var(--section-y);
  background: var(--bg-cream);
}
.bp-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--s-8), 7vw, 96px);
  align-items: center;
}
@media (min-width: 901px) { .bp-about__inner { grid-template-columns: 1fr 1fr; } }
.bp-about__para {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: var(--s-5);
  margin-bottom: var(--s-5);
}
.bp-about__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.bp-about__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.bp-about__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.bp-about__photo {
  border-radius: var(--r-img);
  overflow: hidden;
  box-shadow: var(--sh-img);
  aspect-ratio: 4/3;
  background-color: #243444; /* TODO: url(../img/boat-party-about.jpg) */
  background-size: cover;
  background-position: center;
}

/* Lineup */
.bp-lineup {
  padding-block: var(--section-y);
  background: var(--bg-white);
}
.bp-lineup__head {
  text-align: center;
  margin-bottom: var(--s-8);
}
.bp-lineup__rows {
  max-width: 760px;
  margin-inline: auto;
}
.bp-lineup__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--border-soft);
}
.bp-lineup__row:first-child { border-top: 1px solid var(--border-soft); }
.bp-lineup__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.bp-lineup__genre {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.bp-lineup__right { text-align: right; flex-shrink: 0; }
.bp-lineup__time {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.bp-lineup__note {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Event Timeline */
.bp-timeline {
  padding-block: var(--section-y);
  background: var(--bg-cream);
}
.bp-timeline__head {
  text-align: center;
  margin-bottom: var(--s-8);
}
.bp-timeline__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: var(--s-4);
}
.bp-timeline__steps {
  max-width: 660px;
  margin-inline: auto;
  position: relative;
}
.bp-timeline__steps::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 17px;
  bottom: 17px;
  width: 2px;
  background: var(--border);
  z-index: 0;
}
.bp-timeline__step {
  display: flex;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  align-items: flex-start;
}
.bp-timeline__step:last-child { margin-bottom: 0; }
.bp-timeline__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(200,153,106,.35);
}
.bp-timeline__icon svg { width: 15px; height: 15px; }
.bp-timeline__body { padding-top: 4px; }
.bp-timeline__time {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: var(--s-1);
}
.bp-timeline__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-2);
  line-height: 1.2;
}
.bp-timeline__desc {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Gallery */
.bp-gallery {
  padding-block: var(--section-y);
  background: var(--bg-white);
}
.bp-gallery__head {
  text-align: center;
  margin-bottom: var(--s-8);
}
.bp-gallery__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: var(--s-4);
}
.bp-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.bp-gallery__photo {
  border-radius: var(--r-event);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.bp-gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  transition: transform 500ms var(--ease);
}
.bp-gallery__photo:hover img { transform: scale(1.05); }
.bp-gallery__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
}
.bp-gallery__photo:hover::after { opacity: 1; }
/* Distinct placeholder tones — TODO: replace with real assets from Andreas */
.bp-gallery__photo--1 { background-color: #1e3248; }
.bp-gallery__photo--2 { background-color: #243c52; }
.bp-gallery__photo--3 { background-color: #1e2f42; }
.bp-gallery__photo--4 { background-color: #2b3e55; }
@media (max-width: 600px) { .bp-gallery__grid { grid-template-columns: 1fr; } }

/* Tickets */
.bp-tickets {
  padding-block: var(--section-y);
  background: var(--bg-cream);
}
.bp-tickets__head {
  text-align: center;
  margin-bottom: var(--s-8);
}
.bp-tickets__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: var(--s-4);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.7;
}
.bp-tickets__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: var(--s-6);
}
@media (min-width: 700px) { .bp-tickets__cards { grid-template-columns: 1fr 1fr; } }

.bp-ticket-card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
  padding: clamp(var(--s-6), 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.bp-ticket-card__price { display: flex; flex-direction: column; gap: var(--s-1); }
.bp-ticket-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.bp-ticket-card__per {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text-muted);
}
.bp-ticket-card__checklist { display: flex; flex-direction: column; gap: var(--s-3); }
.bp-ticket-card__check {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}
.bp-ticket-card__check svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.bp-ticket-card__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  padding: 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--on-dark);
  border: none;
  opacity: .82;
  cursor: pointer;
}
.bp-ticket-card__soon {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--text-faint);
  text-align: center;
}

.bp-tickets__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.bp-tickets__meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.bp-tickets__meta-item svg { color: var(--gold); }

/* FAQ */
.bp-faq {
  padding-block: var(--section-y);
  background: var(--bg-white);
}
.bp-faq__head {
  text-align: center;
  margin-bottom: var(--s-8);
}
.bp-faq__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: var(--s-4);
}
.bp-faq__card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-soft);
  max-width: 760px;
  margin-inline: auto;
  overflow: hidden;
}
.bp-faq__item + .bp-faq__item { border-top: 1px solid var(--border-soft); }
.bp-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s-5) var(--s-6);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--s-4);
  font: inherit;
}
.bp-faq__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.bp-faq__question {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.bp-faq__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--t-fast) var(--ease);
}
.bp-faq__item.is-open .bp-faq__chevron { transform: rotate(180deg); }
.bp-faq__panel {
  display: none;
  padding: 0 var(--s-6) var(--s-5);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.bp-faq__item.is-open .bp-faq__panel { display: block; }
@media (prefers-reduced-motion: reduce) { .bp-faq__chevron { transition: none; } }
.bp-faq__contact {
  text-align: center;
  margin-top: var(--s-7);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-muted);
}
.bp-faq__contact a {
  color: var(--gold);
  font-weight: 500;
  transition: opacity var(--t-fast);
}
.bp-faq__contact a:hover { opacity: .8; }
.bp-faq__contact a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Back link */
.back-link-section {
  text-align: center;
  padding-block: var(--s-7);
  background: var(--bg-cream);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.back-link:hover { color: var(--gold); }
.back-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 18. BUSINESS PAGE ──────────────────────────────────────── */

/* Hero */
.biz-hero {
  position: relative;
  min-height: clamp(600px, 92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.biz-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0C1629 0%, #182644 55%, #0A1220 100%);
}
.biz-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 50% 28%, rgba(200,153,106,.13) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 82% 65%, rgba(200,153,106,.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.biz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,12,26,.55) 0%, transparent 70%);
  z-index: 1;
}
.biz-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(100px, 16vh, 148px) var(--gutter) clamp(64px, 10vh, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.biz-hero .eyebrow { color: var(--gold); margin-bottom: 0; }
.biz-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--on-dark);
  margin: 0;
}
.biz-hero__h1 .grad { display: block; }
.biz-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--on-dark-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}
.biz-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}
.biz-hero__stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.biz-hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1;
}
.biz-hero__stat-cap {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.biz-hero__stat-div { width: 1px; height: 38px; background: rgba(255,255,255,.14); flex-shrink: 0; }
@media (max-width: 600px) {
  .biz-hero__stat-div { display: none; }
  .biz-hero__stats { gap: var(--s-7); }
}

/* Why Memora */
.why-section { padding-block: var(--section-y); background: var(--bg-cream); }
.why-section__head {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(var(--s-8), 6vw, 72px);
}
.why-section__sub { font-family: var(--font-body); font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-top: var(--s-4); }
.why-cards { display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: clamp(var(--s-9), 7vw, 88px); }
@media (min-width: 601px)  { .why-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 901px)  { .why-cards { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-soft);
  padding: clamp(var(--s-6), 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.why-card__icon-sq {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(200,153,106,.1); border: 1px solid rgba(200,153,106,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; margin-bottom: var(--s-1);
}
.why-card__icon-sq svg { width: 20px; height: 20px; }
.why-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.why-card__desc { font-family: var(--font-body); font-size: .92rem; color: var(--text-muted); line-height: 1.65; }

/* Logo strip */
.logo-strip { text-align: center; }
.logo-strip__caption { font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s-6); }
.logo-strip__row { display: flex; align-items: center; justify-content: center; gap: var(--s-4); flex-wrap: wrap; }
.logo-strip__placeholder { width: 110px; height: 46px; border-radius: 10px; background: var(--border); }

/* Partnership Options */
.options-section { padding-block: var(--section-y); background: var(--bg-cream); border-top: 1px solid var(--border-soft); }
.options-section__head { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: clamp(var(--s-8), 6vw, 72px); }
.options-section__sub { font-family: var(--font-body); font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-top: var(--s-4); }
.options-cards { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 601px) { .options-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 901px) { .options-cards { grid-template-columns: repeat(3, 1fr); } }
.option-card {
  background: var(--bg-white); border-radius: var(--r-card);
  border: 1px solid var(--border-soft); box-shadow: var(--sh-soft);
  padding: clamp(var(--s-6), 3vw, 36px); display: flex; flex-direction: column; gap: var(--s-4);
}
.option-card__icon-sq {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(200,153,106,.1); border: 1px solid rgba(200,153,106,.18);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.option-card__icon-sq svg { width: 20px; height: 20px; }
.option-card__title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.option-card__desc { font-family: var(--font-body); font-size: .92rem; color: var(--text-muted); line-height: 1.65; }
.option-card__checks { display: flex; flex-direction: column; gap: var(--s-2); margin-top: auto; padding-top: var(--s-3); border-top: 1px solid var(--border-soft); }
.option-card__check { display: flex; align-items: flex-start; gap: var(--s-2); font-family: var(--font-body); font-size: .88rem; color: var(--text); line-height: 1.5; }
.option-card__check svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; width: 15px; height: 15px; }

/* Get Started */
.get-started-section { padding-block: var(--section-y); background: var(--bg-cream); border-top: 1px solid var(--border-soft); }
.get-started-section__head { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: clamp(var(--s-8), 6vw, 72px); }
.get-started-section__sub { font-family: var(--font-body); font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-top: var(--s-4); }
.get-started-layout { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: start; }
@media (min-width: 901px) { .get-started-layout { grid-template-columns: 300px 1fr; gap: var(--s-7); } }
.gs-sidebar { display: flex; flex-direction: column; gap: var(--s-5); }
.gs-card { background: var(--bg-white); border-radius: var(--r-card); border: 1px solid var(--border-soft); box-shadow: var(--sh-soft); padding: var(--s-6); }
.gs-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: var(--s-5); }
.gs-card__list { display: flex; flex-direction: column; gap: var(--s-3); }
.gs-card__list-item { display: flex; align-items: flex-start; gap: var(--s-3); font-family: var(--font-body); font-size: .92rem; color: var(--text-muted); line-height: 1.5; }
.gs-card__list-emoji { flex-shrink: 0; font-size: 1rem; line-height: 1.5; }
.gs-talk__item { display: flex; align-items: center; gap: var(--s-3); font-family: var(--font-body); font-size: .92rem; margin-bottom: var(--s-4); }
.gs-talk__item:last-child { margin-bottom: 0; }
.gs-talk__item svg { color: var(--gold); flex-shrink: 0; }
.gs-talk__item a { color: var(--text-muted); transition: color var(--t-fast) var(--ease); }
.gs-talk__item a:hover { color: var(--gold); }
.biz-form-card { background: var(--bg-white); border-radius: var(--r-card); box-shadow: var(--sh-card); padding: clamp(var(--s-6), 4vw, 52px); border: 1px solid var(--border-soft); }
.biz-form__intro { font-family: var(--font-body); font-size: .95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: var(--s-6); margin-top: calc(-1 * var(--s-3)); }
.biz-form-submit .btn { width: 100%; justify-content: center; }
.biz-form-privacy { text-align: center; margin-top: var(--s-4); }

/* Partner Stories */
.stories-section { padding-block: var(--section-y); background: var(--bg-white); }
.stories-section__head { text-align: center; max-width: 560px; margin-inline: auto; margin-bottom: clamp(var(--s-8), 6vw, 72px); }
.testimonial-cards { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 601px) { .testimonial-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 901px) { .testimonial-cards { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--bg-cream); border-radius: var(--r-card); border: 1px solid var(--border-soft); padding: clamp(var(--s-6), 3vw, 36px); display: flex; flex-direction: column; gap: var(--s-4); }
.testimonial-card__quote-mark { color: var(--gold); opacity: .4; }
.testimonial-card__quote-mark svg { width: 28px; height: 28px; }
.testimonial-card__text { font-family: var(--font-body); font-size: .95rem; font-style: italic; color: var(--text); line-height: 1.75; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--on-dark); flex-shrink: 0; }
.testimonial-card__name { font-family: var(--font-display); font-size: .92rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.testimonial-card__role { font-family: var(--font-body); font-size: .82rem; color: var(--text-muted); line-height: 1.3; margin-top: 2px; }

/* Business FAQ */
.biz-faq { padding-block: var(--section-y); background: var(--bg-cream); }
.biz-faq__head { text-align: center; max-width: 580px; margin-inline: auto; margin-bottom: var(--s-8); }
.biz-faq__sub { font-family: var(--font-body); font-size: 1.05rem; color: var(--text-muted); margin-top: var(--s-4); }
.biz-faq__card { background: var(--bg-white); border-radius: var(--r-card); border: 1px solid var(--border); box-shadow: var(--sh-soft); max-width: 760px; margin-inline: auto; overflow: hidden; }
.biz-faq__item + .biz-faq__item { border-top: 1px solid var(--border-soft); }
.biz-faq__trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: var(--s-5) var(--s-6); text-align: left; background: none; border: none; cursor: pointer; gap: var(--s-4); font: inherit; }
.biz-faq__trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.biz-faq__question { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.biz-faq__chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); transition: transform var(--t-fast) var(--ease); }
.biz-faq__item.is-open .biz-faq__chevron { transform: rotate(180deg); }
.biz-faq__panel { display: none; padding: 0 var(--s-6) var(--s-5); font-family: var(--font-body); font-size: .95rem; color: var(--text-muted); line-height: 1.7; }
.biz-faq__item.is-open .biz-faq__panel { display: block; }
@media (prefers-reduced-motion: reduce) { .biz-faq__chevron { transition: none; } }
.biz-faq__contact { text-align: center; margin-top: var(--s-7); font-family: var(--font-body); font-size: .95rem; color: var(--text-muted); }
.biz-faq__contact a { color: var(--gold); font-weight: 500; transition: opacity var(--t-fast); }
.biz-faq__contact a:hover { opacity: .8; }

/* ============================================================
   MOBILE IMAGE CAROUSEL — index.html only, hidden on desktop
   ============================================================ */
@media (min-width: 769px) { .m-carousel { display: none !important; } }

.m-carousel { padding: 16px 0; margin-top: -24px; background: transparent; }

.m-carousel__viewport {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.m-carousel__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.m-carousel__item {
  width: 115px;
  height: 210px;
  margin-right: 14px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.biz-faq__contact a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   TICKET PURCHASE MODAL — boat-party.html
   ============================================================ */
.bpt-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}
.bpt-modal[hidden] { display: none !important; }

.bpt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 35, .72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.bpt-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border-radius: var(--r-card);
  box-shadow: 0 32px 80px rgba(15,20,35,.28);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--s-6);
  font-family: var(--font-body);
}

.bpt-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
}

.bpt-modal__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.bpt-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: var(--s-1);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.bpt-modal__close:hover { color: var(--navy); background: var(--border-soft); }
.bpt-modal__close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 50%; }

.bpt-seats {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--border-soft);
  border-radius: var(--r-pill);
  padding: 4px var(--s-3);
  display: inline-block;
  margin-bottom: var(--s-4);
}

.bpt-summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-5);
}

/* Attendee block */
.bpt-attendee {
  background: var(--bg-cream);
  border-radius: var(--r-input);
  padding: var(--s-5);
  margin-bottom: var(--s-4);
}

.bpt-attendee__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
}

.bpt-attendee__label {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

.bpt-attendee__remove {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 3px var(--s-3);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.bpt-attendee__remove:hover { color: #c0392b; border-color: #c0392b; }
.bpt-attendee__remove:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Fields */
.bpt-field { margin-bottom: var(--s-4); }
.bpt-field:last-child { margin-bottom: 0; }

.bpt-label {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--s-2);
}
.bpt-label .req { color: var(--gold); }

.bpt-input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-input);
  padding: 10px var(--s-4);
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.bpt-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,153,106,.15);
}
.bpt-input.is-error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,.12);
}
.bpt-input::placeholder { color: var(--text-faint); }

.bpt-error {
  display: block;
  font-size: .78rem;
  color: #e05252;
  margin-top: var(--s-1);
  min-height: 1.1em;
}

/* Add attendee */
.bpt-add-btn {
  width: 100%;
  background: none;
  border: 1.5px dashed var(--border);
  border-radius: var(--r-input);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--s-3) var(--s-4);
  cursor: pointer;
  margin-bottom: var(--s-3);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.bpt-add-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.bpt-add-btn:disabled { opacity: .45; cursor: not-allowed; }
.bpt-add-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Capacity warning */
.bpt-capacity-msg {
  font-size: .82rem;
  color: #c0392b;
  margin-bottom: var(--s-3);
  display: none;
}
.bpt-capacity-msg.is-visible { display: block; }

/* Submit */
.bpt-submit-btn {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px var(--s-6);
  cursor: pointer;
  box-shadow: var(--sh-btn);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.bpt-submit-btn:hover { background: var(--gold-deep); transform: translateY(-1px); }
.bpt-submit-btn:active { transform: translateY(0); }
.bpt-submit-btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* Success */
.bpt-success {
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  color: #2e7d32;
  background: #f0faf1;
  border: 1px solid #a5d6a7;
  border-radius: var(--r-input);
  padding: var(--s-3) var(--s-4);
  margin-top: var(--s-4);
  display: none;
}
.bpt-success.is-visible { display: block; }
.bpt-success.is-error { color: #c0392b; background: #fdf3f2; border-color: #f5c6c2; }

/* ============================================================
   PAYMENT RESULT OVERLAY — boat-party.html post-Stripe redirect
   ============================================================ */
.bpr-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}
.bpr-overlay[hidden] { display: none !important; }

.bpr-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 35, .75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bpr-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border-radius: var(--r-card);
  box-shadow: 0 32px 80px rgba(15,20,35,.30);
  width: 100%;
  max-width: 480px;
  padding: var(--s-7) var(--s-6) var(--s-6);
  text-align: center;
  font-family: var(--font-body);
}

.bpr-panel__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-5);
  color: #2e7d32;
}

.bpr-panel__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--s-3);
}

.bpr-panel__sub {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--s-5);
}

.bpr-tickets {
  background: var(--bg-cream);
  border-radius: var(--r-input);
  padding: var(--s-4);
  margin-bottom: var(--s-5);
  text-align: left;
  min-height: 56px;
}

.bpr-tickets__loading,
.bpr-tickets__fallback {
  font-size: .9rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  padding: var(--s-2) 0;
  line-height: 1.6;
}

.bpr-ticket-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bpr-ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border);
}
.bpr-ticket-row:last-child { border-bottom: none; }

.bpr-ticket-row__name {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
}

.bpr-ticket-row__num {
  font-family: monospace;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  flex-shrink: 0;
}

.bpr-panel__note {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  background: #FFF8F0;
  border: 1px solid #EAD5B0;
  border-radius: var(--r-input);
  padding: var(--s-3) var(--s-4);
  font-size: .84rem;
  color: #7A5C2E;
  line-height: 1.55;
  text-align: left;
  margin-bottom: var(--s-5);
}
.bpr-panel__note svg { flex-shrink: 0; margin-top: 1px; color: #B9854E; }

.bpr-panel__close {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px var(--s-6);
  cursor: pointer;
  box-shadow: var(--sh-btn);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.bpr-panel__close:hover { background: var(--gold-deep); transform: translateY(-1px); }
.bpr-panel__close:active { transform: translateY(0); }
.bpr-panel__close:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* Cancelled bar */
.bpr-cancelled-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9100;
  background: #2A3346;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-5);
  font-family: var(--font-body);
  font-size: .9rem;
}
.bpr-cancelled-bar[hidden] { display: none !important; }
.bpr-cancelled-bar__text { flex: 1; text-align: center; color: rgba(255,255,255,.88); }
.bpr-cancelled-bar__dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  padding: var(--s-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--t-fast) var(--ease);
}
.bpr-cancelled-bar__dismiss:hover { color: #fff; }
.bpr-cancelled-bar__dismiss:focus-visible { outline: 2px solid rgba(255,255,255,.6); outline-offset: 2px; border-radius: 3px; }
