:root {
  --ink: #18212a;
  --paper: #f6f1e4;
  --paper-deep: #e9dfc8;
  --surface: #fffdf6;
  --red: #c93138;
  --red-dark: #8e1f28;
  --gold: #f2b33d;
  --mint: #9fc9b7;
  --sky: #bdd9e8;
  --muted: #5e666c;
  --line: rgba(24, 33, 42, .19);
  --shadow: 0 18px 55px rgba(24, 33, 42, .12);
  --radius: 22px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0, rgba(242, 179, 61, .12), transparent 24rem),
    linear-gradient(var(--line) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 100% 32px, auto;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--red-dark); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--red); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .8rem;
  left: .8rem;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 790px); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 241, 228, .94);
  backdrop-filter: blur(16px);
}

.header-row { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; color: var(--ink); text-decoration: none; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 4px 4px 0 var(--gold);
  font: 800 .76rem/1 var(--font-body);
  letter-spacing: .04em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .98rem; letter-spacing: .06em; text-transform: uppercase; }
.brand-copy small { margin-top: .28rem; color: var(--muted); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }

.nav-toggle {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after { width: 21px; height: 2px; display: block; background: currentColor; content: ""; transition: transform .2s var(--ease), opacity .2s; }
.nav-toggle span { margin-block: 4px; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: none;
  padding: 1rem;
  background: var(--surface);
  border-bottom: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: block; }
.site-nav ul { margin: 0; padding: 0; display: grid; gap: .35rem; list-style: none; }
.site-nav a { display: block; padding: .75rem .9rem; color: var(--ink); border-radius: 10px; font-weight: 750; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; background: var(--red); }
.independent-pill { display: none; }

.hero { padding: clamp(2.3rem, 7vw, 6.8rem) 0 3.5rem; overflow: clip; }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1rem; color: var(--red-dark); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 4px; background: var(--gold); border: 1px solid var(--ink); content: ""; }
h1, h2, h3 { margin-top: 0; line-height: 1.04; }
h1, h2 { font-family: var(--font-display); font-weight: 900; letter-spacing: .012em; text-transform: uppercase; }
h1 { max-width: 12ch; margin-bottom: 1.2rem; font-size: clamp(3.25rem, 12vw, 7.4rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 6vw, 4.15rem); }
h3 { margin-bottom: .65rem; font-size: 1.22rem; }
.hero-lede { max-width: 630px; margin: 0; font-family: var(--font-serif); font-size: clamp(1.17rem, 2.2vw, 1.48rem); line-height: 1.48; }
.hero-actions { margin-top: 1.55rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .75rem 1.1rem; color: #fff; background: var(--red); border: 2px solid var(--ink); border-radius: 999px; box-shadow: 4px 4px 0 var(--ink); font-weight: 850; text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.button:hover { color: #fff; transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button.secondary { color: var(--ink); background: var(--gold); }
.button.ghost { color: var(--ink); background: var(--surface); }

.hero-visual { position: relative; min-height: 360px; }
.hero-photo { height: 100%; min-height: 360px; object-fit: cover; border: 3px solid var(--ink); border-radius: 36% 12px 36% 12px; box-shadow: 14px 14px 0 var(--red); }
.score-stamp { position: absolute; right: -.3rem; bottom: -.8rem; width: 138px; height: 138px; display: grid; place-items: center; padding: 1rem; text-align: center; background: var(--gold); border: 3px solid var(--ink); border-radius: 50%; transform: rotate(-7deg); font-size: .77rem; font-weight: 900; line-height: 1.18; letter-spacing: .07em; text-transform: uppercase; }
.score-stamp strong { display: block; font: 2.1rem/.9 var(--font-display); }

.disclaimer-strip { color: #fff; background: var(--ink); }
.disclaimer-strip .container { padding-block: .8rem; display: flex; gap: .7rem; align-items: flex-start; font-size: .8rem; line-height: 1.45; }
.disclaimer-strip strong { color: var(--gold); text-transform: uppercase; }

.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section.tight { padding-block: 2.8rem; }
.section.red { color: #fff; background: var(--red-dark); }
.section.ink { color: #fff; background: var(--ink); }
.section.surface { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.section-head p { margin: 0; font-family: var(--font-serif); font-size: 1.16rem; }

.card-grid { display: grid; gap: 1rem; }
.card { position: relative; padding: 1.35rem; color: var(--ink); background: var(--surface); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 6px 6px 0 rgba(24, 33, 42, .2); }
.card::before { position: absolute; top: 1.1rem; right: 1.1rem; width: 12px; height: 12px; background: var(--gold); border: 1px solid var(--ink); border-radius: 50%; content: ""; }
.card .number { color: var(--red); font: 2.8rem/1 var(--font-display); }
.card p:last-child { margin-bottom: 0; }
.card-link { color: inherit; text-decoration: none; }
.card-link::after { position: absolute; inset: 0; content: ""; }
.card-link:hover { color: var(--red-dark); }
.card-tag { display: inline-block; margin-bottom: .85rem; padding: .25rem .55rem; color: var(--ink); background: var(--mint); border: 1px solid var(--ink); border-radius: 999px; font-size: .69rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.feature-grid { display: grid; gap: 1.5rem; align-items: center; }
.feature-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 3px solid var(--ink); border-radius: 14px; box-shadow: 12px 12px 0 var(--gold); }
.feature-copy { padding: 1rem 0; }
.feature-copy h2 { max-width: 10ch; }
.check-list { margin: 1.3rem 0 0; padding: 0; display: grid; gap: .75rem; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before { position: absolute; top: .15rem; left: 0; width: 1.25rem; height: 1.25rem; display: grid; place-items: center; background: var(--gold); border: 1px solid var(--ink); border-radius: 50%; content: "✓"; font-size: .75rem; font-weight: 900; }

.metric-row { display: grid; gap: .9rem; }
.metric { padding: 1.15rem; background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; }
.metric strong { display: block; margin-bottom: .3rem; color: var(--red-dark); font: 2rem/1 var(--font-display); text-transform: uppercase; }

.route-line { position: relative; margin: 2rem 0 0; padding-left: 2rem; display: grid; gap: 1.6rem; }
.route-line::before { position: absolute; top: .4rem; bottom: .4rem; left: .55rem; width: 3px; background: repeating-linear-gradient(to bottom, var(--red) 0 8px, transparent 8px 15px); content: ""; }
.route-step { position: relative; }
.route-step::before { position: absolute; top: .15rem; left: -1.88rem; width: 1rem; height: 1rem; background: var(--gold); border: 2px solid var(--ink); border-radius: 50%; content: ""; }
.route-step p { margin-bottom: 0; }

.quote-panel { position: relative; padding: clamp(1.5rem, 5vw, 3rem); background: var(--mint); border: 3px solid var(--ink); border-radius: 18px 60px 18px 60px; box-shadow: 12px 12px 0 var(--ink); }
.quote-panel blockquote { margin: 0; font: clamp(1.45rem, 3vw, 2.25rem)/1.35 var(--font-serif); }
.quote-panel cite { display: block; margin-top: 1rem; font-size: .78rem; font-style: normal; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { padding: clamp(2.8rem, 7vw, 5.8rem) 0 2.5rem; }
.page-hero .crumbs { margin: 0 0 1.3rem; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; color: var(--muted); font-size: .78rem; font-weight: 700; }
.page-hero .crumbs li:not(:last-child)::after { margin-left: .5rem; color: var(--red); content: "/"; }
.page-hero h1 { max-width: 13ch; font-size: clamp(3rem, 9vw, 6.3rem); }
.page-hero .hero-lede { max-width: 760px; }
.page-meta { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .55rem; color: var(--muted); font-size: .78rem; font-weight: 750; }
.page-meta span { padding: .3rem .55rem; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; }

.article-layout { display: grid; gap: 2rem; align-items: start; }
.article-body { min-width: 0; }
.article-body > p:first-of-type { font-family: var(--font-serif); font-size: 1.24rem; line-height: 1.56; }
.article-body h2 { margin: 2.6rem 0 1rem; font: 900 clamp(1.8rem, 4vw, 2.9rem)/1.05 var(--font-display); }
.article-body h3 { margin-top: 1.8rem; }
.article-body p, .article-body li { max-width: 75ch; }
.article-body figure { margin: 2rem 0; }
.article-body figure img { width: 100%; max-height: 600px; object-fit: cover; border: 3px solid var(--ink); border-radius: 18px; }
figcaption { margin-top: .6rem; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.article-body table { width: 100%; margin: 1.8rem 0; border-collapse: collapse; background: var(--surface); font-size: .91rem; }
.article-body th, .article-body td { padding: .8rem; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.article-body th { color: #fff; background: var(--ink); }
.table-wrap { max-width: 100%; overflow-x: auto; border-radius: 12px; }
.callout { margin: 1.8rem 0; padding: 1.2rem; background: #fff2bd; border: 2px solid var(--ink); border-left: 8px solid var(--gold); border-radius: 10px; }
.callout.red { background: #f9d4d2; border-left-color: var(--red); }
.callout strong { display: block; margin-bottom: .35rem; }

.article-aside { padding: 1.15rem; background: var(--surface); border: 2px solid var(--ink); border-radius: 16px; }
.article-aside h2 { font: 900 1.35rem/1 var(--font-display); }
.article-aside ul { margin: 0; padding-left: 1.1rem; display: grid; gap: .45rem; font-size: .88rem; }
.article-aside .button { width: 100%; margin-top: 1rem; font-size: .82rem; }

.rating-grid { display: grid; gap: .75rem; }
.rating-item { padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.rating-item header { display: flex; justify-content: space-between; gap: 1rem; font-weight: 850; }
.rating-item p { margin: .35rem 0 0; color: var(--muted); font-size: .88rem; }
.bar { height: 8px; margin-top: .7rem; overflow: hidden; background: var(--paper-deep); border-radius: 999px; }
.bar span { height: 100%; display: block; background: var(--red); border-radius: inherit; }

.source-list { margin: 0; padding: 0; display: grid; gap: 1rem; list-style: none; }
.source-list li { padding: 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.source-list strong { display: block; margin-bottom: .3rem; }
.source-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.notice { padding: 1rem; background: var(--sky); border: 2px solid var(--ink); border-radius: 14px; }
.legal-copy h2 { margin-top: 2.5rem; font: 900 2rem/1 var(--font-display); }
.legal-copy h3 { margin-top: 1.5rem; }

.cta-panel { padding: clamp(1.5rem, 5vw, 3rem); display: grid; gap: 1rem; align-items: center; color: #fff; background: var(--red); border: 3px solid var(--ink); border-radius: 28px; box-shadow: 12px 12px 0 var(--ink); }
.cta-panel h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.4rem); }
.cta-panel p { max-width: 650px; margin: 0; }
.cta-panel .button { justify-self: start; color: var(--ink); background: var(--gold); }

.site-footer { padding: 3.2rem 0 1.5rem; color: #fff; background: var(--ink); }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand p { max-width: 470px; color: #ced2d5; }
.footer-title { margin: 0 0 .75rem; color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; display: grid; gap: .45rem; list-style: none; }
.footer-links a { color: #fff; text-decoration-color: rgba(255,255,255,.35); }
.footer-bottom { margin-top: 2.3rem; padding-top: 1.2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; color: #aeb5ba; border-top: 1px solid rgba(255,255,255,.15); font-size: .75rem; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 620px) {
  .card-grid.two, .metric-row, .rating-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; }
  .cta-panel { grid-template-columns: 1fr auto; }
  .cta-panel .button { justify-self: end; }
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: block; padding: 0; background: none; border: 0; box-shadow: none; }
  .site-nav ul { display: flex; align-items: center; gap: .15rem; }
  .site-nav a { padding: .58rem .7rem; font-size: .82rem; }
  .independent-pill { display: inline-flex; padding: .45rem .65rem; color: var(--red-dark); background: #fff1b9; border: 1px solid var(--ink); border-radius: 999px; font-size: .65rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 4rem; }
  .feature-grid { grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 6vw, 5rem); }
  .feature-grid.reverse .feature-copy { order: -1; }
  .card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 250px; gap: 3.5rem; }
  .article-aside { position: sticky; top: 104px; }
}

@media (min-width: 1100px) {
  .site-nav a { padding-inline: .85rem; }
  .metric-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .rating-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero-photo { min-height: 310px; }
  .score-stamp { width: 112px; height: 112px; font-size: .65rem; }
  .score-stamp strong { font-size: 1.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
