/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 0; }

:root {
  --bg: #fdf8f4;
  --bg-alt: #f6ede4;
  --bg-card: #ffffff;
  --line: rgba(46,20,30,0.08);
  --line-strong: rgba(46,20,30,0.16);
  --text: #2a1620;
  --text-dim: #5a4751;
  --text-mute: #8b7d83;
  --accent: #a8324d;
  --accent-2: #d4655a;
  --gold: #b88542;
  --ok: #2e7d5b;
  --container: 1180px;
  --measure: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 48px -20px rgba(168,50,77,.18), 0 8px 20px -10px rgba(46,20,30,.08);
  --shadow-card: 0 1px 2px rgba(46,20,30,.05), 0 8px 22px -10px rgba(46,20,30,.08);
}

/* ---------- Utility ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--measure); }
.container--narrow p, .container--narrow li, .container--narrow .myth__truth, .container--narrow .myth__claim {
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.container--narrow h2, .container--narrow h3 { text-wrap: balance; }
.text-center { text-align: center; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--text);
  text-wrap: balance;
  font-weight: 700;
}
h1 { font-size: clamp(34px, 4.4vw, 56px); }
h2 { font-size: clamp(26px, 3vw, 40px); }
h3 { font-size: 22px; margin-top: 28px; font-weight: 600; }
p { margin: 0 0 16px; color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }
em { color: var(--text); font-style: italic; }

.accent { color: var(--accent); }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(253,248,244,.85);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand__mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--text);
  font-family: 'Fraunces', serif;
  font-size: 13px; letter-spacing: .04em; color: var(--bg);
  font-weight: 700;
}
.brand__text { font-family: 'Fraunces', serif; font-size: 17px; letter-spacing: -0.01em; color: var(--text); }
.topnav { display: flex; gap: 28px; }
.topnav a { color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color .2s; }
.topnav a:hover { color: var(--accent); }
@media (max-width: 800px) { .topnav { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: .01em;
  text-align: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 8px 22px -8px rgba(46,20,30,.4);
}
.btn--primary:hover { background: var(--accent); box-shadow: 0 12px 30px -10px rgba(168,50,77,.5); }

.btn--cta {
  background: var(--accent);
  color: #fff;
  width: 100%;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px -10px rgba(168,50,77,.5);
}
.btn--cta:hover { background: var(--text); }

.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--lg { padding: 16px 30px; font-size: 15px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 90px 0 70px; overflow: hidden; isolation: isolate; }
.hero__bg {
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 25% 20%, rgba(168,50,77,.10), transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(212,101,90,.10), transparent 65%);
  filter: blur(28px);
  z-index: -1;
}
.hero__inner { position: relative; max-width: var(--measure); margin: 0 auto; }
.hero__title { margin-bottom: 28px; max-width: 16ch; }
.hero__lead { font-size: 18px; color: var(--text-dim); max-width: 60ch; margin: 0 0 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  font-size: 14px;
  color: var(--text-dim);
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets span { color: var(--accent); font-size: 8px; }

/* ---------- TOC ---------- */
.toc { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 14px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  transition: color .2s, border-color .2s, background .2s;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-size: 12px; color: var(--accent); font-weight: 600;
  font-style: italic;
}
.toc a:hover { color: var(--text); border-color: var(--accent); background: rgba(168,50,77,.05); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--ranking { padding-top: 60px; }
.section-header { margin: 0 auto 56px; max-width: var(--measure); }
.section-header__lead { font-size: 17px; max-width: 70ch; }

/* ---------- Cards ---------- */
.cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,50,77,.30);
  box-shadow: var(--shadow);
}
.card__rank {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 600;
  font-size: 18px;
  color: #fff;
  background: rgba(46,20,30,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
}
.card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-alt);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.badge {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.badge--new { background: rgba(46,125,91,.95); }
.badge--best { background: rgba(184,133,66,.95); }
.badge--official { background: rgba(74,98,148,.95); }
.badge--verify { background: rgba(168,50,77,.95); }
.badge--partner { background: rgba(108,75,140,.95); }

.card__body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card__name { font-family: 'Fraunces', serif; font-size: 24px; margin: 0 0 4px; font-weight: 600; }
.card__handle { font-size: 13px; color: var(--text-mute); margin: 0 0 14px; font-family: 'Inter', sans-serif; }
.card__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.card__score { font-weight: 600; color: var(--gold); font-size: 14px; }
.card__hook { font-size: 14px; color: var(--text-dim); flex: 1; min-height: 44px; line-height: 1.55; }
.card__meta { display: flex; align-items: center; gap: 10px; margin: 14px 0 18px; font-size: 12px; }
.card__price { color: var(--ok); font-weight: 600; letter-spacing: .04em; }
.card__divider { width: 4px; height: 4px; border-radius: 50%; background: var(--text-mute); }
.card__tag { color: var(--text-mute); }

/* Stars */
.stars {
  --pct: 0%;
  display: inline-block;
  height: 14px;
  width: 80px;
  background: linear-gradient(90deg, var(--gold) var(--pct), rgba(46,20,30,.12) var(--pct));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 14'><g fill='black'><polygon points='8,1 10,6 15,6.4 11,10 12.5,15 8,12.4 3.5,15 5,10 1,6.4 6,6'/><polygon points='24,1 26,6 31,6.4 27,10 28.5,15 24,12.4 19.5,15 21,10 17,6.4 22,6'/><polygon points='40,1 42,6 47,6.4 43,10 44.5,15 40,12.4 35.5,15 37,10 33,6.4 38,6'/><polygon points='56,1 58,6 63,6.4 59,10 60.5,15 56,12.4 51.5,15 53,10 49,6.4 54,6'/><polygon points='72,1 74,6 79,6.4 75,10 76.5,15 72,12.4 67.5,15 69,10 65,6.4 70,6'/></g></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 14'><g fill='black'><polygon points='8,1 10,6 15,6.4 11,10 12.5,15 8,12.4 3.5,15 5,10 1,6.4 6,6'/><polygon points='24,1 26,6 31,6.4 27,10 28.5,15 24,12.4 19.5,15 21,10 17,6.4 22,6'/><polygon points='40,1 42,6 47,6.4 43,10 44.5,15 40,12.4 35.5,15 37,10 33,6.4 38,6'/><polygon points='56,1 58,6 63,6.4 59,10 60.5,15 56,12.4 51.5,15 53,10 49,6.4 54,6'/><polygon points='72,1 74,6 79,6.4 75,10 76.5,15 72,12.4 67.5,15 69,10 65,6.4 70,6'/></g></svg>") no-repeat center / contain;
}

/* ---------- Comparison table ---------- */
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}
.ctable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.ctable th, .ctable td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.ctable thead th {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-mute);
  font-weight: 600;
  background: var(--bg-alt);
}
.ctable tbody tr:hover { background: rgba(168,50,77,.03); }
.ctable tbody tr:last-child td, .ctable tbody tr:last-child th { border-bottom: 0; }
.ctable th[scope="row"], .ctable th:first-child { font-family: 'Fraunces', serif; font-weight: 600; color: var(--text); font-size: 16px; }
.ctable th a { color: var(--text); }
.ctable th a:hover { color: var(--accent); }

.pill {
  display: inline-block;
  padding: 4px 10px; border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: #fff;
}
.pill--new { background: rgba(46,125,91,.95); }
.pill--best { background: rgba(184,133,66,.95); }
.pill--official { background: rgba(74,98,148,.95); }
.pill--verify { background: rgba(168,50,77,.95); }
.pill--partner { background: rgba(108,75,140,.95); }

.link-cta { font-weight: 600; color: var(--accent); border-bottom: 1px dashed transparent; transition: border-color .2s; }
.link-cta:hover { border-color: var(--accent); }

/* ---------- Checklist / Myths / FAQ ---------- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  padding: 16px 16px 16px 44px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "✓";
  position: absolute; left: 12px; top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: grid; place-items: center;
}

.myth {
  padding: 20px 0 24px 22px;
  margin: 0 0 12px;
  border-left: 3px solid var(--accent);
}
.myth__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 4px;
}
.myth__claim { font-family: 'Fraunces', serif; font-style: italic; font-size: 19px; color: var(--text); margin: 0 0 10px; line-height: 1.45; }
.myth__truth { margin: 0; }

.qa {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color .2s, background .2s;
  box-shadow: var(--shadow-card);
}
.qa[open] { border-color: rgba(168,50,77,.30); }
.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--text);
  font-size: 17px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  color: var(--accent);
  transition: transform .2s;
  line-height: 1;
}
.qa[open] summary::after { content: "−"; }
.qa p { padding: 0 24px 22px; margin: 0; font-size: 15px; }

/* ---------- Cities ---------- */
.cities {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 20px;
  font-size: 14px;
  color: var(--text-mute);
}
.cities li { padding: 8px 0; border-bottom: 1px dashed var(--line); }

/* ---------- Author ---------- */
.author { display: flex; gap: 22px; align-items: flex-start; }
.author__avatar {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 600; letter-spacing: .04em;
  background: var(--text);
  color: var(--bg);
  font-size: 18px;
}
.author__body h2 { font-size: 26px; margin: 4px 0 10px; }
@media (max-width: 540px) { .author { flex-direction: column; } }

/* ---------- Final CTA ---------- */
.section--cta-final { padding: 100px 0 120px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-alt);
  padding: 44px 0 36px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.footer__inner { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.footer__brand { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: var(--text); margin: 0 0 6px; }
.footer__copy { color: var(--text-mute); max-width: 560px; margin: 0; line-height: 1.55; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px 22px; }
.footer__links a { color: var(--text-dim); transition: color .2s; }
.footer__links a:hover { color: var(--accent); }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(46,20,30,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
}
.age-gate[hidden] { display: none; }
.age-gate__panel {
  max-width: 460px;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(46,20,30,.3);
}
.age-gate__panel h2 { font-size: 24px; margin: 0 0 12px; }
.age-gate__buttons { display: grid; gap: 10px; margin-top: 20px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
