:root {
  --paper: #f4ead6;
  --paper-2: #efe3c8;
  --ink: #1b1610;
  --muted: #6a5c4d;
  --line: rgba(27, 22, 16, 0.12);
  --seal: #b42318;
  --seal-2: #8c1810;
  --navy: #141b28;
  --navy-2: #1d2736;
  --brass: #8d7048;
  --cream: #fff8ea;
  --shadow: 0 22px 50px rgba(27, 22, 16, 0.12);
  --radius: 4px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(180, 35, 24, 0.06), transparent 50%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  color: var(--ink);
  font-family: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.7;
  font-size: 17px;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 80;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--seal); text-underline-offset: 3px; }
a:hover { color: var(--seal-2); }
.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 8px; background: var(--cream); padding: 8px 12px; z-index: 90; }

.age-bar {
  background: var(--navy);
  color: #c9bba6;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 0;
}
.age-bar strong { color: #f3e2b8; }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 234, 214, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navrow {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.brand em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
}
.brand small { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
nav.desk { display: none; gap: 16px; }
nav.desk a { color: var(--ink); text-decoration: none; font-size: 14px; }
nav.desk a[aria-current="page"], nav.desk a:hover { color: var(--seal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px;
  border-radius: 999px; font-weight: 700; text-decoration: none; border: 0; cursor: pointer;
}
.btn-seal { background: var(--seal); color: #fff8ea; }
.btn-seal:hover { background: var(--seal-2); color: #fff8ea; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.menu-btn { display: inline-flex; background: none; border: 0; width: 44px; height: 44px; }
.mobile { display: none; padding: 8px 16px 20px; }
.mobile.open { display: grid; gap: 8px; }
.mobile a { color: var(--ink); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line); }

.hero {
  position: relative; overflow: hidden;
  min-height: 82vh; display: grid; place-items: end start;
  padding: 88px 0 48px;
  background: var(--navy);
  color: #f6efe2;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,27,40,.18), rgba(20,27,40,.88) 68%, #141b28);
}
.hero .wrap { position: relative; z-index: 1; }
.kicker {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #d8c39a; margin: 0 0 10px;
}
h1, h2, h3, .serif {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(34px, 6vw, 62px); margin: 0 0 16px; max-width: 14ch; }
h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 14px; }
h3 { font-size: 22px; margin: 28px 0 10px; }
.lead { font-size: 19px; max-width: 62ch; color: #ddd2bf; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-top: 28px;
}
.fact {
  border: 1px solid rgba(243,226,184,.18);
  padding: 12px 14px;
  background: rgba(20,27,40,.35);
}
.fact b { display: block; font-family: "Fraunces", Georgia, serif; font-size: 22px; color: #f3e2b8; }
.fact span { font-size: 13px; color: #c9bba6; }

.section { padding: 64px 0; }
.section + .section { border-top: 1px solid var(--line); }
.muted { color: var(--muted); }
.grid-2 { display: grid; gap: 22px; }
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card img { margin: -22px -22px 16px; width: calc(100% + 44px); max-width: none; aspect-ratio: 16/9; object-fit: cover; }
.table-wrap { overflow-x: auto; margin: 18px 0; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
tr:nth-child(even) td { background: rgba(141, 112, 72, 0.05); }
.note {
  border-left: 3px solid var(--seal);
  padding: 10px 14px;
  background: rgba(180, 35, 24, 0.06);
  margin: 18px 0;
}
.pull {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  color: var(--navy);
  margin: 28px 0;
}
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: inherit; }
.author-box {
  display: grid; gap: 16px; align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 16px;
  margin: 28px 0;
}
.author-box img { width: 84px; height: 84px; object-fit: cover; border-radius: 50%; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.faq summary { cursor: pointer; font-weight: 700; }
.cta-band {
  background: var(--navy);
  color: #f6efe2;
  padding: 48px 0;
}
.cta-band h2 { color: #f3e2b8; }
.related { display: grid; gap: 12px; }
.related a {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); padding: 14px 16px; background: var(--cream);
}
.related a:hover { border-color: var(--seal); }
footer.site {
  background: var(--navy);
  color: #c9bba6;
  padding: 40px 0 24px;
  font-size: 14px;
}
footer.site a { color: #f3e2b8; }
.footgrid { display: grid; gap: 18px; }
.legal { margin-top: 24px; color: #8e8273; font-size: 12px; }
.score {
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--seal); color: #fff8ea;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
}
.score-row { display: flex; gap: 18px; align-items: center; }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: var(--navy); padding: 10px 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  color: #f6efe2;
}
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin: 6px 0; }

@media (min-width: 880px) {
  nav.desk { display: flex; }
  .menu-btn { display: none; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: 1.2fr 0.8fr; }
  .author-box { grid-template-columns: 84px 1fr; }
  .footgrid { grid-template-columns: 1.4fr 1fr 1fr; }
  .related { grid-template-columns: repeat(3, 1fr); }
  .sticky-cta { display: none; }
}
