:root {
  --bg: #100b0e;
  --bg-2: #181117;
  --surface: #22181e;
  --line: rgba(232, 196, 168, 0.16);
  --gold: #e0c19a;
  --gold-2: #c9a078;
  --blush: #f0d4c8;
  --wine: #9a3d4c;
  --wine-deep: #6e2432;
  --text: #f6efe8;
  --muted: #c4b3a8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(154, 61, 76, 0.22), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(224, 193, 154, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.75;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  background: var(--gold);
  color: #1a1014;
  padding: 8px 12px;
  z-index: 100;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 7, 0.94);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.age-gate[hidden] { display: none; }

.age-card {
  width: min(520px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.site-disclaimer {
  background: #2a151b;
  color: var(--blush);
  font-size: 0.92rem;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  font-family: Figtree, system-ui, sans-serif;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(16, 11, 14, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.logo span {
  display: block;
  font-family: Figtree, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

nav.links {
  margin-left: auto;
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: Figtree, sans-serif;
  font-size: 0.95rem;
}

nav.links a {
  color: var(--blush);
  text-decoration: none;
}

nav.links a:hover,
nav.links a[aria-current="page"] {
  color: var(--gold);
}

.lang {
  display: flex;
  gap: 8px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.lang a {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.menu-btn {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: Figtree, sans-serif;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.kicker {
  font-family: Figtree, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0 0 10px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin: 0 0 12px;
}

.lede {
  font-size: 1.12rem;
  color: var(--blush);
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: Figtree, sans-serif;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #c24d5e, var(--wine-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(110, 36, 50, 0.45);
}

.btn-ghost {
  border-color: var(--gold-2);
  color: var(--gold);
  background: transparent;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card a { display: block; }

.hero-card p {
  font-family: Figtree, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 12px 8px 4px;
  text-align: center;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 20px 72px;
}

.article {
  background: rgba(34, 24, 30, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
}

.article p { margin: 0 0 1.15em; }
.article h2 { font-size: 2rem; margin: 1.6em 0 0.5em; }
.article h3 { font-size: 1.45rem; margin: 1.3em 0 0.4em; }

.pull {
  border-left: 3px solid var(--gold-2);
  padding: 4px 0 4px 18px;
  color: var(--blush);
  font-style: italic;
  font-size: 1.2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: Figtree, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}

.note, .card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

.card h3 { margin-top: 0; }

figure.embed {
  margin: 28px 0;
  background: #140e12;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

figure.embed figcaption {
  font-family: Figtree, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 10px 14px 14px;
}

.cta-band {
  margin: 36px 0 8px;
  padding: 28px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(154, 61, 76, 0.35), rgba(16, 11, 14, 0.2)),
    var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.cta-band h2 { margin-top: 0; }

footer {
  border-top: 1px solid var(--line);
  background: #0c080a;
  padding: 42px 20px 28px;
  font-family: Figtree, sans-serif;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

footer h2 {
  font-size: 1.15rem;
  margin: 0 0 10px;
}

footer p, footer li { color: var(--muted); font-size: 0.95rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin: 6px 0; }
footer a { text-decoration: none; }

.footer-cta img {
  width: min(280px, 100%);
  margin: 10px 0 12px;
  border-radius: 12px;
}

.legal {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero, .footer-inner, .grid-2 {
    grid-template-columns: 1fr;
  }
  .menu-btn { display: inline-flex; }
  nav.links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1116;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
  }
  nav.links.open { display: flex; }
  .lang {
    margin: 8px 0 0;
    padding: 8px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

/* ---------- Header call-to-action ---------- */

.btn-nav {
  margin-left: 16px;
  padding: 10px 18px;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6b7d;
  box-shadow: 0 0 0 0 rgba(255, 107, 125, 0.7);
  animation: live-pulse 1.9s infinite;
}

@keyframes live-pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 107, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 125, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Hero support ---------- */

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-family: Figtree, sans-serif;
  font-size: 0.96rem;
  color: var(--blush);
  display: grid;
  gap: 6px;
}

.hero-points li { padding-left: 22px; position: relative; }

.hero-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.disclosure {
  font-family: Figtree, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 12px 0 0;
}

.disclosure a { color: var(--gold-2); }

.hero-card .disclosure { text-align: center; margin: 12px 8px 2px; }

/* ---------- Quick facts ---------- */

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 2px 18px;
  font-family: Figtree, sans-serif;
  font-size: 0.95rem;
}

.facts dt { color: var(--gold); }
.facts dd { margin: 0 0 6px; color: var(--blush); }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 18px 0 6px;
  font-family: Figtree, sans-serif;
  font-size: 0.85rem;
}

.tags li {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--blush);
}

/* ---------- Steps ---------- */

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 18px 14px 58px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #c24d5e, var(--wine-deep));
  color: #fff;
  font-family: Figtree, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- FAQ ---------- */

.faq { margin: 24px 0 8px; display: grid; gap: 10px; }

.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
}

.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-family: Figtree, sans-serif;
  font-weight: 600;
  color: var(--blush);
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--gold); }
.faq details p { margin: 0 0 16px; font-size: 1.02rem; }

/* ---------- Breadcrumb ---------- */

.crumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 0;
  font-family: Figtree, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

.crumbs a { color: var(--gold-2); text-decoration: none; }
.crumbs span { margin: 0 6px; }

/* ---------- Related links ---------- */

.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 30px 0 6px;
}

.related a {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--blush);
  font-family: Figtree, sans-serif;
  font-size: 0.95rem;
}

.related a:hover { border-color: var(--gold-2); }
.related strong { display: block; color: var(--gold); font-size: 1.02rem; margin-bottom: 4px; }

@media (max-width: 860px) {
  .btn-nav {
    margin-left: auto;
    padding: 9px 15px;
    font-size: 0.85rem;
  }
  .menu-btn { margin-left: 10px; }
  .hero { padding-top: 20px; }
  .facts { grid-template-columns: 1fr; gap: 0; }
  .facts dt { margin-top: 10px; }
}

@media (max-width: 400px) {
  .logo { font-size: 1.25rem; }
  .btn-nav { padding: 9px 12px; font-size: 0.8rem; }
}

/* Anchor targets must clear the sticky header when jumped to. */
:target,
.article h2[id],
.article h3[id],
.faq,
.steps {
  scroll-margin-top: 96px;
}
