/* ============================================================
   STARK PRODUCTION GROUP — STYLES
   WCAG AA compliant · Mobile-first · Dark theme
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #05060d;
  --deep:        #080a14;
  --deep2:       #0c0e1c;
  --surface:     #111328;
  --surface2:    #161932;
  --crimson:     #c0152a;
  --crimson-dk:  #8a0e1a;
  --gold:        #c8941e;   /* darkened from d4a030 for WCAG AA contrast on dark */
  --gold-light:  #f0c855;
  --gold-bright: #ffe08a;
  --cream:       #f0ecff;
  --text-hi:     #f4f0ff;
  --text-mid:    rgba(240,236,255,0.78);   /* boosted from 0.45 for WCAG AA */
  --text-low:    rgba(240,236,255,0.55);
  --focus-ring:  #f0c855;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* mandatory = true full-page snap; areas taller than the viewport
     still scroll freely inside per the CSS scroll-snap spec */
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body {
  background: var(--black);
  color: var(--text-hi);
  font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(192,21,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(8,10,20,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(8,10,20,0.8) 0%, transparent 60%);
  overflow-x: hidden;
}

/* ── SKIP NAV (ADA) ──────────────────────────────────────── */
.skip-nav {
  position: fixed;
  top: -200%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-light);
  color: #000;
  font-weight: 700;
  padding: 12px 28px;
  z-index: 10000;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 0;
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* ── FOCUS RING (ADA) ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 800;
}
a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}
a:hover { text-decoration-color: var(--gold-light); }

/* ── MARQUEE LIGHTS ──────────────────────────────────────── */
.marquee-lights {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(to right, var(--deep), #0d0f20, var(--deep));
  padding: 6px 0;
  gap: 0;
  position: relative;
  z-index: 2;
}
.marquee-bulb {
  flex: 0 0 auto;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe08a, #d4a030 60%, #7a5010);
  box-shadow: 0 0 8px 3px rgba(212,160,48,0.55), 0 0 2px rgba(255,224,138,0.5) inset;
  animation: bulbFlicker 1.8s ease-in-out infinite alternate;
  margin: 0 4px;
}

@keyframes bulbFlicker {
  0%   { opacity: 1;    box-shadow: 0 0 8px 3px rgba(212,160,48,0.6); }
  50%  { opacity: 0.55; box-shadow: 0 0 3px 1px rgba(212,160,48,0.2); }
  100% { opacity: 1;    box-shadow: 0 0 12px 5px rgba(212,160,48,0.7); }
}

/* ── CONFETTI ────────────────────────────────────────────── */
/* Confetti stays BELOW all content (main/ticker/footer are z-index 2)
   so pieces never drift across text — readability + ADA. */
.confetti-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.8;
}
main, .ticker-wrap, .footer {
  position: relative;
  z-index: 2;
}
.confetti-piece {
  position: absolute;
  animation: floatDown 12s linear -8s infinite;
}

@keyframes floatDown {
  0%   { transform: translate(0, -20px) rotate(var(--r0)); opacity: 1; }
  40%  { transform: translate(var(--drift-x), 40vh) rotate(var(--r1)); opacity: 0.9; }
  80%  { transform: translate(var(--drift-x2), 85vh) rotate(calc(var(--r0) + 200deg)); opacity: 0.6; }
  100% { transform: translate(var(--drift-x2), 110vh) rotate(calc(var(--r1) + 300deg)); opacity: 0; }
}

/* ── SPOTLIGHT LAYER ─────────────────────────────────────── */
.spotlight-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.beam {
  position: absolute;
  top: -40%;
  width: 2px;
  height: 180%;
  background: linear-gradient(to bottom, rgba(192,21,42,0.07) 0%, rgba(192,21,42,0.01) 60%, transparent 100%);
  transform-origin: top center;
  filter: blur(28px);
}
.beam-1 { left: 20%; animation: sweepBeam 18s ease-in-out infinite; }
.beam-2 { left: 50%; animation: sweepBeam 22s ease-in-out infinite reverse; }
.beam-3 { left: 78%; animation: sweepBeam 15s ease-in-out infinite 4s; }

@keyframes sweepBeam {
  0%, 100% { transform: rotate(-18deg); opacity: 0.5; }
  50%       { transform: rotate(18deg);  opacity: 0.9; }
}

/* ── RED CARPET ──────────────────────────────────────────── */
/* Carpet lives on the RIGHT edge — atmospheric, never over content */
.carpet-track {
  position: fixed;
  right: 0;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.carpet-runner {
  position: absolute;
  right: 18px;
  top: 0;
  left: auto;
  transform: scaleY(0);
  transform-origin: top center;
  width: 52px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #9a0e1e 0%,
    #c0152a 18%,
    #a8111f 38%,
    #c0152a 55%,
    #a0101c 75%,
    #c0152a 100%
  );
  box-shadow:
    0 0 24px 6px rgba(192,21,42,0.25),
    inset 3px 0 8px rgba(0,0,0,0.4),
    inset -3px 0 8px rgba(0,0,0,0.4);
}
.carpet-runner::before,
.carpet-runner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(212,160,48,0.12) 0%, rgba(212,160,48,0.28) 50%, rgba(212,160,48,0.12) 100%);
}
.carpet-runner::before { left: 8px; }
.carpet-runner::after  { right: 8px; }

.rope-left, .rope-right {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
}
/* On right-edge carpet: rope-left is just inside the track, rope-right hangs off edge */
.rope-left  { right: 60px; left: auto; }
.rope-right { right: 0; left: auto; }

.stanchion {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 52px;
  background: linear-gradient(to right, #b8860b, #f0c855 40%, #d4a030 70%, #8a6010);
  border-radius: 3px;
  z-index: 1;
}
.stanchion::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe08a, #d4a030 60%, #8a6010);
  box-shadow: 0 0 6px 2px rgba(212,160,48,0.4);
}
.stanchion::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #8a6010, #d4a030, #8a6010);
}

.rope-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 64px;
  background: linear-gradient(to bottom, rgba(5,6,13,0.97), rgba(5,6,13,0));
  transition: background var(--transition), border-bottom var(--transition);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-hi);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo:hover { color: var(--gold-light); }
.logo-star { color: var(--gold-light); font-style: normal; }

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(8px, 2vw, 32px);
  align-items: center;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  padding: 4px 2px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--crimson);
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: #e0182f;
  transform: translateY(-1px);
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid rgba(240,200,85,0.5);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  width: 46px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px clamp(20px, 5vw, 60px) 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.theater-arch {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.gradient-text {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--text-low);
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.5; }
}

/* ── HERO TRUST ROW ──────────────────────────────────────── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin-top: 28px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-low);
  letter-spacing: 0.05em;
}
.hero-trust span[aria-hidden] { color: rgba(240,200,85,0.35); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  min-height: 44px;
}
.button-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192,21,42,0.4);
}
.button-primary:hover {
  background: #e0182f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,21,42,0.5);
  color: #fff;
  text-decoration: none;
}
.button-ghost {
  background: transparent;
  color: var(--text-hi);
  border: 1.5px solid rgba(240,236,255,0.25);
}
.button-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(240,200,85,0.07);
}
.button.full-width { width: 100%; justify-content: center; }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(to right, rgba(192,21,42,0.15), rgba(192,21,42,0.08), rgba(192,21,42,0.15));
  border-top: 1px solid rgba(192,21,42,0.25);
  border-bottom: 1px solid rgba(192,21,42,0.25);
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 50s linear infinite;
}
.ticker-track span {
  display: inline-block;
  padding: 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--text-mid);
  text-transform: uppercase;
}
.ticker-track .sep {
  color: var(--gold);
  padding: 0 6px;
  opacity: 0.7;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 60px);
}
.section-title {
  font-size: clamp(1.7rem, min(4vw, 5.5vh), 2.9rem);
  margin-bottom: clamp(20px, 4vh, 40px);
  color: var(--text-hi);
}

/* ── SNAP PAGES (SaaS-style full-screen scroll) ──────────── */
.snap-page {
  scroll-snap-align: start;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(84px, 11vh, 112px);
  padding-bottom: clamp(20px, 4vh, 48px);
}
/* Hero stays vertically centered — it has no section header */
.hero.snap-page { justify-content: center; }
.contact-section.snap-page {
  display: grid;
  align-content: start;
}
/* Snap pages don't fade/slide as a block — the curtains do the reveal */
.snap-page.reveal {
  opacity: 1;
  transform: none;
}

/* Theatrical curtain reveal between pages */
.snap-page::before,
.snap-page::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 35%),
    repeating-linear-gradient(90deg, #5e0810 0 16px, #98101f 16px 38px, #740b15 38px 56px);
  box-shadow: 0 0 44px rgba(0,0,0,0.6);
  transition: transform 1.15s cubic-bezier(0.77, 0, 0.18, 1) 0.1s;
}
.snap-page::before { left: 0;  border-right: 4px solid rgba(200,148,30,0.75); }
.snap-page::after  { right: 0; border-left:  4px solid rgba(200,148,30,0.75); }
.snap-page.visible::before { transform: translateX(-103%); }
.snap-page.visible::after  { transform: translateX(103%); }

/* ── INTRO SECTION ───────────────────────────────────────── */
.intro-section { text-align: center; }
.intro-badge {
  display: inline-block;
  background: rgba(192,21,42,0.12);
  border: 1px solid rgba(192,21,42,0.3);
  color: #f06070;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.intro-headline {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  max-width: 760px;
  margin: 0 auto 24px;
}
.intro-body {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  justify-content: center;
}
.hiw-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid rgba(212,160,48,0.1);
  border-radius: var(--radius-lg);
}
.hiw-step h3 {
  font-size: 1.15rem;
  margin: 12px 0 10px;
  color: var(--text-hi);
}
.hiw-step p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.hiw-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--crimson);
  opacity: 0.7;
  line-height: 1;
}
.hiw-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  align-self: center;
  padding: 0 12px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .how-it-works {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hiw-arrow { transform: rotate(90deg); padding: 4px 0; }
  .hiw-step { max-width: 100%; width: 100%; }
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(212,160,48,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 600px;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(212,160,48,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(192,21,42,0.1);
}
.spotlight-cone {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,48,0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover .spotlight-cone { opacity: 1; }
.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,21,42,0.12);
  border-radius: 12px;
  margin-bottom: 14px;
  color: var(--gold-light);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-hi);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── EVENT TYPE PILLS ────────────────────────────────────── */
.event-types-section { text-align: center; }
.event-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.event-type-pill {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(240,236,255,0.14);
  color: var(--text-mid);
  background: var(--surface);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.event-type-pill:hover {
  background: rgba(192,21,42,0.1);
  border-color: rgba(192,21,42,0.3);
  color: var(--text-hi);
}

/* ── CALLOUT / QUOTE ─────────────────────────────────────── */
.callout-section { padding-top: 0; }
.event-types-section .callout-card { margin-top: clamp(24px, 5vh, 48px); }
.callout-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(192,21,42,0.2);
  padding: clamp(40px, 6vw, 80px) clamp(30px, 6vw, 80px);
  text-align: center;
}
.callout-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(192,21,42,0.12), transparent 70%);
  pointer-events: none;
}
.callout-curtain-left,
.callout-curtain-right {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(192,21,42,0.4), rgba(140,10,20,0.1) 60%, transparent);
}
.callout-curtain-left  { left: 0; border-right: 3px solid rgba(192,21,42,0.3); }
.callout-curtain-right { right: 0; border-left:  3px solid rgba(192,21,42,0.3); }

blockquote { border: none; padding: 0; margin: 0; }
.callout-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text-hi);
  max-width: 760px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.callout-attr {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: block;
}

/* Why SPG grid inside callout card */
.callout-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.callout-why-item {
  background: rgba(8,10,20,0.5);
  border: 1px solid rgba(212,160,48,0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.callout-why-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1;
}
.callout-why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-hi);
}
.callout-why-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .callout-why-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── TEAM ────────────────────────────────────────────────── */
.team-section { text-align: center; }
.paparazzi-row {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
}
.flash {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  animation: flashPop 3.5s ease-in-out infinite;
  z-index: 0;
}
.flash-1 { width: 24px; height: 24px; left: 10%; top: -20px; animation-delay: 0s; }
.flash-2 { width: 18px; height: 18px; left: 50%; top: -10px; animation-delay: 1.2s; }
.flash-3 { width: 22px; height: 22px; right: 12%; top: -15px; animation-delay: 2.4s; }

@keyframes flashPop {
  0%, 85%, 100% { opacity: 0; transform: scale(0); }
  88%            { opacity: 1; transform: scale(1);   box-shadow: 0 0 40px 20px rgba(255,255,255,0.6); }
  92%            { opacity: 0; transform: scale(1.4); }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
  text-align: left;
}
.team-card {
  background: var(--surface);
  border: 1px solid rgba(212,160,48,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 22px;
}
.team-avatar {
  position: relative;
  flex-shrink: 0;
  align-self: flex-start;
}
.avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), #8a0e1a);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.avatar-photo {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}
.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(212,160,48,0.35);
}
.team-info { flex: 1; }
.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.team-tags li {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(192,21,42,0.12);
  border: 1px solid rgba(192,21,42,0.25);
  color: #f06070;
  text-transform: uppercase;
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,160,48,0.1);
}
.stat-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px;
  gap: 6px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-low);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(240,236,255,0.08);
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.contact-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.contact-details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 1rem;
}
.contact-detail-item svg { color: var(--gold); flex-shrink: 0; }
.contact-detail-item a {
  color: var(--text-mid);
  text-decoration: none;
}
.contact-detail-item a:hover { color: var(--gold-light); }
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border: 1px solid rgba(240,236,255,0.15);
  padding: 8px 16px;
  border-radius: 8px;
  min-height: 44px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(240,200,85,0.07);
}

/* ── CONTACT PROCESS STEPS ───────────────────────────────── */
.contact-process {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.cp-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.cp-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(192,21,42,0.2);
  border: 1px solid rgba(192,21,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #f06070;
  margin-top: 1px;
}

/* ── GLASS CARD / FORM ───────────────────────────────────── */
.glass-card {
  background: rgba(17,19,40,0.95);
  border: 1px solid rgba(212,160,48,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
}
.form-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group:last-of-type { margin-bottom: 24px; }
label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.req { color: #e8192e; }

input, select, textarea {
  background: rgba(240,236,255,0.06);
  border: 1px solid rgba(240,236,255,0.15);
  border-radius: 8px;
  color: var(--text-hi);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 1px;
  border-color: rgba(240,200,85,0.4);
  box-shadow: 0 0 0 3px rgba(240,200,85,0.12);
}
input::placeholder, textarea::placeholder { color: rgba(240,236,255,0.3); }
select { appearance: none; cursor: pointer; }
select option { background: #0c0e1c; color: var(--text-hi); }
textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,200,120,0.12);
  border: 1px solid rgba(20,200,120,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #6eddaf;
  margin-top: 12px;
}
.form-success svg { color: #6eddaf; flex-shrink: 0; }
.form-success[hidden] { display: none; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  scroll-snap-align: end;
  background: var(--deep2);
  border-top: 1px solid rgba(212,160,48,0.08);
  padding: 40px 20px 32px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-hi);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-low);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: center;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-low);
  text-decoration: none;
  transition: color var(--transition);
  padding: 4px 2px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-legal {
  font-size: 0.82rem;
  color: rgba(240,236,255,0.45);
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease var(--delay, 0ms), transform 0.5s ease var(--delay, 0ms);
}
.reveal.visible,
.reveal-card.visible {
  opacity: 1;
  transform: none;
}
.team-arrive-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease var(--delay, 0ms), transform 0.6s ease var(--delay, 0ms);
}
.team-arrive-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease var(--delay, 0ms), transform 0.6s ease var(--delay, 0ms);
}
.team-arrive-left.visible,
.team-arrive-right.visible {
  opacity: 1;
  transform: none;
}

/* Hero animate-in */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: animateIn 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes animateIn {
  to { opacity: 1; transform: none; }
}

/* ── MOTION PAUSE TOGGLE (WCAG 2.2.2) ────────────────────── */
.motion-toggle {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 90;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #f2e8d8;
  background: rgba(5,6,13,0.85);
  border: 1px solid rgba(212,160,48,0.4);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.motion-toggle:hover,
.motion-toggle:focus-visible {
  border-color: var(--gold);
  color: #fff;
}
body.motion-off .confetti-piece,
body.motion-off .marquee-bulb,
body.motion-off .ticker-track,
body.motion-off .beam,
body.motion-off .flash,
body.motion-off .scroll-dot,
body.motion-off .spotlight-cone {
  animation-play-state: paused !important;
}

/* ── FIT SNAP PAGES ON SHORTER SCREENS ───────────────────── */
/* Laptops at 1366x768 / 1280x720: compact spacing so every snap
   page fits inside one viewport with no cut-off content. */
@media (min-width: 901px) and (max-height: 860px) {
  .snap-page { padding-top: 68px; padding-bottom: 20px; }
  .eyebrow { margin-bottom: 12px; }
  h1 { font-size: clamp(2.3rem, 6vw, 4rem); margin-bottom: 18px; }
  .hero-subtext { margin-bottom: 26px; }
  .hero-trust { margin-top: 20px; }
  .how-it-works { margin-top: 26px; }
  .hiw-step { padding: 20px 18px; }
  .services-grid { gap: 12px; }
  .service-card { padding: 16px 15px; }
  .service-card p { font-size: 0.88rem; line-height: 1.55; }
  .service-icon { width: 36px; height: 36px; margin-bottom: 10px; }
  .event-type-pill { padding: 8px 18px; font-size: 0.88rem; }
  .event-type-grid { gap: 10px; }
  .callout-card { padding: 26px 32px; margin-top: 26px; }
  .callout-why-item { padding: 16px 14px; }
  .callout-why-item p { font-size: 0.88rem; line-height: 1.55; }
  .team-grid { margin-top: 22px; gap: 18px; }
  .team-card { padding: 22px 20px; }
  .team-bio { font-size: 0.9rem; line-height: 1.55; }
  .stats-strip { margin-top: 22px; }
  .stat-item { padding: 18px 14px; }
  .stat-number { font-size: 2.1rem; }
  .glass-card { padding: 24px 26px; }
  .form-group { margin-bottom: 12px; }
  textarea { min-height: 72px; }
  .contact-process { margin: 16px 0 20px; gap: 8px; }
  .contact-body { margin-bottom: 20px; }
}

/* ── PREFERS REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-card,
  .team-arrive-left, .team-arrive-right,
  .animate-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .ticker-track { animation: none; }
  .scroll-dot   { animation: none; }
  .flash        { animation: none; opacity: 0; }
  .beam         { animation: none; }
  .marquee-bulb { animation: none; opacity: 0.75; }
  html          { scroll-behavior: auto; scroll-snap-type: none; }
  .snap-page::before,
  .snap-page::after { display: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet ≤ 900px */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  /* Sections outgrow the viewport on small screens — full-page snap
     would trap scrolling, so fall back to normal flow */
  html { scroll-snap-type: none; }
  .snap-page {
    min-height: auto;
    padding-top: 56px;
  }
  .hero.snap-page { min-height: 100svh; padding-top: 88px; }
}

/* Mobile ≤ 700px — hamburger nav */
@media (max-width: 700px) {
  .nav-hamburger {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5,6,13,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(212,160,48,0.15);
    gap: 4px;
    z-index: 99;
  }
  .nav-links.nav-open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.05rem;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(240,236,255,0.06);
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .form-row { grid-template-columns: 1fr; }
  .glass-card { padding: 24px 20px; }

  .carpet-track { width: 100px; opacity: 0.35; }
  .carpet-runner { width: 38px; right: 12px; }

  h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); }

  .stats-strip {
    flex-wrap: wrap;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    min-width: calc(50% - 10px);
    padding: 24px 12px;
  }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .button { width: 100%; justify-content: center; }

  .carpet-track { display: none; }  /* too cramped on very small screens */

  .team-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
