/* ==========================================================================
   Repère — design system
   Inspired by the "Mind Palace" one-pager: warm near-black canvas, a single
   flame accent, an elegant light serif for display type, fully rounded pill
   controls, bento tiles, arch cards and a wordmark band.
   ========================================================================== */

:root {
  --ink:        #12110D;
  --ink-2:      #1A1813;
  --ink-3:      #23201A;
  --ink-4:      #2E2A22;

  --flame:      #E8451F;
  --flame-2:    #FF6B3D;
  --flame-soft: rgba(232, 69, 31, .14);

  --cream:      #EFE9DA;
  --cream-2:    #DCD4C2;
  --sage:       #D7E0CD;

  --line:       rgba(239, 233, 218, .13);
  --line-2:     rgba(239, 233, 218, .22);
  --muted:      rgba(239, 233, 218, .62);
  --muted-2:    rgba(239, 233, 218, .44);

  --serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-arch: 220px 220px 24px 24px;

  --wrap: 1200px;
  --gut: clamp(18px, 4vw, 40px);
}

/* ------------------------------ reset ---------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--flame); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--flame); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-size: 13px; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.icon { width: 1em; height: 1em; flex: none; }

/* ---------------------------- typography ------------------------------- */

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow--flame { color: var(--flame-2); }

.shead { max-width: 720px; margin-bottom: clamp(34px, 5vw, 58px); }
.shead--center { margin-inline: auto; text-align: center; }
.shead__title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.shead__lede { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); margin: 0; }
.shead--onflame .eyebrow { color: rgba(255,255,255,.72); }
.shead--onflame .shead__title { color: #fff; }

.prose h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin: 0 0 18px;
}
.prose { margin-bottom: 46px; }
.prose p { color: var(--muted); max-width: 68ch; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--flame-2); text-decoration: underline; text-underline-offset: 3px; }

.lic {
  display: inline-block;
  background: var(--flame-soft);
  border: 1px solid rgba(232, 69, 31, .34);
  color: var(--flame-2);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12.5px;
  letter-spacing: .02em;
  word-break: break-all;
}
.lic--lg { font-size: 14px; padding: 5px 11px; }

.mini18 {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 26px; height: 18px; padding: 0 5px;
  border: 1px solid var(--flame); border-radius: 999px;
  color: var(--flame-2); font-size: 10px; font-weight: 700; letter-spacing: .04em;
  vertical-align: middle;
}
.mini18--lg { min-width: 40px; height: 28px; font-size: 13px; margin-bottom: 12px; }

/* ------------------------------ buttons -------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn .icon { width: 13px; height: 13px; }
.btn:hover { transform: translateY(-1px); }

.btn--flame   { background: var(--flame); color: #fff; }
.btn--flame:hover { background: var(--flame-2); }

.btn--outline { background: transparent; color: var(--cream); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--cream); background: rgba(239,233,218,.06); }

.btn--ghost   { background: rgba(239,233,218,.07); color: var(--cream); border-color: var(--line); }
.btn--ghost:hover { background: rgba(239,233,218,.13); }

.btn--dark    { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: #000; }

.btn--sm { padding: 11px 18px; font-size: 10.5px; }

.linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--muted); text-align: left;
  border-bottom: 1px dashed var(--line-2);
}
.linkbtn:hover { color: var(--cream); }

/* ------------------------------ age bar -------------------------------- */

.agebar {
  background: var(--flame);
  color: #fff;
  font-size: 12px;
  letter-spacing: .01em;
}
.agebar__inner {
  display: flex; align-items: center; gap: 12px;
  min-height: 38px; padding-block: 7px;
  flex-wrap: wrap;
}
.agebar__badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 20px;
  background: #fff; color: var(--flame);
  border-radius: 999px; font-weight: 700; font-size: 11px; letter-spacing: .04em;
  flex: none;
}
.agebar__text { flex: 1 1 260px; opacity: .95; }
.agebar__link { color: #fff; font-weight: 600; text-underline-offset: 3px; }

/* ------------------------------ masthead ------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 90;
  /* raised above the consent banner while the mobile menu is open */
}
body.nav-open .masthead { z-index: 130; }
.masthead {
  background: rgba(18, 17, 13, .88);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 74px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__mark {
  width: 30px; height: 30px; flex: none;
  border-radius: 50% 50% 50% 6px;
  background: var(--flame);
  box-shadow: inset 0 0 0 4px var(--ink);
}
.logo__mark--lg { width: 44px; height: 44px; box-shadow: inset 0 0 0 6px var(--ink); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: var(--serif); font-size: 25px; letter-spacing: -.01em; }
.logo__tag { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: block; padding: 9px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500; text-decoration: none; color: var(--muted);
  transition: color .18s ease, background .18s ease;
}
.nav__link:hover { color: var(--cream); background: rgba(239,233,218,.06); }
.nav__link.is-active { color: var(--cream); background: rgba(239,233,218,.09); }

.masthead__aside { display: flex; align-items: center; gap: 12px; }
.pill-age {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 26px;
  border: 1px solid var(--flame); border-radius: 999px;
  color: var(--flame-2); font-size: 11px; font-weight: 700; letter-spacing: .05em;
}
.langswitch {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-decoration: none;
  transition: border-color .18s ease;
}
.langswitch:hover { border-color: var(--cream); }
.langswitch__cur { color: var(--cream); }
.langswitch__sep, .langswitch__alt { color: var(--muted-2); }

.burger {
  display: none; width: 42px; height: 42px;
  background: none; border: 1px solid var(--line-2); border-radius: 999px;
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 16px; height: 1.5px; background: var(--cream); transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -------------------------------- hero --------------------------------- */

.hero { position: relative; padding-top: clamp(48px, 7vw, 88px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 60vh;
  background: radial-gradient(60% 60% at 22% 22%, rgba(232,69,31,.22), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 60px);
  align-items: start;
  padding-bottom: clamp(40px, 6vw, 72px);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.06;
  margin-bottom: 18px;
  max-width: 15ch;
}
.hero__lede { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); max-width: 56ch; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero__note { font-size: 12px; color: var(--muted-2); max-width: 60ch; margin: 0; }

.hero__panel {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
}
.licstack { display: grid; gap: 14px; }
.licstack__item {
  display: grid; gap: 7px;
  padding: 16px 18px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.licstack__name { font-family: var(--serif); font-size: 22px; line-height: 1; }
.licstack__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: .11em; text-transform: uppercase; font-weight: 600;
  color: var(--flame-2); text-decoration: none;
}
.licstack__link .icon { width: 11px; height: 11px; }
.licstack__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.licstack__foot { margin: 16px 0 0; font-size: 11.5px; color: var(--muted-2); }

/* ------------------------------ marquee -------------------------------- */

.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  padding-block: 14px;
}
.marquee__track { display: flex; gap: 48px; white-space: nowrap; animation: slide 34s linear infinite; }
.marquee__track span {
  font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted-2); flex: none;
}
@keyframes slide { to { transform: translateX(calc(-100% / 3 - 16px)); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ------------------------------- stats --------------------------------- */

.stats { padding-block: clamp(40px, 5vw, 64px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--ink); padding: clamp(22px, 3vw, 32px); display: grid; gap: 8px; }
.stat__v { font-family: var(--serif); font-size: clamp(34px, 4vw, 46px); line-height: 1; color: var(--flame-2); }
.stat__l { font-size: 12.5px; color: var(--muted); }

/* ------------------------------- bento --------------------------------- */

.bento { padding-block: clamp(44px, 6vw, 84px); background: var(--ink-2); border-block: 1px solid var(--line); }
.bento__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tile {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
  transition: border-color .2s ease, transform .2s ease;
}
.tile:hover { border-color: var(--line-2); transform: translateY(-3px); }
.tile__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 18px;
  border-radius: 14px; background: var(--flame-soft); color: var(--flame-2);
  border: 1px solid rgba(232,69,31,.28);
}
.tile__icon .icon { width: 21px; height: 21px; }
.tile__title { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.tile__text { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ------------------------------ brands --------------------------------- */

.brands { padding-block: clamp(44px, 6vw, 84px); }
.brands--top { padding-top: clamp(18px, 3vw, 36px); }
.brands__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.brands__more { margin: 34px 0 0; text-align: center; }

.bcard {
  display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-arch);
  overflow: hidden;
  transition: border-color .2s ease;
}
.bcard:hover { border-color: rgba(232,69,31,.4); }

/* The arch curve eats the top corners, so the head is a single centred
   column pushed clear of it — nothing sits where the card is narrowing. */
.bcard__head {
  display: flex; align-items: center; justify-content: center;
  padding: clamp(64px, 8vw, 96px) clamp(22px, 2.6vw, 32px) 26px;
  background: linear-gradient(180deg, rgba(232,69,31,.16), transparent);
}
/* Operator logos sit on a light plate so each mark keeps its own colours —
   no recolouring, no filters applied to a third-party trade mark. */
.bcard__logo {
  flex: 0 1 auto; min-width: 0;
  display: flex; align-items: center; justify-content: center;
  width: 216px; height: 78px;
  padding: 14px 26px;
  background: var(--cream);
  border-radius: var(--r-md);
}
.bcard__logo img { width: auto; height: auto; max-width: 100%; max-height: 42px; object-fit: contain; }

.bcard__title {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.bcard__rate { flex: none; text-align: right; display: flex; align-items: baseline; gap: 9px; }
.bcard__rateval { font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--flame-2); }
.bcard__ratelab { font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); line-height: 1.5; text-align: left; }

.bcard__body { padding: 0 clamp(22px, 2.6vw, 32px); flex: 1; }
.bcard__name { font-family: var(--serif); font-size: 32px; line-height: 1; }

.bcard__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin: 0 0 20px; }
.bcard__meta dt { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 5px; }
.bcard__meta dd { margin: 0; font-size: 13.5px; color: var(--cream); }

.bcard__list { display: grid; gap: 9px; margin-bottom: 18px; }
.bcard__list li { display: flex; gap: 9px; font-size: 13.5px; color: var(--muted); }
.bcard__list .icon { width: 15px; height: 15px; margin-top: 4px; color: var(--flame-2); }

.bcard__verify { margin: 0 0 20px; font-size: 12px; }
.bcard__verify a { display: inline-flex; align-items: center; gap: 7px; color: var(--flame-2); text-decoration: none; }
.bcard__verify a:hover { text-decoration: underline; text-underline-offset: 3px; }
.bcard__verify .icon { width: 14px; height: 14px; }

.bcard__actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 clamp(22px, 2.6vw, 32px) 18px; }
.bcard__actions .btn { flex: 1 1 auto; justify-content: center; }

.bcard__disc {
  margin: 0; padding: 14px clamp(22px, 2.6vw, 32px) 22px;
  border-top: 1px solid var(--line);
  font-size: 11px; color: var(--muted-2); line-height: 1.55;
}

/* ------------------------------- steps --------------------------------- */

.steps { background: var(--flame); color: #fff; padding-block: clamp(48px, 6vw, 88px); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { padding: clamp(20px, 2.4vw, 30px); border-left: 1px solid rgba(255,255,255,.28); }
.step:first-child { padding-left: 0; border-left: 0; }
.step__label { display: block; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 20px; }
.step__n { display: block; font-family: var(--serif); font-size: clamp(52px, 7vw, 84px); line-height: .85; margin-bottom: 20px; }
.step__title { font-family: var(--serif); font-size: 26px; margin-bottom: 10px; }
.step__text { color: rgba(255,255,255,.86); font-size: 14.5px; margin: 0; }

/* ------------------------- responsible betting ------------------------- */

.resp { padding-block: clamp(48px, 6vw, 88px); background: var(--ink-2); border-block: 1px solid var(--line); }
.bubbles { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 940px; margin-inline: auto; }
.bubble {
  padding: 14px 24px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--ink);
}
.bubble--1 { border-color: rgba(232,69,31,.34); color: var(--cream); }
.bubble--2 { background: var(--ink-3); }
.resp__cta { text-align: center; margin: 34px 0 0; }

/* ------------------------------ page head ------------------------------ */

.phead { padding-block: clamp(44px, 6vw, 76px) clamp(24px, 3vw, 40px); position: relative; }
.phead::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 100%;
  background: radial-gradient(50% 70% at 18% 0%, rgba(232,69,31,.16), transparent 70%);
  pointer-events: none;
}
.phead--tall { padding-block: clamp(70px, 10vw, 130px); }
.phead__inner { position: relative; max-width: 820px; }
.phead__title { font-family: var(--serif); font-size: clamp(34px, 5vw, 58px); line-height: 1.05; margin-bottom: 16px; }
.phead__lede { color: var(--muted); font-size: clamp(15px, 1.6vw, 17.5px); margin-bottom: 14px; }
.phead__meta { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 0; }

/* ------------------------------ crumbs --------------------------------- */

.crumbs { padding-top: 22px; font-size: 12px; color: var(--muted-2); }
.crumbs .wrap { display: flex; gap: 9px; flex-wrap: wrap; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--cream); }

/* --------------------------- review header ----------------------------- */

.rhead { padding-block: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 40px); position: relative; }
.rhead::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46% 70% at 78% 10%, rgba(232,69,31,.18), transparent 70%);
}
.rhead__grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 3vw, 48px); align-items: center; }
.rhead__title { font-family: var(--serif); font-size: clamp(40px, 6vw, 68px); line-height: 1; margin-bottom: 14px; }
.rhead__sub { color: var(--muted); font-size: clamp(15px, 1.6vw, 17.5px); max-width: 52ch; margin-bottom: 24px; }
.rhead__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.rhead__meta { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin: 0; }

.rhead__logo {
  display: grid; gap: 20px; justify-items: center; align-content: center;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-arch);
}
.rhead__logo__plate {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 300px; min-height: 116px;
  padding: 24px 32px;
  background: var(--cream);
  border-radius: var(--r-md);
}
.rhead__logo img { width: auto; height: auto; max-width: 100%; max-height: 68px; object-fit: contain; }
.rhead__score { text-align: center; }
.rhead__scoreval { display: block; font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--flame-2); }
.rhead__scorelab { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

/* --------------------------- licence panel ----------------------------- */

.licpanel { padding-block: clamp(14px, 2vw, 26px); }
.licpanel__box {
  background: var(--ink-2);
  border: 1px solid rgba(232,69,31,.3);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
}
.licpanel__head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--flame-2); }
.licpanel__head .icon { width: 22px; height: 22px; }
.licpanel__head h2 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.licpanel__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px 26px; margin: 0 0 24px; }
.licpanel__grid dt { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 7px; }
.licpanel__grid dd { margin: 0; font-size: 14px; }
.licpanel__links { display: flex; flex-wrap: wrap; gap: 10px; }

/* ------------------------- review body layout -------------------------- */

.rbody { padding-block: clamp(36px, 5vw, 70px); }
.rbody__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 56px); align-items: start; }

.summary {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--flame);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: clamp(20px, 2.4vw, 28px);
  margin-bottom: 42px;
}
.summary p { margin: 0; color: var(--cream); font-size: 15.5px; }

.verdict {
  background: var(--sage); color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  margin-top: 8px;
}
.verdict .eyebrow { color: rgba(18,17,13,.6); }
.verdict p { color: rgba(18,17,13,.86); }
.verdict__cta { margin: 20px 0 14px; }
.verdict__disc { font-size: 11.5px; color: rgba(18,17,13,.6); margin: 0; }
.verdict__disc .mini18 { border-color: var(--ink); color: var(--ink); }

.sbox {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 28px);
  margin-bottom: 16px;
}
.sbox--sticky { position: sticky; top: 96px; }
.sbox__h { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.sbox__p { font-size: 13.5px; color: var(--muted); }
.sbox--good { border-color: rgba(215,224,205,.24); }
.sbox--warn { border-color: rgba(232,69,31,.3); }
.sbox--age { background: var(--flame-soft); border-color: rgba(232,69,31,.34); }
.sbox--age p { font-size: 13px; color: var(--cream); }
.sbox--age a { font-size: 12.5px; color: var(--flame-2); text-underline-offset: 3px; }

.scores { display: grid; gap: 16px; }
.score { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: center; }
.score__label { font-size: 12.5px; color: var(--muted); }
.score__val { font-family: var(--serif); font-size: 19px; color: var(--flame-2); }
.score__bar { grid-column: 1 / -1; height: 4px; border-radius: 999px; background: rgba(239,233,218,.1); overflow: hidden; }
.score__bar span { display: block; height: 100%; border-radius: 999px; background: var(--flame); }

.ticks { display: grid; gap: 11px; }
.ticks li { display: flex; gap: 10px; font-size: 13.5px; color: var(--muted); }
.ticks .icon { width: 15px; height: 15px; margin-top: 4px; flex: none; }
.sbox--good .ticks .icon { color: var(--sage); }
.sbox--warn .ticks .icon { color: var(--flame-2); }

.deflist { display: grid; gap: 14px; margin: 0; }
.deflist dt { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.deflist dd { margin: 0; font-size: 13.5px; }

.sidenav { display: grid; gap: 4px; margin-bottom: 18px; }
.sidenav a { display: block; padding: 9px 13px; border-radius: 999px; font-size: 13px; text-decoration: none; color: var(--muted); }
.sidenav a:hover { background: rgba(239,233,218,.06); color: var(--cream); }
.sidenav a.is-active { background: var(--flame-soft); color: var(--flame-2); }

.otherbrand { padding-block: clamp(36px, 5vw, 70px); background: var(--ink-2); border-top: 1px solid var(--line); }
.otherbrand .brands__grid { grid-template-columns: minmax(0, 620px); justify-content: center; }

/* ------------------------------- tables -------------------------------- */

.lictable { padding-block: clamp(36px, 5vw, 70px); background: var(--ink-2); border-block: 1px solid var(--line); }
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--ink); }
.dtable { min-width: 760px; font-size: 13.5px; }
.dtable th, .dtable td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.dtable thead th {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600; background: var(--ink-3);
}
.dtable tbody tr:last-child th, .dtable tbody tr:last-child td { border-bottom: 0; }
.dtable tbody th { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.dtable td { color: var(--muted); }
.dtable a { color: var(--flame-2); text-decoration: none; }
.dtable a:hover { text-decoration: underline; text-underline-offset: 3px; }
.dtable--compact { min-width: 620px; font-size: 13px; }
.dtable--compact tbody th { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--cream); }

.tablenote { display: flex; gap: 10px; margin: 18px 0 0; font-size: 12.5px; color: var(--muted-2); }
.tablenote .icon { width: 16px; height: 16px; margin-top: 3px; color: var(--flame-2); flex: none; }

/* ------------------------------ callout -------------------------------- */

.callout { padding-block: clamp(36px, 5vw, 70px); }
.callout__inner { max-width: 780px; }
.callout__text { color: var(--muted); font-size: 15.5px; }
.callout__age { font-size: 12.5px; color: var(--muted-2); margin: 0; }
.callout--inline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 44px; padding: clamp(22px, 2.6vw, 30px);
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.callout--inline p { margin: 0; max-width: 62ch; }

/* --------------------------------- faq --------------------------------- */

.faq { padding-block: clamp(24px, 3vw, 44px) clamp(44px, 6vw, 80px); }
.faq__group { margin-bottom: clamp(36px, 4vw, 56px); }
.faq__gtitle {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--serif); font-size: clamp(24px, 3vw, 34px);
  padding-bottom: 18px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.faq__gn { font-size: 12px; font-family: var(--sans); letter-spacing: .16em; color: var(--flame-2); }
.faq__list { display: grid; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: clamp(15px, 1.7vw, 17.5px); font-weight: 500;
  transition: color .18s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--flame-2); }
.qa__plus { position: relative; width: 16px; height: 16px; flex: none; margin-top: 5px; }
.qa__plus::before, .qa__plus::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.5px;
  background: var(--flame-2); transition: transform .2s ease;
}
.qa__plus::after { transform: rotate(90deg); }
.qa details[open] .qa__plus::after, details[open] .qa__plus::after { transform: rotate(0deg); }
.qa__a { padding: 0 0 22px; max-width: 78ch; }
.qa__a p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* ------------------------------ contact -------------------------------- */

.contact { padding-block: clamp(24px, 3vw, 44px) clamp(44px, 6vw, 80px); }
.ccards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: clamp(30px, 4vw, 52px); }
.ccard { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 2.4vw, 28px); }
.ccard__value { display: block; font-family: var(--serif); font-size: clamp(18px, 2vw, 23px); color: var(--flame-2); text-decoration: none; word-break: break-all; margin-bottom: 8px; }
.ccard__value:hover { text-decoration: underline; text-underline-offset: 4px; }
.ccard__note { font-size: 12.5px; color: var(--muted-2); margin: 0; }

.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
.contact__form { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.req { color: var(--flame-2); letter-spacing: .04em; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--line-2); border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--flame); }
.field__note { font-size: 12px; color: var(--muted-2); margin: 0 0 18px; }
.field__note a { color: var(--flame-2); }

.flash { display: flex; gap: 10px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 13.5px; margin-bottom: 20px; }
.flash .icon { width: 16px; height: 16px; margin-top: 3px; flex: none; }
.flash--ok { background: rgba(215,224,205,.12); border: 1px solid rgba(215,224,205,.34); color: var(--sage); }
.flash--err { background: var(--flame-soft); border: 1px solid rgba(232,69,31,.4); color: var(--flame-2); }

.contact__notice .ticks { margin-bottom: 20px; }

/* ------------------------------- footer -------------------------------- */

.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-top: clamp(46px, 6vw, 78px); position: relative; overflow: hidden; }

.footer__top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(28px, 4vw, 60px); padding-bottom: clamp(34px, 4vw, 52px); border-bottom: 1px solid var(--line); }
.footer__about { color: var(--muted); font-size: 13.5px; max-width: 46ch; margin: 18px 0 12px; }
.footer__updated { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted-2); margin: 0; }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.footer__h { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 16px; }
.footer__h--center { text-align: center; }
.footer__col ul { display: grid; gap: 9px; }
.footer__col a, .footer__col .linkbtn { font-size: 13.5px; color: var(--muted); text-decoration: none; }
.footer__col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer__helpline { margin: 16px 0 0; font-size: 12.5px; color: var(--flame-2); }

.footer__badges { padding-block: clamp(30px, 4vw, 44px); border-bottom: 1px solid var(--line); }
.badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.badges li { display: flex; }
.badges a, .badges img { display: block; }
.badges img {
  height: 56px; width: auto;
  padding: 8px 14px;
  background: rgba(239,233,218,.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .18s ease, background .18s ease;
}
.badges a:hover img { border-color: var(--flame); background: var(--flame-soft); }

.footer__warning {
  display: flex; align-items: flex-start; gap: 14px;
  padding: clamp(20px, 2.4vw, 26px);
  margin-block: clamp(26px, 3vw, 36px);
  background: var(--flame-soft);
  border: 1px solid rgba(232,69,31,.34);
  border-radius: var(--r-lg);
}
.footer__warning p { margin: 0; font-size: 13.5px; color: var(--cream); }
.footer__warning-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 30px; flex: none;
  background: var(--flame); color: #fff; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
}

.footer__legalstrip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 22px; border-block: 1px solid var(--line);
}
.footer__inline { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; }
.footer__inline a { color: var(--cream); text-decoration: none; }
.footer__inline a:hover { color: var(--flame-2); text-decoration: underline; text-underline-offset: 3px; }
.footer__inline li[aria-hidden] { color: var(--muted-2); }
.footer__langswitch {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 8px 16px; border: 1px solid var(--line-2); border-radius: 999px; text-decoration: none;
}
.footer__langswitch:hover { border-color: var(--cream); }

.footer__base { padding-block: 24px 30px; display: grid; gap: 8px; }
.footer__base p { margin: 0; font-size: 12px; color: var(--muted-2); }
.footer__tm { max-width: 90ch; }

.footer__wordmark {
  display: flex; justify-content: center;
  line-height: .78; overflow: hidden;
  padding-inline: var(--gut);
  user-select: none;
}
.footer__wordmark span {
  font-family: var(--serif);
  font-size: clamp(64px, 17vw, 250px);
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239,233,218,.16);
  white-space: nowrap;
}

/* ------------------------------ consent -------------------------------- */

.consent {
  position: fixed; inset: auto 0 0 0; z-index: 120;
  padding: 16px var(--gut) 20px;
  animation: rise .3s ease;
}
.consent[hidden] { display: none; }
@keyframes rise { from { transform: translateY(18px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .consent { animation: none; } }

.consent__box {
  max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center;
  background: var(--ink-3);
  border: 1px solid rgba(232,69,31,.4);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.consent__body .eyebrow { margin-bottom: 10px; }
.consent__title { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 8px; }
.consent__text { font-size: 13px; color: var(--muted); margin: 0 0 10px; max-width: 82ch; }
.consent__more { font-size: 12px; color: var(--flame-2); text-underline-offset: 3px; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ----------------------------- responsive ------------------------------ */

@media (max-width: 1040px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .rbody__grid { grid-template-columns: 1fr; }
  .sbox--sticky { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  /* The masthead carries a backdrop-filter, which makes it the containing
     block for any fixed-position descendant. So the panel is anchored to the
     masthead on purpose and toggled with visibility rather than an off-screen
     translate, which would resolve against the wrong box. */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 18px;
    background: var(--ink); border-bottom: 1px solid var(--line);
    padding: 20px var(--gut) 26px;
    max-height: calc(100vh - 120px); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    box-shadow: 0 26px 50px rgba(0, 0, 0, .55);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 13px 16px; font-size: 15px; }
  .masthead__aside { justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--line); }

  .hero__grid { grid-template-columns: 1fr; }
  .brands__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); padding-left: 0; padding-block: 26px; }
  .step:first-child { border-top: 0; padding-top: 0; }
  .rhead__grid { grid-template-columns: 1fr; }
  .ccards { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .consent__box { grid-template-columns: 1fr; }
  .consent__actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr; }
  .bento__grid { grid-template-columns: 1fr; }
  .bcard { border-radius: 140px 140px 24px 24px; }
  .bcard__meta { grid-template-columns: 1fr; }
  .bcard__logo { width: 190px; height: 70px; }
  .bcard__title { flex-wrap: wrap; }
  .agebar { font-size: 11.5px; }
  .agebar__inner { gap: 9px; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__legalstrip { flex-direction: column; align-items: flex-start; }
  .rhead__logo { border-radius: 140px 140px 24px 24px; }
}
