/* ============================================================================
   Australia Casino Review — site.css  ·  v2.1 "The Punter's Ledger"
   Light ivory-paper editorial broadsheet. Hairline + double masthead rules,
   photography behind paper-wash hero overlays, ledger rankings, stamp accents.
   Type: Instrument Serif (display) · Geist (body) · Geist Mono (figures)
   · Caveat (annotation). Single accent: Racing Green (Members' Green palette).
   ========================================================================= */

/* ---- 1. Tokens ---------------------------------------------------------- */
:root {
  --paper:         #f7f7f2;
  --paper-shade:   #edeee6;
  --surface:       #ffffff;

  --ink:           #1a1d1b;
  --ink-soft:      #3f453f;
  --muted:         #575b54;
  --dim:           #a3a79b;

  --hairline:        rgba(26, 29, 27, 0.14);
  --hairline-strong: rgba(26, 29, 27, 0.34);

  --accent:        #206a4e;   /* racing green */
  --accent-deep:   #17503a;
  --accent-wash:   rgba(32, 106, 78, 0.08);
  --accent-border: rgba(32, 106, 78, 0.45);

  --paper-on-ink:  #eff2ea;
  --dim-on-ink:    rgba(239, 242, 234, 0.55);
  --hairline-on-ink: rgba(239, 242, 234, 0.18);

  --star-empty:    rgba(32, 106, 78, 0.22);

  --ff-display: "Instrument Serif", "Iowan Old Style", serif;
  --ff-body:    "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-mono:    "Geist Mono", "SF Mono", Menlo, monospace;
  --ff-script:  "Caveat", "Segoe Script", cursive;

  --container:  1200px;
  --radius:     4px;
  --radius-btn: 6px;
  --header-h:   7.2rem;

  --shadow-card: 0 1px 2px rgba(26, 29, 27, 0.05), 0 10px 30px rgba(26, 29, 27, 0.07);
  --shadow-pop:  0 2px 6px rgba(26, 29, 27, 0.08), 0 22px 48px rgba(26, 29, 27, 0.14);
}

/* ---- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  padding-top: var(--header-h);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }
ul { margin: 0; padding: 0; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; }
h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 40px 0; }   /* 40 + 40 = 80px between adjacent sections */

/* ---- 3. Shared atoms ------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent-border);
}
.eyebrow--solo { display: inline-flex; }

.scribble {
  font-family: var(--ff-script);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent);
  transform: rotate(-3deg);
  display: inline-block;
}

.section-head { max-width: 800px; margin-bottom: 2.6rem; }
.section-head p { color: var(--muted); }

/* Double masthead rule — the signature ornament */
.masthead-rule, .footer-rule { display: grid; gap: 3px; margin: 0.9rem 0 1.8rem; }
.masthead-rule span, .footer-rule span { display: block; height: 0; border-top: 1px solid var(--hairline-strong); }
.masthead-rule span:first-child, .footer-rule span:first-child { border-top-width: 3px; border-color: var(--ink); }
.footer-rule.container { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--play {
  background: var(--ink);
  color: var(--paper-on-ink);
  box-shadow: 0 6px 16px rgba(26, 29, 27, 0.18);
}
.btn--play:hover { background: #322d29; color: #fff; }
.btn--sm { padding: 0.62rem 1.05rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.text-link {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 0.15rem;
}
.text-link:hover { color: var(--accent-deep); border-color: var(--accent-border); }

.read-review {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 0.12rem;
}
.read-review:hover { color: var(--accent-deep); border-color: var(--accent-border); }

/* White logo plates (R6 — contain, never cropped, never circular) */
.logo-plate {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
}
.logo-plate img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.mini-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  background: var(--surface);
  border-radius: 5px;
  padding: 2px 4px;
  flex: none;
}
.mini-plate img { max-height: 18px; width: auto; object-fit: contain; }

/* Stars */
.stars { display: inline-flex; gap: 0.1em; line-height: 1; font-size: 0.95em; }
.star { color: var(--star-empty); }
.star--full { color: var(--accent); }
.star--half { position: relative; color: var(--star-empty); }
.star--half::before {
  content: "★";
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent);
}
.stars--lg { font-size: 1.3rem; }

/* Mounted-print figure */
.figure-frame {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-card);
}
.figure-frame img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}
.figure-frame figcaption {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0.65rem 0.2rem 0.15rem;
  border-top: 1px solid var(--hairline);
  margin-top: 10px;
}

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--ff-display);
  font-size: 3.4em;
  line-height: 0.82;
  float: left;
  padding: 0.06em 0.14em 0 0;
  color: var(--accent);
}

/* ---- 4. Masthead header ---------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.masthead {
  background: rgba(247, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.masthead__micro {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 0.55rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--hairline);
  max-height: 3rem;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.2s ease;
}
.site-header.is-scrolled .masthead__micro {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-bottom-color: transparent;
}
.masthead__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  transition: padding 0.25s ease;
}
.site-header.is-scrolled .masthead__bar { padding-top: 0.55rem; padding-bottom: 0.55rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__emblem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hairline-strong);
  flex: none;
}
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__line1 {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.28rem;
}
.brand__line2 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.005em;
}

.main-nav { display: flex; }
.nav-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--accent-deep); }
.nav-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: left 0.25s ease, width 0.25s ease, opacity 0.2s ease;
  pointer-events: none;
}
.caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

/* Reviews dropdown + R13 transparent hover bridge */
.nav-submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 470px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: var(--ink);
}
.nav-item--has-submenu::after {           /* R13 bridge */
  content: "";
  position: absolute;
  top: 100%;
  left: -0.75rem;
  right: -0.75rem;
  height: 1.1rem;
  pointer-events: auto;
}
@media (min-width: 901px) {
  .nav-item--has-submenu:hover .nav-submenu,
  .nav-item--has-submenu:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-item--has-submenu:hover .caret { transform: rotate(225deg) translateY(-2px); }
}
.submenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.submenu-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
}
.submenu-item:hover { background: var(--paper); border-color: var(--hairline); }
.submenu-logo { width: 74px; height: 40px; padding: 0.3rem 0.45rem; flex: none; background: var(--paper); }
.submenu-logo img { max-height: 28px; }
.submenu-name { font-size: 0.88rem; font-weight: 500; color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-btn);
  cursor: pointer;
  padding: 0 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- 5. Homepage hero (asymmetric 7/5 split) -------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.8rem) 0 clamp(2.4rem, 6vw, 4rem);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 74% 45%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.98) 0%, rgba(247, 247, 242, 0.95) 40%, rgba(247, 247, 242, 0.68) 72%, rgba(247, 247, 242, 0.5) 100%),
    linear-gradient(0deg, var(--paper) 2%, rgba(247, 247, 242, 0) 24%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.65) 0%, rgba(247, 247, 242, 0) 20%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.hero__title { margin-bottom: 1.3rem; }
.hero__inline-img {
  display: inline-block;
  height: 0.82em;
  width: 1.7em;
  object-fit: cover;
  border-radius: 0.28em;
  vertical-align: -0.09em;
  border: 2px solid var(--surface);
  box-shadow: 0 3px 10px rgba(26, 29, 27, 0.22);
}
.hero__lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.07rem;
  margin-bottom: 1.9rem;
}
.hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.hero__scribble { display: inline-flex; align-items: flex-start; gap: 0.4rem; color: var(--accent); }
.hero__scribble svg { width: 28px; height: 24px; margin-top: 0.7rem; }

.hero__aside { display: grid; gap: 1.1rem; }
.hero__figure img { aspect-ratio: 16 / 10; }

.glance-ledger {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem 0.6rem;
  box-shadow: var(--shadow-card);
}
.glance-ledger__head {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  padding-bottom: 0.6rem;
}
.glance-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.92rem;
  color: var(--muted);
}
.glance-row__val {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--accent-deep);
}

/* ---- 6. Top-rated ledger ------------------------------------------------------ */
.top-rated__head { position: relative; max-width: 780px; margin-bottom: 2.8rem; }
.top-rated__scribble {
  position: absolute;
  right: -60px;
  top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  color: var(--accent);
}
.top-rated__scribble svg { width: 38px; height: 32px; }

.ledger {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.ledger-feature {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 1.8rem;
  box-shadow: var(--shadow-pop);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.5rem 1.8rem;
  align-items: center;
}
.ledger-feature__stamp {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 2px solid var(--accent-border);
  border-radius: 3px;
  padding: 0.32rem 0.7rem;
  transform: rotate(3deg);
  background: var(--accent-wash);
}
.ledger-feature__logo { grid-row: span 3; height: 110px; background: var(--paper); }
.ledger-feature__logo img { max-height: 64px; }
.ledger-feature__name { font-size: 2rem; margin: 0; }
.ledger-feature__stars { display: flex; align-items: center; gap: 0.6rem; }
.ledger-feature__score { font-family: var(--ff-mono); font-weight: 600; color: var(--ink-soft); font-size: 0.92rem; }
.ledger-feature__bonus { font-size: 1.05rem; font-weight: 600; color: var(--accent-deep); }
.ledger-feature__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1.1rem;
  margin-top: 0.6rem;
}
.stat__value { font-family: var(--ff-mono); font-weight: 600; font-size: 1rem; color: var(--ink); }
.stat__label {
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
}
.ledger-feature__cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 0.9rem;
}

.ledger-rows { display: grid; }
.ledger-row {
  display: grid;
  grid-template-columns: 2.6rem 108px 1fr;
  grid-template-areas:
    "rank logo info"
    "rank logo cta";
  align-items: center;
  column-gap: 1.1rem;
  row-gap: 0.45rem;
  padding: 1.1rem 0.2rem;
  border-top: 1px solid var(--hairline);
}
.ledger-row:last-child { border-bottom: 1px solid var(--hairline); }
.ledger-row__rank {
  grid-area: rank;
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dim);
}
.ledger-row__logo { grid-area: logo; height: 52px; background: var(--paper); }
.ledger-row__logo img { max-height: 32px; }
.ledger-row__info { grid-area: info; min-width: 0; }
.ledger-row__name {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-display);
  font-size: 1.18rem;
}
.ledger-row__bonus { font-size: 0.88rem; color: var(--muted); }
.ledger-row__cta { grid-area: cta; display: flex; align-items: center; gap: 1rem; }

/* ---- 7. Home intro --------------------------------------------------------------- */
.home-intro { padding-top: 40px; }
.home-intro__grid { max-width: 860px; }
.home-intro__lede {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.home-intro__cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }

/* ---- 8. Process index (numbered zig-zag) ------------------------------------------- */
.process-list { display: grid; }
.process-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--hairline);
}
.process-item:last-child { border-bottom: 1px solid var(--hairline); }
.process-item--offset { padding-left: clamp(0px, 12vw, 150px); }
.process-item__num {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--accent);
}
.process-item__body { max-width: 68ch; }
.process-item__body h3 { margin-bottom: 0.6rem; }
.process-item__body p { color: var(--muted); }

/* ---- 9. Lists ----------------------------------------------------------------------- */
.content-list { list-style: none; margin: 0 0 1.1rem; }
.content-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
}
.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.65rem;
  height: 1px;
  background: var(--accent);
}
.content-list--mini li { font-size: 0.93rem; margin-bottom: 0.45rem; }

/* Feature check-list — R10: block li, absolute tick, NEVER display:grid */
.feature-check-list {
  list-style: none;
  background: var(--accent-wash);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  margin: 1.2rem 0;
}
.feature-check-list li {
  display: block;
  position: relative;
  padding-left: 2.3rem;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}
.feature-check-list li:last-child { margin-bottom: 0; }
.feature-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--accent-border);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45rem;
  text-align: center;
}
.feature-check-list li strong { color: var(--ink); }

.feature-check-list--plain {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0;
}
.feature-check-list--plain li {
  display: block;
  position: relative;
  padding: 1rem 1.2rem 1rem 3.2rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--muted);
}
.feature-check-list--plain li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--accent-wash);
  border: 1px solid var(--accent-border);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45rem;
  text-align: center;
}
.feature-check-list--plain li strong { color: var(--ink); }

/* ---- 10. Split layout ------------------------------------------------------------------ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.split-layout__media img { aspect-ratio: 4 / 5; }
.split-layout--reverse .split-layout__media { order: 2; }
.split-layout--reverse .split-layout__body { order: 1; }
.split-layout__body p { color: var(--muted); }

/* ---- 11. Tables (broadsheet) -------------------------------------------------------------- */
.spec-table {
  overflow-x: auto;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
  margin: 1.4rem 0;
}
.spec-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.spec-table th {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--hairline-strong);
  white-space: nowrap;
}
.spec-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 0.95rem;
  vertical-align: top;
}
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table tbody tr:nth-child(even) td { background: var(--paper-shade); }
.spec-table td:first-child { color: var(--ink-soft); font-weight: 600; min-width: 150px; }
.spec-table--compare table { min-width: 840px; }
.spec-table--compare td { white-space: nowrap; }

/* ---- 12. Image divider (R11 — inside .container) -------------------------------------------- */
.image-divider {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-card);
  margin: 0.5rem 0;
}
.image-divider img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 2px;
}

/* ---- 13. Stamp band (trust) -------------------------------------------------------------------- */
.stamp-band {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--hairline-strong);
  padding: clamp(2rem, 5vw, 3.2rem) 0;
}
.stamp-band__copy p { color: var(--muted); max-width: 62ch; }
.stamp-band__seals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  justify-items: center;
}
.stamp-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 2px solid var(--accent-border);
  box-shadow: inset 0 0 0 3px var(--paper), inset 0 0 0 4px var(--accent-border);
  background: var(--accent-wash);
  border-radius: 4px;
  padding: 0.7rem 1rem;
  transform: rotate(-2deg);
}
.stamp-seal:nth-child(even) { transform: rotate(2deg); }
.stamp-seal--lg {
  width: 100%;
  max-width: 200px;
  padding: 1.5rem 1rem;
  font-size: 0.78rem;
}

/* ---- 14. Rewards coupon mosaic --------------------------------------------------------------------- */
.coupon-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
}
.coupon {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.6rem 2.3rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.coupon::before {                 /* ticket stub edge */
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0;
  bottom: 0;
  border-left: 1px dashed var(--hairline-strong);
}
.coupon::after {                  /* punched holes */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.95rem;
  background:
    radial-gradient(circle at 100% 0, var(--paper) 7px, transparent 7.5px),
    radial-gradient(circle at 100% 100%, var(--paper) 7px, transparent 7.5px),
    var(--accent-wash);
}
.coupon--w5  { grid-column: span 5; }
.coupon--w6  { grid-column: span 6; }
.coupon--w7  { grid-column: span 7; }
.coupon--w12 { grid-column: span 12; }
.coupon__tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid var(--accent-border);
  border-radius: 3px;
  padding: 0.22rem 0.6rem;
  margin-bottom: 0.9rem;
  background: var(--accent-wash);
}
.coupon h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.coupon p { font-size: 0.95rem; color: var(--muted); }

.vip-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--ink);
  color: var(--paper-on-ink);
  border-radius: var(--radius);
  padding: 1.7rem 2rem;
}
.vip-strip h3 { color: var(--paper-on-ink); margin-bottom: 0.25rem; }
.vip-strip p { color: var(--dim-on-ink); margin: 0; }

/* ---- 15. Closing ------------------------------------------------------------------------------------- */
.support-close {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 3px solid var(--ink);
  padding-top: clamp(2rem, 5vw, 3rem);
  align-items: start;
}
.support-close__copy p { color: var(--muted); max-width: 62ch; }
.support-close__copy .btn--play { margin-top: 1.2rem; white-space: normal; text-align: center; }
.support-close__kicker {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.support-close__aside .feature-check-list--plain { margin-top: 0.8rem; }

/* ---- 16. Builder content sections ---------------------------------------------------------------------- */
.page-content { padding-bottom: 3rem; }
.content-section { padding: clamp(1.8rem, 4vw, 3rem) 0; }
.content-section .section-title {
  position: relative;
  max-width: 880px;
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline-strong);
}
.content-section .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 3px;
  background: var(--accent);
}
.content-section > .container > p,
.content-section .plain-card p { color: var(--muted); }
.content-section > .container > p { max-width: 74ch; }
.content-subhead {
  margin-top: 2.2rem;
  font-size: 1.35rem;
}
.content-section .content-list { max-width: 74ch; }

.plain-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-card);
}
.plain-card .section-title { margin-top: 0; border-bottom: 0; padding-bottom: 0; }
.plain-card .section-title::after { display: none; }

.intro-block {
  position: relative;
  max-width: 860px;
  padding: 0.3rem 0 0.3rem 1.7rem;
  border-left: 3px solid var(--accent);
}
.intro-block .glyph {
  display: none;
}
.intro-block p {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Builder floor-grid (R3 column counts via --cols) */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.floor-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-card);
}
.floor-tile::before {
  content: attr(data-mono);
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-deep);
  border: 1px solid var(--accent-border);
  border-radius: 3px;
  width: 1.55rem;
  height: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-wash);
}
.floor-tile h3 { font-size: 1.28rem; padding-right: 2.2rem; }
.floor-tile p { color: var(--muted); font-size: 0.96rem; }

/* ---- 17. Review & page heroes ------------------------------------------------------------------------------ */
.review-hero, .page-hero { padding: clamp(1.6rem, 4vw, 2.6rem) 0 clamp(1.2rem, 3vw, 2rem); }
.review-hero { position: relative; overflow: hidden; }
.review-hero__bg { position: absolute; inset: 0; z-index: -1; }
.review-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 76% 40%;
}
.review-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.99) 0%, rgba(247, 247, 242, 0.95) 48%, rgba(247, 247, 242, 0.74) 78%, rgba(247, 247, 242, 0.58) 100%),
    linear-gradient(0deg, var(--paper) 3%, rgba(247, 247, 242, 0) 30%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.7) 0%, rgba(247, 247, 242, 0) 22%);
}
.review-hero__main { max-width: 62rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.breadcrumb a { color: var(--dim); }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb span::before { content: "/"; margin-right: 0.4rem; color: var(--dim); }

.page-hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.review-hero__titlewrap { display: flex; align-items: flex-start; gap: 1.2rem; flex-wrap: wrap; }
.review-hero__title, .page-hero__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 22ch;
  margin-bottom: 0.6rem;
}
.rating-stamp {
  flex: none;
  font-family: var(--ff-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-deep);
  border: 2px solid var(--accent-border);
  border-radius: 3px;
  background: var(--accent-wash);
  padding: 0.4rem 0.85rem;
  transform: rotate(-3deg);
  margin-top: 0.5rem;
  white-space: nowrap;
}

.review-byline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.9rem 0 1.2rem;
}
.byline-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1px var(--hairline-strong);
  flex: none;
}
.byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.byline-meta { display: flex; flex-direction: column; line-height: 1.35; }
.byline-name { font-weight: 600; color: var(--ink); }
.byline-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem; height: 1.05rem;
  font-size: 0.62rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  vertical-align: 0.1em;
}
.byline-role { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--dim); }

.review-hero__lede, .page-hero__lede {
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.04rem;
}
.page-hero__figure img { aspect-ratio: 16 / 11; }

/* Ink CTA strip */
.review-cta-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  background: var(--ink);
  color: var(--paper-on-ink);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem 0.9rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-pop);
}
.review-cta-strip__logo {
  height: 64px;
  min-width: 120px;
  border: 0;
}
.review-cta-strip__bonus { min-width: 0; }
.review-cta-strip__label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim-on-ink);
}
.review-cta-strip__value {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--paper-on-ink);
  line-height: 1.25;
}
.review-cta-strip .btn--play {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}
.review-cta-strip .btn--play:hover { background: var(--accent-deep); }
.visitor-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-top: 1px solid var(--hairline-on-ink);
  padding-top: 0.7rem;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--dim-on-ink);
}
.visitor-bar strong { color: var(--paper-on-ink); }
.visitor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: acr-pulse 1.6s ease-in-out infinite;
  flex: none;
}
@keyframes acr-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(32, 106, 78, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(32, 106, 78, 0); }
}

/* ---- 18. Verdict scorecard ------------------------------------------------------------------------------------ */
.verdict { padding: clamp(1.2rem, 3vw, 2rem) 0 0; }
.verdict-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-card);
}
.verdict-card__head { margin-bottom: 1.8rem; }
.verdict-card__head h2 { margin-bottom: 0; }
.verdict-card__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.scorecard__overall {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
}
.scorecard__num {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 1;
  color: var(--accent-deep);
}
.scorecard__of { font-family: var(--ff-mono); font-size: 1.2rem; color: var(--dim); }
.scorecard__stars { display: flex; flex-direction: column; gap: 0.2rem; margin-left: 1.1rem; }
.scorecard__label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.score-rows { display: grid; }
.score-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(90px, 180px) 2.6rem;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--hairline);
}
.score-row:last-child { border-bottom: 0; }
.score-row__label { font-size: 0.93rem; color: var(--muted); }
.score-row__bar {
  height: 6px;
  border-radius: 3px;
  background: var(--paper-shade);
  overflow: hidden;
}
.score-row__bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.score-row__val {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-align: right;
}
.verdict-note {
  border-left: 3px solid var(--accent);
  padding: 0.3rem 0 0.3rem 1.5rem;
}
.verdict-note p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.verdict-note cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--dim);
}

/* ---- 19. Footer (ink colophon) ----------------------------------------------------------------------------------- */
.site-footer { margin-top: 40px; }
.footer-rule { margin-bottom: 0; padding-bottom: 1.2rem; }
.footer-main { background: var(--ink); color: var(--paper-on-ink); padding: clamp(2.5rem, 6vw, 4rem) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.brand--ink .brand__line1 { color: var(--accent); }
.brand--ink .brand__line2 { color: var(--paper-on-ink); }
.footer-brand p { color: var(--dim-on-ink); font-size: 0.92rem; margin-top: 1rem; max-width: 34ch; }
.footer-brand__age {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  color: var(--dim-on-ink);
  border: 1px solid var(--hairline-on-ink);
  border-radius: 3px;
  padding: 0.35rem 0.8rem;
  margin-top: 1rem;
}
.footer-brand__age strong { color: var(--accent); }

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim-on-ink);
  border-bottom: 1px solid var(--hairline-on-ink);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper-on-ink);
  font-size: 0.93rem;
  opacity: 0.85;
}
.footer-col a:hover { opacity: 1; color: #fff; }
.footer-vip {
  margin-top: 1.6rem;
  border: 1px solid var(--hairline-on-ink);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.footer-vip h4 { border-bottom: 0; padding-bottom: 0; margin-bottom: 0.4rem; color: var(--paper-on-ink); }
.footer-vip p { font-size: 0.85rem; color: var(--dim-on-ink); margin-bottom: 0.9rem; }

.footer-accreditations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  padding-top: 2.4rem;
  padding-bottom: 1.8rem;
}
.footer-accreditations .stamp-seal {
  color: var(--paper-on-ink);
  border-color: var(--hairline-on-ink);
  background: transparent;
  box-shadow: inset 0 0 0 3px var(--ink), inset 0 0 0 4px var(--hairline-on-ink);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--hairline-on-ink);
  padding: 1.5rem 0 2rem;
}
.footer-bottom p {
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--dim-on-ink);
  margin-bottom: 0.4rem;
}
.footer-bottom .disclaimer {
  max-width: 660px;
  margin: 0 auto;
  opacity: 0.8;
}

/* ---- 20. Error page ------------------------------------------------------------------------------------------------ */
.error-page { text-align: center; padding: clamp(4rem, 10vw, 7rem) 0; }
.error-page__code {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}
.error-page p { color: var(--muted); max-width: 52ch; margin: 0 auto 1.6rem; }
.error-page__cta { display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }

/* ---- 21. Reveal motion ----------------------------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .visitor-dot { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---- 22. Responsive ----------------------------------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .top-rated__scribble { position: static; align-items: flex-start; margin-top: 0.6rem; }
  .ledger { grid-template-columns: 1fr; }
  .coupon--w5, .coupon--w6, .coupon--w7 { grid-column: span 6; }
}

@media (max-width: 900px) {
  :root { --header-h: 4.6rem; }
  .masthead__micro { display: none; }

  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--paper);
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    transform: translateY(-102%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    z-index: -1;
  }
  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link {
    font-size: 1.15rem;
    padding: 0.95rem 0.3rem;
    border-bottom: 1px solid var(--hairline);
    width: 100%;
    justify-content: space-between;
  }
  .nav-indicator { display: none; }
  .nav-item--has-submenu::after { display: none; }
  .nav-submenu {
    position: static;
    transform: none;
    min-width: 0;
    opacity: 1;
    visibility: hidden;
    display: none;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    background: transparent;
    padding: 0.4rem 0 0.4rem 0.7rem;
    margin: 0.4rem 0 0.6rem;
  }
  .nav-submenu::before { display: none; }
  .nav-item--has-submenu.is-open .nav-submenu { display: block; visibility: visible; }
  .nav-item--has-submenu.is-open .caret { transform: rotate(225deg) translateY(-2px); }
  .submenu-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { grid-template-columns: 1fr; }

  .ledger-feature { grid-template-columns: 1fr; text-align: left; }
  .ledger-feature__logo { grid-row: auto; height: 84px; width: 200px; }

  .process-item { grid-template-columns: 72px 1fr; }
  .process-item--offset { padding-left: 0; }

  .split-layout { grid-template-columns: 1fr; }
  .split-layout--reverse .split-layout__media { order: 0; }
  .split-layout__media img { aspect-ratio: 16 / 10; }

  .stamp-band { grid-template-columns: 1fr; }
  .stamp-band__seals { justify-items: start; }

  .page-hero__grid { grid-template-columns: 1fr; }
  .verdict-card__grid { grid-template-columns: 1fr; }

  .review-cta-strip { grid-template-columns: 1fr; text-align: center; }
  .review-cta-strip__logo { margin: 0 auto; }
  .review-cta-strip .btn--play { width: 100%; }
  .visitor-bar { justify-content: center; }

  .support-close { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand__line2 { font-size: 1.15rem; }
  .brand__emblem { width: 34px; height: 34px; }

  .coupon--w5, .coupon--w6, .coupon--w7, .coupon--w12 { grid-column: span 12; }

  .ledger-row {
    grid-template-columns: 2.4rem 1fr;
    grid-template-areas:
      "rank logo"
      "info info"
      "cta  cta";
    align-items: center;
  }
  .ledger-row__logo { width: 120px; height: 48px; }
  .ledger-row__cta { flex-wrap: wrap; }

  .ledger-feature__cta { flex-wrap: wrap; }
  .ledger-feature__stats { grid-template-columns: 1fr; }

  .glance-row { font-size: 0.86rem; }

  .score-row { grid-template-columns: 1fr auto; }
  .score-row__bar { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
}
