/* ================================================================
   WinePool Landing — Dark Premium Theme
   Cormorant Garamond (display) + Inter (body)
   ================================================================ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg:           #0d0a0b;
  --bg-alt:       #110d0f;
  --surface:      #1a1315;
  --surface-hi:   #221820;
  --border:       rgba(255,255,255,0.07);
  --border-hi:    rgba(255,255,255,0.13);

  --wine:         #8b1a2e;
  --wine-light:   #b02240;
  --gold:         #c9a84c;
  --gold-dim:     #96771f;

  --text:         #f0e8e0;
  --text-muted:   #9e8f88;
  --text-faint:   #6b5e58;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:        64px;
  --container:    1140px;
  --r:            12px;
  --r-sm:         8px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, button { font-family: inherit; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Typography helpers ──────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 300; }
em { font-style: italic; color: var(--gold); }
p { color: var(--text-muted); }
.muted { color: var(--text-muted); }

/* ── Section shared ──────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 { margin-top: 12px; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 40px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: .9rem;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: .82rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

.btn-primary {
  background: var(--wine);
  color: #fff;
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: var(--wine-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(139,26,46,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
}

/* ── Navigation ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
#nav.nav-scrolled {
  background: rgba(13,10,11,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .03em;
}

/* Hero logo */
.hero-logo {
  margin-bottom: 28px;
}
.hero-logo-img {
  height: 160px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(139,26,46,.45));
  transition: transform .4s var(--ease-out);
}
.hero-logo-img:hover {
  transform: scale(1.04) rotate(-1deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links li a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links li a.active { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s var(--ease-out);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(139,26,46,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(201,168,76,.06) 0%, transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: rgba(34,197,94,.35);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0; }
}

.hero h1 { margin-bottom: 24px; }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
}
.stat { display: flex; flex-direction: column; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-n {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-size: .75rem;
  color: var(--text-faint);
  letter-spacing: .04em;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border-hi);
  flex-shrink: 0;
}

/* ── Phone Mockup ─────────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrap {
  position: relative;
  width: 280px;
}
.phone-glow {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(139,26,46,.35) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  animation: glow-breathe 4s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: .7; transform: translateX(-50%) scaleY(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1.08); }
}

.phone {
  position: relative;
  width: 280px; height: 560px;
  background: #1a1315;
  border-radius: 26px;
  border: 1.5px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow:
    0 0 0 .5px rgba(255,255,255,.05),
    0 32px 80px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.phone-pill {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 5px;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 0 0;
}

/* Real screenshot inside phone */
.phone-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 24px;
}

/* ── Data-AOS scroll animation ───────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="150"] { transition-delay: .15s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }

/* ── Features ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover {
  border-color: rgba(201,168,76,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.f-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.feature-card p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.f-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.f-tags span {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-faint);
  padding: 3px 10px;
  border: 1px solid var(--border-hi);
  border-radius: 20px;
}

/* ── How It Works ─────────────────────────────────────────────── */
.how-grid {
  display: flex;
  align-items: flex-start;
}
.how-step {
  flex: 1;
  padding: 32px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .25s;
}
.how-step:hover { border-color: rgba(201,168,76,.2); }
.how-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--wine);
  opacity: .6;
  line-height: 1;
  margin-bottom: 16px;
}
.how-body h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.how-body p { font-size: .9rem; }
.how-arrow {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-dim);
  padding-top: 52px;
  opacity: .7;
}

/* ── Atlas ────────────────────────────────────────────────────── */
.atlas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.atlas-text .section-label { margin-bottom: 16px; display: inline-block; }
.atlas-text h2 { margin-bottom: 24px; }
blockquote {
  border-left: 2px solid var(--wine);
  padding-left: 20px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
}
.atlas-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.atlas-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s, background .2s;
}
.atlas-card:hover {
  border-color: rgba(201,168,76,.2);
  background: var(--surface-hi);
}
.atlas-flag { font-size: 1.5rem; flex-shrink: 0; }
.atlas-info { flex: 1; min-width: 0; }
.atlas-region {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.atlas-sub {
  font-size: .72rem;
  color: var(--text-faint);
  margin-top: 3px;
}
.atlas-tag {
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.atlas-card--more {
  grid-column: 1 / -1;
  justify-content: center;
  border-style: dashed;
  border-color: var(--border-hi);
}
.atlas-more-text {
  font-size: .82rem;
  color: var(--text-faint);
  font-style: italic;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.1rem;
  color: var(--text-faint);
  transition: transform .3s var(--ease-out), color .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-in-out), padding .35s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: .9rem; line-height: 1.75; }
.faq-a a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,168,76,.4); }
.faq-a a:hover { color: var(--text); }

/* ── CTA Section ──────────────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139,26,46,.1) 0%, transparent 65%),
    var(--bg);
}
.cta-box {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}
.cta-box .section-label { margin-bottom: 16px; display: inline-block; }
.cta-box h2 { margin-bottom: 16px; }
.cta-sub {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.email-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.email-form input[type="email"] {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 40px;
  padding: 14px 22px;
  color: var(--text);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.email-form input[type="email"]::placeholder { color: var(--text-faint); }
.email-form input[type="email"]:focus {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 40px;
  color: #4ade80;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.form-success.show { display: flex; }
.form-success span { font-size: 1rem; }

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-faint);
  margin-bottom: 40px;
}
.cta-note svg { flex-shrink: 0; opacity: .6; }

.rustore-wrap { display: flex; justify-content: center; }
.rustore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  transition: border-color .2s;
}
.rustore-badge:hover { border-color: rgba(201,168,76,.25); }
.rustore-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.rustore-label {
  font-size: .68rem;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 2px;
}
.rustore-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.rustore-soon {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.footer-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1.5px solid var(--text-faint);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-faint);
  margin-top: 16px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.footer-bottom p {
  font-size: .75rem;
  color: var(--text-faint);
}
.footer-warn {
  font-size: .72rem;
  color: var(--text-faint);
  opacity: .6;
}

/* ── Age Gate ─────────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,10,11,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate-box {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  padding: 52px 48px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.age-gate-icon { font-size: 2.5rem; margin-bottom: 20px; }
.age-gate-box h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text);
}
.age-gate-box p {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-hi); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.15); }

/* ── Selection ────────────────────────────────────────────────── */
::selection { background: rgba(139,26,46,.45); color: var(--text); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 52px;
  }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { max-width: 100%; margin-inline: auto; }
  .hero-logo { display: flex; justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat:first-child { padding-left: 24px; }

  .features-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

  .how-grid { flex-direction: column; max-width: 420px; margin-inline: auto; }
  .how-arrow { padding-top: 0; transform: rotate(90deg); width: auto; height: 40px; }

  .atlas-layout { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  blockquote { text-align: left; }
  .atlas-text .section-label { display: block; text-align: center; }
  .atlas-cards { grid-template-columns: 1fr; }
  .atlas-card--more { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --nav-h: 56px; }
  .section { padding: 72px 0; }
  .logo-img { height: 30px; }
  .hero-logo-img { height: 120px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,10,11,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform .35s var(--ease-out);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links li a { display: block; padding: 12px 16px; font-size: 1rem; border-radius: var(--r-sm); }
  .nav-links li:last-child { margin-top: 8px; }
  .nav-links li:last-child a { display: block; text-align: center; }
  .burger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .phone-wrap { width: 240px; }
  .phone { width: 240px; height: 480px; }
  .phone-pill { width: 68px; }

  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .stat { padding: 0 16px; }
  .stat-divider { display: none; }

  .email-form { flex-direction: column; }
  .email-form input[type="email"] { text-align: center; }
  .email-form .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }

  .age-gate-box { padding: 36px 24px; }
  .section-head { margin-bottom: 40px; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}

@media (max-width: 380px) {
  .phone-wrap { width: 220px; }
  .phone { width: 220px; height: 440px; }
  .hero-actions .btn-ghost { display: none; }
}
