/* ==========================================================================
   Tavern.ca shared stylesheet (Dominion Tavern legacy identity)
   ONE stylesheet linked by the money page, homepage, and all EEAT pages.
   Dark warm base + blood-red accent + bone text + heavy condensed display.
   Fully self-contained: no external font/asset fetches.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Dominion Tavern dive-bar grunge: deep teal + black, cyan accent, white ink, red for money/action */
  --bg:        #04222b;   /* masthead ground (near-black teal) */
  --bg-warm:   #052832;   /* page ground (deep teal-black) */
  --panel:     #0a3948;   /* card / panel (teal) */
  --panel-2:   #0d4456;   /* raised panel */
  --panel-3:   #114f63;   /* hover / rank ground */
  --line:      rgba(224,244,244,.13);
  --line-2:    rgba(224,244,244,.26);

  --red-deep:  #8b0000;   /* deep blood red */
  --red:       #d5202c;   /* bright red, CTAs + bonus eye-catcher (pops on teal) */
  --red-hi:    #ec3a45;   /* red hover */
  --red-tint:  rgba(213,32,44,.14);

  --cyan:      #5fc6d8;   /* signature dive-bar cyan: links, structural accents */
  --cyan-hi:   #86dbe9;

  --bone:      #eef4f4;   /* primary text (near-white) */
  --bone-dim:  #bcd0d2;   /* secondary text */
  --muted:     #83a2a6;   /* meta / captions */
  --gold:      #f0b93a;   /* star ratings */
  --green:     #5ecb8c;   /* pros */
  --chip:      #ffffff;   /* logo chip ground */

  --maxw: 1180px;
  --radius: 2px;                                   /* hard, poster-like corners */
  --font-display: 'Barlow Condensed','Oswald','Arial Narrow','Franklin Gothic Medium','Helvetica Neue',sans-serif;
  --font-body: 'DM Sans','Source Sans 3','Source Sans Pro','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  --shadow: 5px 5px 0 rgba(0,0,0,.55);             /* hard offset "sticker/poster" shadow */
  --shadow-red: 4px 4px 0 #6c0a12;                 /* hard red shadow for CTAs */
  --shadow-cyan: 4px 4px 0 #0a3a45;
  /* gig-poster paper grain, inline + self-contained (no external fetch) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* --- Reset ---------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-warm);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
/* gig-poster grain over the whole page */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: var(--grain); background-size: 200px 200px;
  opacity: .05; mix-blend-mode: overlay;
}
a { color: var(--bone); }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .012em;
  color: var(--bone);
  margin: 0;
}
p { margin: 0 0 1rem; }
ul,ol { margin: 0 0 1rem; padding-left: 1.35rem; }
li { margin: 0 0 .5rem; }
table { border-collapse: collapse; width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* --- Masthead + nav (non-sticky, hamburger on mobile) --------------------- */
.masthead {
  background: var(--bg);
  border-bottom: 3px solid var(--red-deep);
  position: static;              /* non-sticky by rule */
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.masthead__logo img { height: 42px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.02rem;
  text-decoration: none;
  color: var(--bone-dim);
  transition: color .15s;
}
.nav a:hover { color: var(--bone); }
.nav .nav__cta {
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius);
  letter-spacing: .07em;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 #6c0a12;
  transition: transform .1s, box-shadow .1s, background .15s;
}
.nav .nav__cta:hover { background: var(--red-hi); color:#fff; }
.nav .nav__cta:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 #6c0a12; }
.nav-toggle, .nav-toggle-label { display: none; }
.nav-toggle-label .bar {
  display: block; width: 26px; height: 3px; background: var(--bone);
  margin: 5px 0; border-radius: 2px; transition: .2s;
}

/* --- Hero (compact; reuses grunge texture with dark overlay) -------------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(95,198,216,.10) 0%, transparent 55%),
    linear-gradient(180deg, #073d4f 0%, #063542 55%, var(--bg-warm) 100%);
  border-bottom: 1px solid var(--line);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 26px 22px 20px; }
.hero h1 {
  font-size: clamp(1.95rem, 4.4vw, 2.9rem);
  line-height: 1.03;
  max-width: 20ch;
  color: var(--bone);
}
.hero__lede {
  margin: .5rem 0 0;
  font-size: 1.04rem;
  color: var(--bone-dim);
  max-width: 62ch;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-top: .8rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.06rem;
  padding: 12px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid #fff;
  box-shadow: var(--shadow-red);
  transition: background .15s, transform .1s, box-shadow .1s;
}
.hero__cta:hover { background: var(--red-hi); }
.hero__cta:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 #6c0a12; }

/* --- Byline row (below H1) ------------------------------------------------ */
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: .85rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.byline__pic {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--red-deep); object-fit: cover; flex: none;
}
.byline__meta { font-size: .96rem; color: var(--bone-dim); line-height: 1.4; }
.byline__meta .byline__name { color: var(--bone); font-weight: 700; text-decoration: none; }
.byline__meta .byline__name:hover { color: var(--red-hi); }
.byline__row2 { color: var(--muted); font-size: .88rem; margin-top: 2px; }
.byline__row2 span + span::before { content: "·"; margin: 0 .5em; color: var(--line-2); }

/* --- Author profile header (author page) ---------------------------------- */
.profile { display: flex; align-items: center; gap: 22px; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.profile__pic {
  width: 160px; height: 160px; border-radius: 2px; object-fit: cover;
  border: 3px solid var(--red); box-shadow: var(--shadow); flex: none;
}
.profile__meta { min-width: 0; }
.profile__role { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--cyan); font-size: 1.05rem; }
.profile__facts { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.profile__facts span + span::before { content: "·"; margin: 0 .5em; color: var(--line-2); }
@media (max-width: 640px) { .profile__pic { width: 120px; height: 120px; } }

/* --- Generic section ------------------------------------------------------ */
.section { padding: 44px 0; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: none; }
/* toplist sits directly under the hero: keep the first cards above the fold */
#toplist { padding-top: 22px; }
#toplist > .wrap > h2 { margin-bottom: .35rem; }
#toplist .section__intro { margin-bottom: 1rem; }
.section > .wrap > h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.25rem);
  margin-bottom: .5rem;
  padding-left: 14px;
  border-left: 5px solid var(--cyan);
}
.section__intro { color: var(--bone-dim); max-width: 74ch; margin-bottom: 1.6rem; }
.section--tint { background: linear-gradient(180deg, rgba(139,0,0,.06), transparent 55%); }
.prose h3 {
  font-size: 1.4rem; margin: 1.7rem 0 .6rem; color: var(--bone);
  letter-spacing: .02em;
}
.prose p, .prose li { color: var(--bone-dim); }
.prose strong { color: var(--bone); }
.prose a:not(.btn) { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.prose a:not(.btn):hover { color: var(--cyan-hi); }

/* --- Toplist -------------------------------------------------------------- */
.toplist { display: flex; flex-direction: column; gap: 14px; }
.rc {
  display: grid;
  grid-template-columns: 54px 150px 1fr 220px 168px;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, var(--panel), #072e3b);
  border: 2px solid var(--line-2);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: transform .12s, box-shadow .12s;
}
.rc:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(0,0,0,.55); }
.rc--top {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.rc--top:hover { box-shadow: 7px 7px 0 #6c0a12; }
.rc__rank {
  font-family: var(--font-display); font-weight: 800; font-size: 1.55rem;
  color: var(--bone); background: var(--panel-3);
  border: 2px solid var(--bone);
  width: 48px; height: 48px; border-radius: 2px;
  display: grid; place-items: center;
  transform: rotate(-5deg); box-shadow: 3px 3px 0 rgba(0,0,0,.5);
}
.rc--top .rc__rank { background: var(--red); color:#fff; border-color: #fff; }
.rc__chip {
  background: var(--chip); border-radius: 2px;
  border: 2px solid #06222b;
  height: 80px; display: grid; place-items: center; padding: 10px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.45);
}
.rc__chip img { max-height: 58px; width: auto; }
.rc__body { min-width: 0; }
.rc__name { font-family: var(--font-display); font-weight: 800; font-size: 1.42rem; letter-spacing: .02em; text-transform: uppercase; }
.rc__stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; margin-top: 2px; }
.rc__stars .rc__rateval { color: var(--muted); font-family: var(--font-body); font-size: .82rem; margin-left: 6px; letter-spacing: 0; }
.rc__tags { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.rc__tag {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700;
  color: var(--cyan); background: transparent;
  border: 1.5px solid var(--cyan); border-radius: 0; padding: 2px 8px;
}
.rc__bonus { text-align: center; }
.rc__bonus-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.rc__bonus-amt { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; color: var(--red-hi); line-height: 1.06; margin-top: 2px; }
.rc__bonus-sub { font-size: .8rem; color: var(--bone-dim); margin-top: 3px; }
.rc__bonus-code { font-size: .78rem; color: var(--muted); margin-top: 3px; }
.rc__bonus-code b { color: var(--bone); font-family: var(--font-body); }
.rc__cta { display: flex; flex-direction: column; gap: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; text-decoration: none; border-radius: var(--radius);
  cursor: pointer; transition: transform .1s, box-shadow .1s, background .15s;
}
.btn--claim {
  background: var(--red); color: #fff; padding: 12px 16px; font-size: 1.05rem;
  border: 2px solid #fff; box-shadow: var(--shadow-red);
}
.btn--claim:hover { background: var(--red-hi); }
.btn--claim:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 #6c0a12; }
.btn--ghost {
  background: transparent; color: var(--bone); border: 2px solid var(--cyan); border-radius: var(--radius);
  padding: 7px 14px; font-size: .82rem; box-shadow: var(--shadow-cyan);
}
.btn--ghost:hover { color: var(--bg); background: var(--cyan); }
.btn--ghost:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 #0a3a45; }

/* --- Deep review cards ---------------------------------------------------- */
.reviews { display: flex; flex-direction: column; gap: 26px; }
.review {
  background: var(--panel);
  border: 2px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.review__head {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; background: #072e3b; border-bottom: 2px solid var(--cyan);
}
.review__chip { background: var(--chip); border-radius: 2px; border: 2px solid #06222b; padding: 8px 12px; display: grid; place-items: center; flex: none; box-shadow: 3px 3px 0 rgba(0,0,0,.4); }
.review__chip img { max-height: 42px; width: auto; }
.review__titles h3 { margin: 0; font-size: 1.42rem; }
.review__rank { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.review__score {
  margin-left: auto; text-align: center; flex: none;
  font-family: var(--font-display);
}
.review__score b { display: block; font-size: 2rem; color: var(--gold); line-height: 1; }
.review__score span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.review__body { padding: 20px 22px; }
.review__body p { color: var(--bone-dim); }
.subscores {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 10px;
  margin: 4px 0 18px;
}
.subscore { background: #06222b; border: 2px solid var(--line-2); border-radius: 2px; padding: 10px; text-align: center; }
.subscore__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.subscore__val { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--bone); margin-top: 3px; }
.subscore__bar { height: 4px; border-radius: 2px; background: var(--panel-3); margin-top: 6px; overflow: hidden; }
.subscore__bar i { display: block; height: 100%; background: var(--red); }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 6px; }
.proscons h4 { font-size: 1.02rem; letter-spacing: .04em; margin-bottom: .5rem; }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li { position: relative; padding-left: 26px; color: var(--bone-dim); font-size: .96rem; margin-bottom: .5rem; }
.proscons svg { position: absolute; left: 0; top: 3px; width: 16px; height: 16px; }
.pros li svg { color: var(--green); }
.cons li svg { color: var(--red-hi); }
.review__foot { padding: 0 22px 20px; }

/* --- Comparison + data tables --------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { min-width: 620px; font-size: .95rem; }
table.data thead th {
  background: var(--panel-2); color: var(--bone);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  text-align: left; padding: 12px 14px; border-bottom: 2px solid var(--red-deep); font-size: .92rem;
}
table.data tbody td { padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--bone-dim); }
table.data tbody tr:nth-child(even) { background: rgba(255,255,255,.015); }
table.data tbody tr:hover { background: var(--red-tint); }
table.data td strong, table.data td b { color: var(--bone); }
table.data .num { text-align: center; white-space: nowrap; }

/* --- Ordered step list ---------------------------------------------------- */
ol.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; }
ol.steps > li {
  counter-increment: step; position: relative; padding: 4px 0 20px 62px; margin: 0;
}
ol.steps > li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 2px;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  display: grid; place-items: center; border: 2px solid #fff;
  transform: rotate(-5deg); box-shadow: 3px 3px 0 rgba(0,0,0,.5);
}
ol.steps > li:not(:last-child)::after {
  content: ""; position: absolute; left: 21px; top: 50px; bottom: 6px; width: 2px; background: var(--line-2);
}
ol.steps h3 { font-size: 1.18rem; margin: 6px 0 4px; }
ol.steps p { color: var(--bone-dim); margin: 0; }

/* --- Checklist (speed-killers) -------------------------------------------- */
.killers { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.killers li {
  position: relative; padding: 14px 16px 14px 52px;
  background: var(--panel); border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: 5px; color: var(--bone-dim); margin: 0;
}
.killers li strong { color: var(--bone); display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: 1.06rem; margin-bottom: 2px; }
.killers svg { position: absolute; left: 16px; top: 15px; width: 22px; height: 22px; color: var(--red-hi); }

/* --- Decision aid (fastest by player type) -------------------------------- */
.decision { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.decision__card { background: var(--panel); border: 1px solid var(--line); border-top: 4px solid var(--red-deep); border-radius: 5px; padding: 18px; }
.decision__card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.decision__pick { font-family: var(--font-display); font-weight: 800; color: var(--red-hi); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .02em; margin-top: .6rem; }
.decision__card p { color: var(--bone-dim); font-size: .95rem; margin: 0 0 .4rem; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 5px; }
.faq summary {
  cursor: pointer; list-style: none; padding: 15px 46px 15px 18px; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.14rem; letter-spacing: .01em;
  color: var(--bone); text-transform: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.6rem; color: var(--red-hi); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }  /* U+2212 minus sign (not an en dash) */
.faq details[open] summary { color: var(--red-hi); }
.faq__ans { padding: 0 18px 16px; color: var(--bone-dim); }
.faq__ans p { margin: 0 0 .6rem; }
.faq__ans p:last-child { margin: 0; }

/* --- Methodology ---------------------------------------------------------- */
.method { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: start; }
.method__weights { list-style: none; padding: 0; margin: 0; }
.method__weights li { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--bone-dim); }
.method__weights b { color: var(--bone); font-family: var(--font-display); font-size: 1.1rem; }
.method__bar { grid-column: 1 / -1; height: 5px; background: var(--panel-3); border-radius: 3px; overflow: hidden; }
.method__bar i { display: block; height: 100%; background: var(--red); }

/* --- Author box ----------------------------------------------------------- */
.author {
  display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.author__pic { width: 96px; height: 96px; border-radius: 50%; border: 3px solid var(--red-deep); object-fit: cover; }
.author__name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.author__role { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; margin-bottom: .7rem; }
.author p { color: var(--bone-dim); margin: 0 0 .7rem; }
.author a { color: var(--red-hi); }

/* --- Callout / note ------------------------------------------------------- */
.note {
  background: var(--red-tint); border: 1px solid rgba(193,18,31,.3); border-left: 4px solid var(--red);
  border-radius: 5px; padding: 14px 18px; color: var(--bone-dim); margin: 1.2rem 0;
}
.note strong { color: var(--bone); }

/* --- Footer --------------------------------------------------------------- */
.footer { background: var(--bg); border-top: 3px solid var(--red-deep); margin-top: 20px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 40px 22px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.footer__logo img { height: 40px; margin-bottom: 12px; }
.footer h4 { font-size: 1.05rem; letter-spacing: .06em; margin-bottom: .8rem; color: var(--bone); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { color: var(--bone-dim); text-decoration: none; font-size: .95rem; }
.footer a:hover { color: var(--bone); }
.footer__blurb { color: var(--muted); font-size: .92rem; max-width: 40ch; }
.footer__rg {
  border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: .86rem; line-height: 1.6;
}
.footer__rg strong { color: var(--bone-dim); }
.footer__disclosure { margin-top: 14px; color: var(--muted); font-size: .84rem; }
.footer__legal { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer__legal a { font-size: .84rem; }
.footer__copy { margin-top: 16px; color: var(--muted); font-size: .82rem; }

/* --- Responsive: tablet --------------------------------------------------- */
@media (max-width: 960px) {
  .rc { grid-template-columns: 46px 120px 1fr; grid-template-areas:
        "rank chip body"
        "rank bonus bonus"
        "cta  cta   cta"; gap: 12px 14px; }
  .rc__rank { grid-area: rank; }
  .rc__chip { grid-area: chip; }
  .rc__body { grid-area: body; }
  .rc__bonus { grid-area: bonus; text-align: left; }
  .rc__cta { grid-area: cta; flex-direction: row; }
  .rc__cta .btn--claim { flex: 1; }
  .method { grid-template-columns: 1fr; }
  .decision { grid-template-columns: 1fr; }
  .subscores { grid-template-columns: repeat(5,1fr); gap: 6px; }
  .subscore { padding: 7px 4px; }
  .subscore__val { font-size: 1.05rem; }
}

/* --- Responsive: mobile (390/360) ----------------------------------------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  /* hamburger */
  .nav-toggle-label { display: block; cursor: pointer; padding: 4px; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 3px solid var(--red-deep);
    max-height: 0; overflow: hidden; z-index: 40; transition: max-height .25s ease;
  }
  .masthead__inner { position: relative; }
  .nav a { padding: 14px 22px; border-top: 1px solid var(--line); font-size: 1.05rem; }
  .nav .nav__cta { margin: 12px 22px; text-align: center; border-radius: var(--radius); }
  .nav-toggle:checked ~ .nav { max-height: 460px; }

  .hero__inner { padding: 14px 16px 14px; }
  .hero h1 { font-size: clamp(1.55rem, 6.4vw, 2.0rem); }
  .hero__lede { font-size: .98rem; }
  .hero__cta { margin-top: .65rem; font-size: .98rem; padding: 10px 20px; }
  .byline { margin-top: .7rem; padding-top: .6rem; }
  .byline__meta { font-size: .9rem; }
  .byline__row2 { font-size: .82rem; }

  .section { padding: 34px 0; }
  .section > .wrap > h2 { font-size: 1.55rem; }
  #toplist { padding-top: 16px; }
  #toplist > .wrap > h2 { font-size: 1.32rem; line-height: 1.1; }

  .rc { grid-template-columns: 44px 1fr; grid-template-areas:
        "rank chip"
        "body body"
        "bonus bonus"
        "cta cta"; text-align: center; }
  .rc__chip { grid-area: chip; height: 66px; }
  .rc__body { grid-area: body; }
  .rc__name { font-size: 1.25rem; }
  .rc__stars, .rc__tags { justify-content: center; }
  .rc__tags { justify-content: center; }
  .rc__bonus { grid-area: bonus; text-align: center; padding-top: 4px; }
  .rc__cta { grid-area: cta; flex-direction: column; }
  .rc__cta .btn--claim { width: 100%; }

  .review__head { flex-wrap: wrap; gap: 12px; }
  .review__score { margin-left: 0; }
  .subscores { grid-template-columns: repeat(2,1fr); }
  .proscons { grid-template-columns: 1fr; gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- Light logo-chip safety (light-art brand logos on white chip already) - */
.rc__chip, .review__chip { line-height: 0; }
