/* ============================================================
   Joker Fun Lines — promo website
   Theatrical-luxe palette mirrors docs/design_system.md
   ============================================================ */
:root {
  /* Brand palette */
  --bg-base:           #1A0E1F;
  --bg-surface:        #2A1A33;
  --bg-surface-accent: #3A2647;
  --outline:           #4D3858;
  --outline-soft:      #3A2647;
  --royal-red:         #8B0F2A;
  --royal-red-pressed: #6E0B22;
  --electric-purple:   #5B2D8C;
  --jester-gold:       #E8B62B;
  --ivory:             #F2EBD9;

  /* Text */
  --text-primary:   #F2EBD9;
  --text-secondary: #C7B8D1;
  --text-tertiary:  #8E7C9C;
  --text-on-gold:   #1A0E1F;

  /* Gradients */
  --grad-royal-curtain:  linear-gradient(160deg, #1A0E1F 0%, #5B2D8C 55%, #8B0F2A 100%);
  --grad-electric-stage: linear-gradient(180deg, #5B2D8C 0%, #1A0E1F 100%);
  --grad-gold-spotlight: radial-gradient(circle at 50% 35%, rgba(232,182,43,0.55) 0%, rgba(232,182,43,0) 65%);
  --grad-aubergine-deep: linear-gradient(180deg, #2A1A33 0%, #1A0E1F 100%);

  /* Typography */
  --font-display: "Bowlby One", "Impact", sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-accent:  "Caveat", "Brush Script MT", cursive;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadows */
  --shadow-theatre:  0 4px 12px rgba(0,0,0,0.4);
  --shadow-soft:     0 8px 24px rgba(26,14,31,0.5);
  --shadow-spotlight: 0 0 80px rgba(232,182,43,0.18);
}

/* ============================================================
   Base reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--jester-gold); text-decoration: none; }
a:hover { color: var(--ivory); }
::selection { background: var(--jester-gold); color: var(--text-on-gold); }

/* ============================================================
   Typography utilities (creative treatments)
   ============================================================ */
.hero-eyebrow {
  font: 700 13px/18px var(--font-body);
  color: var(--jester-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-title {
  font: 400 clamp(40px, 6.5vw, 76px)/1.02 var(--font-display);
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, #F2EBD9 0%, #E8B62B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 24px rgba(232,182,43,0.18);
  margin: 0;
  text-align: center;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-title .accent {
  font: 600 1.1em/0.95 var(--font-accent);
  font-style: italic;
  color: var(--jester-gold);
  -webkit-text-fill-color: var(--jester-gold);
  display: inline-block;
  transform: rotate(-3deg);
  margin: 0 0.05em;
}
.hero-tagline {
  font: 600 clamp(22px, 2.6vw, 28px)/1.2 var(--font-accent);
  color: var(--text-secondary);
  letter-spacing: 0.25px;
  margin: 16px 0 0;
  text-align: center;
}
.section-h2 {
  font: 400 clamp(32px, 4.5vw, 48px)/1.05 var(--font-display);
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-align: center;
}
.section-h2::before {
  content: "•";
  color: var(--jester-gold);
  margin-right: 0.5ch;
}
.section-sub {
  font: 500 16px/24px var(--font-body);
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-eyebrow {
  display: block;
  font: 700 12px/16px var(--font-body);
  color: var(--jester-gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.feature-title { font: 700 20px/26px var(--font-body); color: var(--ivory); margin: 0; }
.feature-body  { font: 500 16px/24px var(--font-body); color: var(--text-secondary); margin: 0; }

.legal-h1 {
  font: 400 clamp(36px, 5vw, 52px)/1.05 var(--font-display);
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.legal-h2 {
  font: 700 22px/28px var(--font-body);
  color: var(--jester-gold);
  margin: 32px 0 12px;
}
.legal-h3 {
  font: 700 18px/24px var(--font-body);
  color: var(--ivory);
  margin: 20px 0 8px;
}
.legal-body p, .legal-body ul { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--jester-gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--ivory); }
.legal-meta { color: var(--text-tertiary); font-size: 14px; }

/* ============================================================
   Layout containers
   ============================================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 80px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }
section.features { padding-top: 72px; }
section.shots { padding-top: 72px; }

/* Body texture sections — every other section gets the harlequin tile at low opacity */
.has-texture {
  background-color: var(--bg-base);
  background-image: url("images/texture_harlequin_tile.webp");
  background-size: 200px 200px;
  background-blend-mode: soft-light;
}
.has-texture::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(26, 14, 31, 0.92);
  pointer-events: none;
}
.has-texture > * { position: relative; }

/* Stage divider — used between major sections */
.theatre-divider {
  height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'><path d='M0 0 Q30 12 60 0 T120 0' fill='none' stroke='%23E8B62B' stroke-width='1.5'/></svg>") repeat-x center / 120px 12px;
  opacity: 0.5;
}

/* ============================================================
   Nav
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 30;
  width: 100%;
  padding: 16px 0;
  background: rgba(26, 14, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline-soft);
}
.site-nav .row {
  display: flex; align-items: center; justify-content: space-between;
}
.wordmark {
  font: 400 24px/1 var(--font-display);
  letter-spacing: -0.5px;
  color: var(--ivory);
  display: inline-flex; align-items: center; gap: 0;
}
.wordmark .gold-i { color: var(--jester-gold); }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 18px;
  background: var(--royal-red);
  color: var(--ivory);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-md);
  font: 700 14px/1 var(--font-body);
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: background 160ms ease;
}
.nav-cta:hover { background: var(--royal-red-pressed); color: var(--ivory); }

/* ============================================================
   Hero — Immersive full-screen with curtain backdrop
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  padding: 64px 0 56px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,14,31,0.6) 0%, rgba(26,14,31,0.35) 35%, rgba(26,14,31,0.85) 100%),
    url("images/hero_curtain.webp") center / cover no-repeat,
    var(--grad-royal-curtain);
  z-index: -1;
}
.hero-spotlight {
  position: absolute; inset: -10% 0 -20%;
  background: var(--grad-gold-spotlight);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
  margin-top: 36px;
}

/* Buttons */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 28px;
  background: var(--royal-red);
  color: var(--ivory);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-theatre);
  font: 700 16px/20px var(--font-body);
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: background 160ms ease, transform 100ms ease;
  text-align: center;
}
.btn-cta:hover { background: var(--royal-red-pressed); color: var(--ivory); }
.btn-cta:active { transform: scale(0.98); box-shadow: none; }
.btn-cta.outline {
  background: transparent; color: var(--ivory);
  border: 1.5px solid var(--outline);
}
.btn-cta.outline:hover { background: var(--bg-surface); }
.btn-cta .icon { width: 22px; height: 22px; flex-shrink: 0; }

.hero-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 28px;
  color: var(--text-tertiary);
  font: 500 13px/18px var(--font-body);
}
.hero-foot .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-tertiary); }

/* ============================================================
   Features — Accordion (riddle-reveal motif)
   ============================================================ */
.features { background: var(--bg-base); }
.features .container { max-width: 880px; }

.accordion {
  display: flex; flex-direction: column; gap: 12px;
}
.acc-row {
  background: var(--bg-surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-theatre);
  overflow: hidden;
  transition: border-color 200ms ease;
}
.acc-row[x-data][x-bind\:class*="open"], .acc-row.is-open {
  border-color: var(--jester-gold);
}
.acc-head {
  display: flex; align-items: center; gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.acc-head:hover .acc-head-icon { color: var(--jester-gold); }
.acc-head-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  background: var(--bg-surface-accent);
  color: var(--jester-gold);
  transition: color 200ms ease;
}
.acc-head-icon svg { width: 22px; height: 22px; }
.acc-head-title { flex: 1; font: 700 19px/26px var(--font-body); color: var(--ivory); }
.acc-head-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary);
  transition: transform 240ms ease, color 200ms ease;
}
.acc-row[x-data] .acc-head-toggle { color: var(--jester-gold); }
.acc-body {
  padding: 0 22px 24px 78px;
  color: var(--text-secondary);
  font: 500 16px/26px var(--font-body);
}
.acc-body p { margin: 0 0 12px; }
.acc-body p:last-child { margin: 0; }
.acc-body .scene {
  margin: 16px 0 4px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--outline-soft);
}
.acc-body .scene img { width: 100%; display: block; }

/* ============================================================
   Screenshots — Featured + thumbnail nav (stage-lit)
   ============================================================ */
.shots {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.shots::before {
  /* upper spotlight cone */
  content: "";
  position: absolute; left: 50%; top: 0;
  width: 1100px; height: 700px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center top, rgba(232,182,43,0.32) 0%, rgba(232,182,43,0.08) 35%, rgba(232,182,43,0) 65%),
    conic-gradient(from 270deg at 50% 0%, rgba(232,182,43,0) 80deg, rgba(232,182,43,0.18) 90deg, rgba(232,182,43,0.18) 270deg, rgba(232,182,43,0) 280deg);
  filter: blur(20px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}
.shots::after {
  /* stage floor — radial vignette near phone base */
  content: "";
  position: absolute; left: 50%; bottom: -40px;
  width: 720px; height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(91,45,140,0.35) 0%, rgba(91,45,140,0.08) 40%, transparent 75%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}
.shots .container { position: relative; }

.shots-stage {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  margin-top: 24px;
  position: relative;
}
.shots-stage::before {
  /* gold halo behind the device */
  content: "";
  position: absolute;
  top: 30px; left: 50%;
  width: 460px; height: 580px;
  transform: translateX(-50%);
  background: var(--grad-gold-spotlight);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.shots-stage > * { position: relative; z-index: 1; }

/* CSS device frame — clay-purple bezel */
.device {
  position: relative;
  width: 280px;
  aspect-ratio: 420 / 912;
  padding: 14px 12px 18px;
  background: linear-gradient(180deg, #2A1A33 0%, #1A0E1F 100%);
  border: 1.5px solid var(--outline);
  border-radius: 38px;
  box-shadow:
    0 0 0 1px rgba(232,182,43,0.12) inset,
    0 12px 40px rgba(0,0,0,0.55),
    0 0 80px rgba(232,182,43,0.18),
    0 0 120px rgba(91,45,140,0.35);
}
/* stage-floor reflection */
.device::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -56px;
  width: 360px; height: 60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.12) 50%, transparent 75%);
  filter: blur(8px);
  pointer-events: none;
}
.device::before, .device::after {
  /* speaker / camera notch hint */
  content: "";
  position: absolute; left: 50%; transform: translateX(-50%);
  background: var(--bg-base);
}
.device::before { top: 22px; width: 70px; height: 6px; border-radius: 999px; opacity: 0.7; }
.device .device-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg-base);
}
.device .device-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

.thumbs-row {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
}
.thumb-btn {
  position: relative;
  width: 64px; aspect-ratio: 420/912;
  padding: 0;
  border-radius: 10px;
  border: 1.5px solid var(--outline);
  background: var(--bg-surface);
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, border-color 200ms ease;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn:hover { transform: translateY(-2px); }
.thumb-btn[aria-pressed="true"], .thumb-btn.is-active {
  border-color: var(--jester-gold);
  box-shadow: 0 0 0 2px rgba(232,182,43,0.18);
}
.thumb-btn .thumb-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  text-align: center;
  font: 700 9px/14px var(--font-body);
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 4px 4px;
}

/* ============================================================
   CTA — full-bleed harlequin + spotlight mesh + mascot
   ============================================================ */
.cta {
  position: relative;
  isolation: isolate;
  background: var(--bg-base);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,14,31,0.85) 0%, rgba(26,14,31,0.7) 50%, rgba(26,14,31,0.95) 100%),
    url("images/cta_spotlight_mesh.webp") center / cover no-repeat;
  z-index: -2;
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background: url("images/cta_harlequin.webp") center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  z-index: -1;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
}
@media (min-width: 880px) {
  .cta-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
  .cta-mascot { justify-self: end; }
}
.cta-mascot {
  position: relative;
  display: flex; justify-content: center;
}
.cta-mascot::before {
  content: "";
  position: absolute; inset: -8% -8% -8% -8%;
  background: var(--grad-gold-spotlight);
  opacity: 0.7;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}
.cta-mascot img { position: relative; z-index: 1; max-width: 320px; height: auto; }
.cta-content { color: var(--ivory); text-align: center; }
@media (min-width: 880px) { .cta-content { text-align: left; } }
.cta-content .section-h2 { text-align: inherit; }
.cta-content .section-h2::before { display: none; }
.cta-content .section-sub { margin-left: 0; margin-right: 0; max-width: 480px; text-align: inherit; }
@media (max-width: 879px) { .cta-content .section-sub { margin-left: auto; margin-right: auto; } }
.cta-content .hero-cta-row { justify-content: flex-start; margin-top: 24px; }
@media (max-width: 879px) { .cta-content .hero-cta-row { justify-content: center; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--outline-soft);
  background: var(--bg-base);
  padding: 32px 0 24px;
  color: var(--text-tertiary);
}
.site-footer .row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 24px;
  font: 500 13px/18px var(--font-body);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px 20px; }
.site-footer nav a { color: var(--text-secondary); }
.site-footer nav a:hover { color: var(--ivory); }
.site-footer .legal { color: var(--text-tertiary); }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page { padding: 88px 0 96px; min-height: 60vh; }
@media (max-width: 879px) { .legal-page { padding: 64px 0 72px; } }
.legal-page .container { max-width: 760px; }
.legal-page section { padding: 0; }
.legal-page .legal-h1 { margin-top: 0; margin-bottom: 12px; }
.legal-page .legal-meta { margin: 0 0 24px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-page { padding: 56px 0 56px; }
@media (max-width: 879px) {
  .contact-page { padding: 48px 0 32px; }
}
.contact-page .container { max-width: 1080px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 40px; }
}
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px;
  background: var(--bg-surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-theatre);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  background: var(--bg-surface-accent);
  color: var(--jester-gold);
  border: 1.5px solid var(--outline);
}
.contact-card h3 {
  margin: 0 0 6px;
  font: 700 16px/22px var(--font-body);
  color: var(--ivory);
}
.contact-card p {
  margin: 0;
  font: 500 14px/22px var(--font-body);
  color: var(--text-secondary);
}
.contact-card a { color: var(--jester-gold); text-decoration: underline; text-underline-offset: 3px; }
.contact-card a:hover { color: var(--ivory); }
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--bg-surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-theatre);
}
.contact-form > div { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font: 700 13px/16px var(--font-body);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--jester-gold);
}
.contact-form label small {
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: none;
  color: var(--text-tertiary);
  margin-left: 6px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  background: var(--bg-base);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font: 500 16px/22px var(--font-body);
  width: 100%;
  outline: none;
  transition: border-color 160ms ease;
}
.contact-form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M0 0l6 8 6-8z' fill='%23C7B8D1'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px 8px; padding-right: 40px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--jester-gold); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-tertiary); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input[type="file"] {
  background: transparent;
  border: 1.5px dashed var(--outline);
  border-radius: var(--r-sm);
  padding: 14px;
  color: var(--text-secondary);
  font: 500 14px/20px var(--font-body);
}
.contact-form button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px;
  background: var(--royal-red);
  color: var(--ivory);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-theatre);
  font: 700 16px/20px var(--font-body);
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: background 160ms ease, transform 100ms ease;
  align-self: flex-start;
  padding: 0 28px;
  text-align: center;
}
.contact-form button[type="submit"]:hover { background: var(--royal-red-pressed); }
.contact-form button[type="submit"]:active { transform: scale(0.98); box-shadow: none; }
@media (max-width: 540px) { .contact-form button[type="submit"] { align-self: stretch; } }

.contact-direct {
  margin-top: 24px;
  text-align: center;
  color: var(--text-tertiary);
  font: 500 14px/22px var(--font-body);
}

/* ============================================================
   Privacy acceptance button (required)
   ============================================================ */
.privacy-accept-btn {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 100;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0));
  background: linear-gradient(0deg, rgba(26,14,31,1) 0%, rgba(26,14,31,0.95) 60%, rgba(26,14,31,0) 100%);
  display: flex; justify-content: center; align-items: center;
}
.privacy-accept-btn.hidden { display: none !important; }
.accept-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px;
  background: var(--royal-red);
  color: var(--ivory);
  border: 1.5px solid var(--outline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-theatre);
  font: 700 16px/20px var(--font-body);
  letter-spacing: 0.25px;
  cursor: pointer;
  padding: 0 32px;
  width: 100%;
  max-width: 480px;
  text-align: center;
}
.accept-btn:hover { background: var(--royal-red-pressed); }
.accept-btn:active { transform: scale(0.98); box-shadow: none; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
