/* =====================================================================
   Lucky Lounge Club — Art-Deco speakeasy.
   Built fresh for this brand: Cinzel + Jost, burgundy & brass on a
   wine-black velvet night, brass hairline frames, arched proscenium hero.
   ===================================================================== */

:root {
  /* palette — burgundy velvet & brass */
  --ink:        #120a0c;   /* deepest backdrop */
  --night:      #1a0e11;   /* page background (wine-black) */
  --panel:      #251319;   /* raised surfaces */
  --panel-2:    #321a22;   /* lighter surface */
  --line:       #4a2832;   /* hairline borders */
  --gold:       #c89b54;   /* brass accent */
  --gold-soft:  #e7c684;   /* lighter brass */
  --gold-deep:  #8f6c34;
  --emerald:    #a8324a;   /* burgundy/wine accent (token name kept) */
  --emerald-lt: #d4647c;   /* lighter wine */
  --cream:      #f2e6da;   /* warm primary text */
  --muted:      #b99c93;   /* warm secondary text */
  --rose:       #e0917a;   /* warning / error warmth */

  /* type */
  --serif: "Cinzel", Georgia, "Times New Roman", serif;
  --deco:  "Cinzel Decorative", "Cinzel", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* shape */
  --r-sm: 3px;
  --r-md: 5px;
  --r-lg: 7px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.85);
  --shadow-soft: 0 10px 30px -18px rgba(0,0,0,.8);
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

/* The [hidden] attribute must always win over component display rules below
   (.agegate/.modal/.cookiebar/.stickybar set display:grid|flex, which would
   otherwise override the UA hidden=display:none and trap these overlays open). */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--cream);
  background: var(--night);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: .01em; margin: 0 0 .5em; }
p { margin: 0 0 1rem; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.4rem); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: .6rem 1rem; z-index: 200; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------------- Deco backdrop ---------------- */
.deco-bg { position: fixed; inset: 0; z-index: -1; background:
  radial-gradient(115% 75% at 50% -12%, #3a1622 0%, var(--night) 48%, var(--ink) 100%); }
.deco-bg__rays {
  position: absolute; inset: 0;
  /* soft brass glow top-centre + faint wine vignette corners — cheap to paint */
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(200,155,84,.10), transparent 70%),
    radial-gradient(90% 70% at 100% 100%, rgba(168,50,74,.10), transparent 60%),
    radial-gradient(90% 70% at 0% 100%, rgba(168,50,74,.08), transparent 60%);
}
.deco-bg__grain {
  position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- Buttons ---------------- */
.btn {
  --bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--serif); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .85rem 1.5rem; border-radius: var(--r-sm); cursor: pointer;
  border: 1px solid var(--gold-deep); background: var(--bg); color: var(--cream);
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }
.btn--primary {
  border-color: transparent; color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 8px 24px -10px rgba(200,162,74,.7);
}
.btn--primary:hover { box-shadow: 0 14px 32px -10px rgba(200,162,74,.85); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--sm { padding: .58rem 1rem; font-size: .72rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: .86rem; }
.btn--block { width: 100%; }

/* ---------------- Sticky masthead ---------------- */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: rgba(18,10,12,.78); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead::after {
  content: ""; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep) 20%, var(--gold) 50%, var(--gold-deep) 80%, transparent);
  opacity: .7;
}
.masthead__inner { display: flex; align-items: center; gap: 1.4rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__sigil { display: inline-flex; }
.brand__word { font-family: var(--deco); font-weight: 700; font-size: 1.12rem; letter-spacing: .06em; color: var(--cream); text-transform: uppercase; }
.brand__accent { color: var(--gold); }

.topnav { display: flex; gap: 1.4rem; margin-left: auto; }
.topnav a {
  font-family: var(--sans); font-weight: 500; font-size: .82rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted); padding: .4rem 0; position: relative;
  white-space: nowrap;
}
.topnav a:hover, .topnav a[aria-current="page"] { color: var(--cream); }
.topnav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.masthead__cta { display: flex; align-items: center; gap: .7rem; margin-left: 1rem; }

.coin-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--serif); font-weight: 600; font-size: .8rem; letter-spacing: .05em;
  color: var(--gold-soft); border: 1px solid var(--gold-deep); border-radius: 100px;
  padding: .35rem .8rem; background: rgba(200,162,74,.08);
}
.coin-chip .ico { stroke: var(--gold-soft); }

.topnav__toggle { display: none; flex-direction: column; gap: 4px; width: 40px; height: 36px; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; }
.topnav__toggle span { display: block; width: 18px; height: 2px; background: var(--cream); }

/* ---------------- Section scaffolding ---------------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
/* velvet band — alternating sections sit on a richer wine surface with hairlines */
.section--band {
  background:
    linear-gradient(180deg, rgba(168,50,74,.10), transparent 30%),
    var(--panel);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section--band::before, .section--band::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep) 50%, transparent); opacity: .5;
}
.section--band::before { top: 3px; } .section--band::after { bottom: 3px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--gold-deep);
}
.section__head { max-width: 680px; margin: 0 auto clamp(2.2rem,4vw,3.2rem); text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
.lede { color: var(--muted); font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* deco divider — brass fan crest */
.deco-rule { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1.1rem auto 0; color: var(--gold-deep); }
.deco-rule::before, .deco-rule::after { content: ""; height: 1px; width: clamp(48px, 14vw, 150px); background: linear-gradient(90deg, transparent, var(--gold)); }
.deco-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.deco-rule svg { width: 22px; height: 22px; fill: var(--gold); }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem,6vw,4rem); }
.hero__frame {
  position: relative; border: 1px solid var(--gold-deep);
  border-radius: 130px 130px var(--r-md) var(--r-md);   /* arched/proscenium top */
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.6rem, 5vw, 4rem) clamp(2rem,5vw,3.5rem);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(168,50,74,.22), transparent 55%),
    linear-gradient(180deg, rgba(50,26,34,.85), rgba(26,14,17,.6));
  box-shadow: var(--shadow); margin-top: 26px;
}
/* inset hairline frame following the arch */
.hero__frame::before {
  content: ""; position: absolute; inset: 9px; border: 1px solid var(--line);
  border-radius: 122px 122px var(--r-sm) var(--r-sm); pointer-events: none;
}
/* brass diamond crest sitting on the arch */
.hero__frame::after {
  content: ""; position: absolute; top: -14px; left: 50%; width: 26px; height: 26px;
  transform: translateX(-50%) rotate(45deg);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  border: 1px solid var(--night); box-shadow: 0 0 18px rgba(200,155,84,.5);
}
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--emerald-lt);
  border: 1px solid var(--emerald); border-radius: 100px; padding: .38rem .9rem; margin-bottom: 1.3rem;
  background: rgba(168,50,74,.12);
}
.hero__badge .ico { stroke: var(--emerald-lt); }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; }
.hero h1 .gold { color: var(--gold-soft); font-style: italic; }
.hero__sub { color: var(--muted); font-size: 1.1rem; max-width: 46ch; margin-bottom: 1.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.1rem; }
.hero__fine { font-size: .82rem; color: var(--muted); max-width: 50ch; }

/* welcome-offer — perforated velvet ticket with a brass seal */
.offer {
  position: relative; border: 1px solid var(--gold-deep); border-radius: var(--r-md);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(168,50,74,.30), transparent 62%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 2rem 1.7rem 1.8rem; text-align: center; box-shadow: var(--shadow-soft);
  /* perforated top + bottom edge via repeating notches */
  -webkit-mask:
    radial-gradient(8px at 8px 0, transparent 7px, #000 8px) 0 0/22px 100%,
    radial-gradient(8px at 8px 100%, transparent 7px, #000 8px) 0 0/22px 100%;
          mask:
    radial-gradient(8px at 8px 0, transparent 7px, #000 8px) 0 0/22px 100%,
    radial-gradient(8px at 8px 100%, transparent 7px, #000 8px) 0 0/22px 100%;
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
.offer__tag { font-family: var(--sans); font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); }
.offer__amt { font-family: var(--deco); font-weight: 700; color: var(--gold-soft); font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1; margin: .35rem 0 .1rem;
  text-shadow: 0 0 26px rgba(231,198,132,.4); }
.offer__label { font-family: var(--serif); letter-spacing: .14em; text-transform: uppercase; font-size: .9rem; color: var(--cream); }
.offer__list { list-style: none; padding: 1.2rem 0 0; margin: 1.1rem 0 1.3rem; text-align: left; display: grid; gap: .55rem; border-top: 1px dashed var(--line); }
.offer__list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; color: var(--cream); }
.offer__list .ico { stroke: var(--gold-soft); flex: none; margin-top: .15rem; }
.offer__fine { font-size: .72rem; color: var(--muted); margin: .8rem 0 0; }

/* ---------------- Pillars ---------------- */
.pillars { counter-reset: pillar; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.pillar {
  counter-increment: pillar; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r-md) var(--r-md); padding: 2rem 1.4rem 1.6rem;
  background: var(--panel);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pillar::before {
  content: counter(pillar, decimal-leading-zero); position: absolute; top: .3rem; right: .7rem;
  font-family: var(--deco); font-size: 3.4rem; line-height: 1; color: var(--gold); opacity: .12;
}
.pillar:hover { transform: translateY(-4px); background: var(--panel-2); border-top-color: var(--gold-soft); }
.pillar__ico {
  display: inline-flex; align-items: center; justify-content: center; width: 2.9rem; height: 2.9rem;
  border: 1px solid var(--gold-deep); border-radius: 50%; margin-bottom: 1rem;
  color: var(--gold-soft); background: rgba(200,155,84,.08);
}
.pillar__ico .ico { width: 1.4rem; height: 1.4rem; }
.pillar h3 { font-size: 1.05rem; letter-spacing: .04em; }
.pillar p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------------- Lobby (games) ---------------- */
.lobby { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  position: relative; display: block; border: 1px solid var(--gold-deep); border-radius: var(--r-md);
  overflow: hidden; background: var(--ink); cursor: pointer; text-align: left; aspect-ratio: 4 / 5;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-soft); box-shadow: 0 22px 44px -22px rgba(0,0,0,.9), 0 0 0 1px rgba(231,198,132,.25); }
.card__media { position: absolute; inset: 0; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card__media img { transform: scale(1.07); }
/* light velvet darken over the art (the title sits on a solid bar below) */
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(18,10,12,.35) 75%, rgba(18,10,12,.6));
}
.card__tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(18,10,12,.8); border: 1px solid var(--gold-deep); color: var(--gold-soft);
  padding: .3rem .65rem; border-radius: 100px;
}
/* solid velvet footer bar — guarantees the name is readable over any art */
.card__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: .95rem 1.1rem 1.05rem;
  background: linear-gradient(180deg, rgba(18,10,12,0), rgba(18,10,12,.92) 26%, var(--panel) 62%);
  border-top: 1px solid var(--gold-deep);
}
.card__body h3 { font-size: 1.18rem; margin: 0 0 .12rem; color: var(--cream); text-shadow: 0 1px 3px rgba(0,0,0,.7); }
.card__prov { font-size: .72rem; color: var(--gold-soft); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 .7rem; }
.card__play {
  display: inline-flex; align-items: center; gap: .45rem; font-family: var(--serif); font-weight: 600;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream);
  padding-top: .55rem; border-top: 1px solid rgba(231,198,132,.25);
}
.card__play::after { content: "\2192"; color: var(--gold-soft); transition: transform .2s ease; }
.card:hover .card__play::after { transform: translateX(5px); }

/* ---------------- Stats / social proof ---------------- */
/* one divided brass band rather than three separate boxes */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center;
  border: 1px solid var(--gold-deep); border-radius: var(--r-md); background: var(--panel); overflow: hidden; }
.stat { padding: 1.9rem 1rem; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num { font-family: var(--deco); font-weight: 700; font-size: clamp(1.9rem,4.6vw,2.7rem); color: var(--gold-soft); line-height: 1; }
.stat__lbl { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .55rem; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.quote { position: relative; border: 1px solid var(--line); border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--r-md) var(--r-md); padding: 2.4rem 1.4rem 1.5rem; background: var(--panel); }
.quote::before { content: "\201C"; position: absolute; top: .3rem; left: 1rem; font-family: var(--deco);
  font-size: 3.2rem; line-height: 1; color: var(--gold); opacity: .3; }
.quote p { color: var(--cream); position: relative; }
.quote__who { font-family: var(--serif); font-size: .85rem; letter-spacing: .06em; color: var(--gold-soft); margin: 0; }
.quote__stars { color: var(--gold); letter-spacing: 3px; font-size: .9rem; margin-bottom: .6rem; }

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: .8rem; background: var(--panel); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--cream); cursor: pointer;
  font-family: var(--serif); font-size: 1rem; font-weight: 600; padding: 1.1rem 1.3rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q::after { content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1; transition: transform .2s ease; }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--muted); }

/* ---------------- Trust strip ---------------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(18,10,12,.4); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2rem; padding: 1.6rem 0; text-align: center; }
.trust__inner p { margin: 0; color: var(--muted); font-size: .9rem; }
.trust__inner strong { color: var(--cream); }

/* ---------------- Game page ---------------- */
.gamebar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.gamebar h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin: 0; }
.game-meta { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.gchip { font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); border: 1px solid var(--gold-deep); border-radius: 100px; padding: .3rem .7rem; }
.game-stage { border: 1px solid var(--gold-deep); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.game-frame { position: relative; width: 100%; aspect-ratio: 16 / 10; }
.game-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.game-desc { color: var(--muted); margin-top: 1.2rem; max-width: 70ch; }
.game-desc strong { color: var(--cream); }
@media (max-width: 640px) { .game-frame { aspect-ratio: 4 / 5; } }

/* ---------------- Legal / content pages ---------------- */
.page-head { padding: clamp(2.4rem,6vw,4rem) 0 1rem; text-align: center; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-head p { color: var(--muted); max-width: 60ch; margin: 0 auto; }
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.3rem; margin-top: 2.2rem; color: var(--gold-soft); }
.prose h3 { font-size: 1.05rem; margin-top: 1.5rem; }
.prose p, .prose li { color: var(--cream); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose a { text-decoration: underline; }
.callout { border: 1px solid var(--gold-deep); border-left: 3px solid var(--gold); border-radius: var(--r-sm); padding: 1.1rem 1.3rem; background: rgba(200,162,74,.07); margin: 1.6rem 0; }
.callout p:last-child { margin: 0; }

/* ---------------- Forms (contact) ---------------- */
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--serif); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .95rem; color: var(--cream);
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: .8rem .9rem; transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted); margin-bottom: .9rem; }
.check input { margin-top: .25rem; accent-color: var(--emerald); flex: none; }
.check a { color: var(--gold-soft); text-decoration: underline; }
.form-msg { font-size: .86rem; padding: .6rem .8rem; border-radius: var(--r-sm); margin: 0 0 .8rem; }
.form-msg--error { color: var(--rose); border: 1px solid rgba(217,138,114,.5); background: rgba(217,138,114,.08); }
.form-msg--ok { color: var(--emerald-lt); border: 1px solid rgba(70,194,163,.5); background: rgba(70,194,163,.08); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.6rem; background: var(--panel); }
.contact-card h3 { color: var(--gold-soft); }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(18,10,12,.6)); margin-top: 2rem; padding: clamp(2.5rem,5vw,4rem) 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(1.5rem,4vw,3rem); }
.footer__blurb { color: var(--muted); font-size: .88rem; max-width: 42ch; }
.footer__blurb strong { color: var(--cream); }
.footer__age { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold-soft); font-family: var(--serif); font-weight: 700; margin-top: .5rem; }
.footer__head { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer__links a { color: var(--muted); font-size: .9rem; }
.footer__links a:hover { color: var(--cream); }
.footer__help { color: var(--muted); font-size: .88rem; }
.partners { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 1rem 0 0; }
.partner-chip { display: inline-flex; align-items: center; font-family: var(--serif); font-size: .76rem; letter-spacing: .06em; color: var(--cream); border: 1px solid var(--line); border-radius: var(--r-sm); padding: .45rem .8rem; }
.partner-chip:hover { border-color: var(--gold); color: var(--gold-soft); }
.footer__disclaimer { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.footer__disclaimer p { color: var(--muted); font-size: .8rem; max-width: 95ch; margin: 0 auto; text-align: center; }
.footer__base { margin-top: 1.6rem; text-align: center; color: var(--muted); font-size: .78rem; }
.footer__base p { margin: .2rem 0; }

/* ---------------- Sticky mobile CTA ---------------- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem clamp(1rem,4vw,2rem); background: rgba(18,10,12,.95); backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-deep);
}
.stickybar__txt { font-family: var(--serif); font-size: .82rem; letter-spacing: .04em; color: var(--gold-soft); }

/* ---------------- Age gate / scrim ---------------- */
.scrim { position: fixed; inset: 0; background: rgba(10,5,7,.74); backdrop-filter: blur(3px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.scrim.on { opacity: 1; pointer-events: auto; }

.agegate { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 1.2rem; background: rgba(10,5,7,.92); backdrop-filter: blur(6px); }
.agegate__panel {
  max-width: 480px; width: 100%; text-align: center; border: 1px solid var(--gold-deep);
  border-radius: var(--r-md); padding: clamp(1.8rem,5vw,2.6rem); background: var(--panel);
  box-shadow: var(--shadow); position: relative;
}
.agegate__panel::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--line); border-radius: var(--r-sm); pointer-events: none; }
.agegate__sigil { display: inline-flex; margin-bottom: .6rem; }
.agegate__title { font-size: 1.6rem; }
.agegate__copy { color: var(--muted); font-size: .95rem; }
.agegate__actions { display: grid; gap: .7rem; margin: 1.4rem 0 1rem; }
.agegate__fine { font-size: .76rem; color: var(--muted); margin: 0; }

/* ---------------- Signup modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem; overflow-y: auto; }
.modal__panel {
  max-width: 460px; width: 100%; border: 1px solid var(--gold-deep); border-radius: var(--r-md);
  background: var(--panel); box-shadow: var(--shadow); padding: clamp(1.6rem,4vw,2.2rem);
  position: relative; margin: auto;
}
.modal__panel::before { content: ""; position: absolute; inset: 7px; border: 1px solid var(--line); border-radius: var(--r-sm); pointer-events: none; }
.modal__close { position: absolute; top: .6rem; right: .8rem; background: none; border: 0; color: var(--muted); font-size: 1.8rem; line-height: 1; cursor: pointer; z-index: 2; }
.modal__close:hover { color: var(--gold); }
.modal__eyebrow { font-family: var(--sans); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 .3rem; }
.modal__title { font-size: 1.4rem; margin: 0 0 .5rem; }
.modal__sub { color: var(--muted); font-size: .88rem; margin-bottom: 1.2rem; }
.modal__fine { font-size: .72rem; color: var(--muted); margin: .9rem 0 0; }

/* ---------------- Cookie banner ---------------- */
.cookiebar {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 1rem; z-index: 110;
  width: min(720px, calc(100% - 2rem)); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  border: 1px solid var(--gold-deep); border-radius: var(--r-md); background: rgba(20,11,14,.97);
  padding: 1rem 1.2rem; box-shadow: var(--shadow);
}
.cookiebar p { margin: 0; font-size: .84rem; color: var(--muted); flex: 1 1 320px; }
.cookiebar a { text-decoration: underline; }
.cookiebar__actions { display: flex; gap: .6rem; margin-left: auto; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .topnav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: rgba(18,10,12,.98); border-bottom: 1px solid var(--line); padding: .5rem 0; transform: translateY(-130%); transition: transform .3s ease; }
  .topnav.open { transform: none; }
  .topnav a { padding: .9rem clamp(1rem,4vw,2.4rem); border-bottom: 1px solid var(--line); }
  .topnav__toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .lobby { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topnav { inset: 64px 0 auto 0; }
  .masthead__inner { min-height: 64px; }
  .pillars, .lobby, .stats { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .stat { padding: 1.2rem; }
  .topnav a[aria-current="page"]::after { display: none; }
}
