/* =================================================================
   Best Australia Casino Online — site.css
   Palette  : deep wine red + signature gold
   Type     : Playfair Display (display) · Manrope (body) · Caveat (scribble)
   Signature: gold fret chevrons + oversized italic serif monogram watermarks
   ================================================================= */

/* -------- 1. Tokens -------------------------------------------- */
:root {
  --brand:        #2a0810;   /* deep wine */
  --brand-dark:   #120307;
  --brand-light:  #45121c;

  --accent:       #d4af6a;   /* signature gold */
  --accent-warm:  #e6c787;
  --accent-soft:  #f1dca7;
  --accent-deep:  #b08d44;

  --bg:           #1a040a;
  --bg-card:      #260810;
  --bg-elevated:  #341019;
  --bg-panel:     #110305;

  --text:         #f0ece0;
  --text-muted:   #cdb6b0;
  --text-dim:     #95786f;

  --border:        rgba(212,175,106,0.16);
  --border-strong: rgba(212,175,106,0.38);
  --border-soft:   rgba(240,236,224,0.08);

  --cream-1:       #f8efd8;
  --cream-2:       #ecdcb2;
  --star-empty:    rgba(212,175,106,0.22);

  --ff-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-script:  "Caveat", "Segoe Script", cursive;

  --container: 1200px;
  --radius:    2px;          /* sharp corners */
  --gutter:    clamp(1.1rem, 4vw, 2.4rem);

  --topbar-h:  2.5rem;
  --bar-h:     6.25rem;      /* tall enough for the large brand mark */
  --header-h:  8.75rem;      /* topbar + bar */

  --section-pad: 80px;       /* max vertical space between sections */

  --shadow-card: 0 22px 60px -28px rgba(0,0,0,0.85);
  --shadow-soft: 0 8px 28px -16px rgba(0,0,0,0.7);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -------- 2. Reset / base -------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(120% 80% at 88% -10%, rgba(212,175,106,0.10), transparent 60%),
    radial-gradient(90% 70% at -10% 12%, rgba(69,18,28,0.55), transparent 60%),
    radial-gradient(140% 120% at 50% 120%, rgba(212,175,106,0.06), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--accent-warm); text-decoration: none; }
a:hover { color: var(--accent-soft); }

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent-soft); }

p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 700; }

::selection { background: var(--accent); color: var(--brand-dark); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* -------- 3. Layout helpers ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(2.5rem, 6vw, var(--section-pad)); position: relative; }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.eyebrow--solo::after { display: none; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(1.6rem,4vw,2.6rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 0.8rem; }
.section-head p { margin-top: 1rem; }

.scribble {
  font-family: var(--ff-script);
  color: var(--accent-warm);
  font-size: 1.6rem;
  line-height: 1;
  transform: rotate(-4deg);
}

/* -------- 4. Buttons ------------------------------------------- */
.btn {
  --btn-pad-y: 0.85rem;
  --btn-pad-x: 1.7rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn--primary,
.btn--play {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
  color: var(--brand-dark);
  box-shadow: 0 12px 30px -14px rgba(212,175,106,0.7);
}
.btn--primary:hover,
.btn--play:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(212,175,106,0.85);
  color: var(--brand-dark);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
  transform: translateY(-2px);
}
.btn--block { width: 100%; }
.btn--sm { --btn-pad-y: 0.6rem; --btn-pad-x: 1.15rem; font-size: 0.78rem; }

/* -------- 5. Two-tier editorial header ------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* Tier 1 — utility ribbon (collapses on scroll) */
.header-topbar {
  background: var(--brand-dark);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  max-height: var(--topbar-h);
  transition: max-height .4s var(--ease), opacity .3s var(--ease);
}
.site-header.is-scrolled .header-topbar { max-height: 0; opacity: 0; border-bottom-color: transparent; }
.header-topbar__inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-trust { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar-trust span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim);
}
.topbar-trust span::before { content: "◆"; color: var(--accent); font-size: 0.5rem; }
.topbar-links { display: flex; gap: 1.4rem; }
.topbar-links a {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.topbar-links a:hover { color: var(--accent-soft); }

/* Tier 2 — main bar */
.header-bar {
  background: linear-gradient(180deg, rgba(26,4,10,0.92), rgba(26,4,10,0.80));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(212,175,106,0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled .header-bar {
  box-shadow: 0 16px 44px -24px rgba(0,0,0,0.92), 0 1px 0 rgba(212,175,106,0.24);
}
.header-bar__inner {
  height: var(--bar-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: height .3s var(--ease);
}
.site-header.is-scrolled .header-bar__inner { height: calc(var(--bar-h) - 0.9rem); }

/* Brand mark — emblem + two-line wordmark (deliberately large) */
.brand { display: inline-flex; align-items: center; gap: 1.05rem; flex-shrink: 0; }
.brand__emblem {
  width: 84px; height: 84px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  transition: width .3s var(--ease), height .3s var(--ease);
}
.site-header.is-scrolled .brand__emblem { width: 60px; height: 60px; }
.brand__word { display: flex; flex-direction: column; line-height: 1.02; }
.brand__line1 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: 2.15rem;
  color: var(--accent-soft);
  transition: font-size .3s var(--ease);
}
.brand__line2 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.site-header.is-scrolled .brand__line1 { font-size: 1.65rem; }

.main-nav { display: flex; align-items: center; margin-inline: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.7rem 0.95rem;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--accent-soft); }
.nav-link .caret {
  width: 0.5rem; height: 0.5rem;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
  opacity: 0.7;
}
.nav-item--has-submenu:hover .nav-link .caret { transform: rotate(225deg) translateY(-1px); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-divider {
  width: 1px; height: 2rem;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
}

/* nav underline glide indicator */
.nav-indicator {
  position: absolute;
  bottom: -0.15rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0;
  transition: left .3s var(--ease), width .3s var(--ease), opacity .3s var(--ease);
  pointer-events: none;
}
.nav-list:hover .nav-indicator { opacity: 1; }

/* -------- 6. Reviews dropdown (R13 bridge) --------------------- */
.nav-item--has-submenu { position: relative; }
.nav-item--has-submenu::after {       /* transparent hover bridge */
  content: "";
  position: absolute;
  top: 100%;
  left: -0.75rem; right: -0.75rem;
  height: 1.15rem;
  pointer-events: auto;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 1.05rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(34rem, 86vw);
  padding: 1rem;
  background: linear-gradient(150deg, rgba(38,8,16,0.97), rgba(18,3,7,0.98));
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 50;
}
.nav-submenu::before {                 /* pointer triangle */
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: rgba(38,8,16,0.97);
  border-left: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}
.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu,
.nav-item--has-submenu.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.submenu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.submenu-item:hover {
  background: rgba(212,175,106,0.08);
  border-color: var(--border);
  transform: translateX(2px);
}
.submenu-name {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.submenu-item:hover .submenu-name { color: var(--accent-soft); }

/* cream logo plate (R6) — shared */
.logo-plate {
  background: linear-gradient(150deg, var(--cream-1), var(--cream-2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.55rem;
  box-shadow: inset 0 0 0 1px rgba(176,141,68,0.25);
}
.logo-plate img { width: 100%; height: 100%; object-fit: contain; }
.submenu-logo { width: 56px; height: 40px; flex-shrink: 0; }
.submenu-logo img { max-height: 30px; }

/* -------- 7. Mobile nav / hamburger ---------------------------- */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.menu-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.menu-toggle span:nth-child(3) { transform: translate(-50%,  5px); }
.menu-toggle.is-active span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translate(-50%,-50%) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* -------- 8. Home hero (asymmetric editorial) ----------------- */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  min-height: min(90vh, 840px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.26; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(85% 90% at 12% 25%, rgba(18,3,7,0.78), transparent 60%),
    radial-gradient(70% 80% at 96% 8%, rgba(212,175,106,0.13), transparent 55%),
    linear-gradient(0deg, var(--bg) 3%, transparent 42%);
}
.hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 1.03;
  margin: 1rem 0 1.25rem;
}
.hero__lede {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  max-width: 40rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }

/* integrated stat row */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.hero__stat__num { font-family: var(--ff-display); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--accent-soft); line-height: 1; }
.hero__stat__label { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.4rem; }

/* media column: framed image + floating editor's-pick card */
.hero__media { position: relative; }
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border-strong);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame:not(:has(img)) {
  background:
    radial-gradient(75% 60% at 70% 25%, rgba(212,175,106,0.22), transparent),
    linear-gradient(160deg, var(--brand-light), var(--brand-dark));
}
.hero__scribble {
  position: absolute;
  top: -1.3rem; right: 0.4rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  z-index: 3;
}
.hero__scribble .scribble { font-size: 1.7rem; }
.hero__scribble svg { width: 34px; height: 30px; color: var(--accent); }
.hero__pick {
  position: absolute;
  left: clamp(-1.75rem, -2.5vw, -0.5rem);
  bottom: 1.5rem;
  width: min(22rem, 90%);
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem 1.3rem 1.3rem;
  background: linear-gradient(155deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.hero__pick__tag {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.hero__pick__logo {
  width: 100%;
  height: 92px;
  margin-bottom: 0.1rem;
}
.hero__pick__logo img { max-height: 64px; }
.hero__pick__name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.hero__pick__name .stars { font-size: 0.8rem; }
.hero__pick__bonus { font-size: 0.84rem; color: var(--text-muted); }

/* -------- 10. Top-rated podium + runners ----------------------- */
.top-rated__head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.top-rated__head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.top-rated__scribble {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.top-rated__scribble .scribble { font-size: 1.9rem; }
.top-rated__scribble svg { width: 46px; height: 40px; color: var(--accent); }

.podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 2.6rem;
}
.podium-card {
  position: relative;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.podium-card:hover { transform: translateY(-6px); border-top-color: var(--accent-soft); }
.podium-card--featured {
  transform: translateY(-1rem);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--accent);
  background: linear-gradient(165deg, var(--bg-elevated), var(--bg-panel));
}
.podium-card--featured:hover { transform: translateY(calc(-1rem - 6px)); }
.podium-card__rank {
  position: absolute;
  top: -0.9rem; left: 1.2rem;
  width: 2.4rem; height: 2.4rem;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-dark);
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
  border-radius: 50%;
  box-shadow: 0 8px 20px -8px rgba(212,175,106,0.7);
}
.podium-card__ribbon {
  position: absolute;
  top: -0.85rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
  color: var(--brand-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(212,175,106,0.7);
}
.podium-card .logo-plate { width: 100%; max-width: 260px; height: 130px; margin: 0.4rem auto 0; padding: 0.9rem 1.1rem; }
.podium-card .logo-plate img { max-height: 96px; }
.podium-card__name { font-size: 1.45rem; }
.podium-card__name .stars { font-size: 0.9rem; display: block; margin-top: 0.4rem; }
.podium-card__bonus {
  font-size: 0.92rem;
  color: var(--text-muted);
  min-height: 2.6em;
}
.podium-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  border-block: 1px solid var(--border-soft);
  padding-block: 0.9rem;
}
.stat { text-align: center; }
.stat__value { font-family: var(--ff-display); font-size: 1.05rem; color: var(--accent-soft); }
.stat__label { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.2rem; }
.read-review {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
}
.read-review:hover { color: var(--accent-soft); }
.read-review::after { content: "→"; transition: transform .2s var(--ease); }
.read-review:hover::after { transform: translateX(3px); }

.runners { display: flex; flex-direction: column; gap: 0.7rem; }
.runner {
  display: grid;
  grid-template-columns: 3rem 240px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(160deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.3rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.runner:hover { border-color: var(--border-strong); transform: translateX(3px); }
.runner__rank {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  text-align: center;
}
.runner .logo-plate { width: 100%; height: 96px; padding: 0.7rem 0.9rem; }
.runner .logo-plate img { max-height: 76px; }
.runner__info { min-width: 0; }
.runner__name { font-family: var(--ff-display); font-size: 1.1rem; }
.runner__name .stars { font-size: 0.72rem; }
.runner__bonus { font-size: 0.82rem; color: var(--text-muted); }
.runner__cta { display: flex; align-items: center; gap: 0.7rem; }
.runner__cta .read-review { white-space: nowrap; }

/* -------- 11. Home intro --------------------------------------- */
.glyph {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.home-intro { text-align: center; }
.home-intro .container { max-width: 880px; }
.home-intro__lede {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 1.95rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  margin: 1rem 0 1.8rem;
}
.home-intro__lede em { font-style: italic; color: var(--accent-soft); }
.home-intro__cta { display: inline-flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* -------- 12. Floor / bento ------------------------------------ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.floor-tile {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  grid-column: span 2;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.floor-tile:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.floor-tile[data-mono]::after {
  content: attr(data-mono);
  position: absolute;
  right: -0.4rem; bottom: -1.6rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: 8rem;
  line-height: 1;
  color: rgba(212,175,106,0.06);
  pointer-events: none;
}
.floor-tile h3 { font-size: 1.3rem; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.floor-tile p { font-size: 0.92rem; position: relative; z-index: 1; }
.floor-tile--feature { grid-column: span 3; }
.floor-tile--wide   { grid-column: span 4; }
.floor-tile--narrow { grid-column: span 2; }
.floor-tile--narrow3{ grid-column: span 3; }
.floor-tile--full   { grid-column: 1 / -1; }

/* generic builder floor-grid (R3 columns set inline via --cols) */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: 1.2rem;
}
.floor-grid .floor-tile { grid-column: auto; }

/* -------- 13. Split-layout ------------------------------------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.split-layout--reverse .split-layout__media { order: 2; }
.split-layout__media {
  position: relative;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}
.split-layout__media img { width: 100%; height: 100%; object-fit: cover; }
.split-layout__media:empty {
  background:
    radial-gradient(80% 60% at 70% 20%, rgba(212,175,106,0.2), transparent),
    linear-gradient(160deg, var(--brand-light), var(--brand-dark));
}
.split-layout__body h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 1.1rem; }
.split-layout__body > p { margin-bottom: 1.2rem; }

/* -------- 14. Feature check-list (R10: block-level li) --------- */
.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: linear-gradient(160deg, rgba(212,175,106,0.08), rgba(212,175,106,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.feature-check-list li,
.feature-check-list--plain li {
  display: block;                 /* R10 — never grid */
  position: relative;
  padding-left: 2.3rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.feature-check-list li strong,
.feature-check-list--plain li strong { color: var(--text); }
.feature-check-list li::before,
.feature-check-list--plain li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.15rem;
  width: 1.5rem; height: 1.5rem;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-deep));
  border-radius: 50%;
}
.feature-check-list--plain {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
  gap: 1rem;
}
.feature-check-list--plain li {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.05rem 1.2rem 1.05rem 3rem;
}
.feature-check-list--plain li::before { left: 1rem; top: 1.1rem; }

/* -------- 15. Art-deco security / accreditation card ----------- */
.accred-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.4rem);
}
.accred-card::before {              /* diagonal gold sweep */
  content: "";
  position: absolute;
  top: -60%; left: -30%;
  width: 60%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(212,175,106,0.1), transparent);
  transform: rotate(18deg);
  transition: left 1.1s var(--ease);
}
.accred-card:hover::before { left: 120%; }
.accred-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--accent);
  transition: width .35s var(--ease), height .35s var(--ease);
}
.accred-corner--tl { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; }
.accred-corner--tr { top: 12px; right: 12px; border-top: 2px solid; border-right: 2px solid; }
.accred-corner--bl { bottom: 12px; left: 12px; border-bottom: 2px solid; border-left: 2px solid; }
.accred-corner--br { bottom: 12px; right: 12px; border-bottom: 2px solid; border-right: 2px solid; }
.accred-card:hover .accred-corner { width: 42px; height: 42px; }
.accred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1.4rem;
  margin-top: 1.8rem;
  position: relative;
  z-index: 1;
}
.accred-item h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.accred-item p { font-size: 0.9rem; }
.accred-item__icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.5rem; }

/* -------- 16. Rewards bento + VIP strip ------------------------ */
.rewards-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.reward-tile {
  grid-column: span 2;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem;
  position: relative;
}
.reward-tile__tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.reward-tile h3 { font-size: 1.2rem; margin: 0.5rem 0; }
.reward-tile p { font-size: 0.88rem; }
.reward-tile--lg { grid-column: span 3; }
.vip-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: linear-gradient(135deg, rgba(212,175,106,0.14), rgba(212,175,106,0.03));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.6rem 1.9rem;
}
.vip-strip__text h3 { font-size: 1.4rem; }
.vip-strip__text p { font-size: 0.9rem; margin-top: 0.3rem; }

/* -------- 17. Support card ------------------------------------- */
.support-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4rem);
}
.support-card::after {
  content: "24/7";
  position: absolute;
  right: -1rem; bottom: -2.5rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 800;
  font-size: 10rem;
  color: rgba(212,175,106,0.05);
  pointer-events: none;
}
.support-card > * { position: relative; z-index: 1; }
.support-card h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 0.8rem auto 1rem; max-width: 22ch; }
.support-card p { max-width: 620px; margin: 0 auto 1.6rem; }

/* -------- 18. Image-divider (R11: inside .container) ----------- */
.image-divider {
  position: relative;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  margin-block: clamp(2rem, 5vw, 3.4rem);
}
.image-divider img { width: 100%; height: 100%; object-fit: cover; }
.image-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,3,7,0.6), transparent 45%, rgba(212,175,106,0.12));
}
.image-divider:empty,
.image-divider:not(:has(img)) {
  background:
    radial-gradient(70% 120% at 80% 50%, rgba(212,175,106,0.2), transparent),
    linear-gradient(135deg, var(--brand-light), var(--brand-dark));
}

/* -------- 19. Review-hero (two-column masthead) --------------- */
.review-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 5vw, 3.4rem) clamp(2rem, 5vw, 3rem);
}
.review-hero__bg { position: absolute; inset: 0; z-index: 0; }
.review-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.review-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(80% 90% at 12% 10%, rgba(18,3,7,0.7), transparent 60%),
    radial-gradient(70% 80% at 95% 0%, rgba(212,175,106,0.12), transparent 55%),
    linear-gradient(0deg, var(--bg) 4%, rgba(18,3,7,0.6) 50%, transparent);
}
.review-hero .container { position: relative; z-index: 2; }
.review-hero__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: start;
}
.breadcrumb {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-soft); }
.breadcrumb span::before { content: "›"; margin-right: 0.45rem; color: var(--accent); }
.breadcrumb a:first-child::before { content: none; }
.review-hero__title {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  max-width: 22ch;
}
.rating-badge {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--accent-soft);
  background: rgba(212,175,106,0.12);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.rating-badge::before { content: "★"; color: var(--accent); }

.review-byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.6rem 0;
}
.byline-avatar {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.byline-meta { line-height: 1.3; }
.byline-name {
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.byline-check {
  width: 1rem; height: 1rem;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: var(--brand-dark);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 900;
}
.byline-role { font-size: 0.8rem; color: var(--text-dim); }
.review-hero__lede { max-width: 58ch; font-size: 1.05rem; margin-bottom: 0; }

/* operator card (right column) */
.operator-card {
  position: relative;
  display: grid;
  gap: 1.1rem;
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-strong);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
}
.operator-card__logo { width: 100%; height: 140px; padding: 1rem 1.3rem; }
.operator-card__logo img { max-height: 104px; }
.operator-card__score { display: flex; align-items: center; gap: 0.55rem; line-height: 1; }
.operator-card__num { font-family: var(--ff-display); font-size: 2.4rem; color: var(--accent-soft); }
.operator-card__out { color: var(--text-dim); font-size: 0.95rem; margin-right: auto; }
.operator-card__score .stars { font-size: 1rem; }
.operator-card__bonus {
  border-block: 1px solid var(--border-soft);
  padding-block: 1rem;
}
.operator-card__label {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 800;
}
.operator-card__bonusval {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--text);
  line-height: 1.25;
  margin-top: 0.35rem;
}
.visitor-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.visitor-bar strong { color: var(--accent-soft); }
.visitor-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4cd07d;
  position: relative;
  flex-shrink: 0;
}
.visitor-dot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #4cd07d;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* -------- 20. Editor's Verdict --------------------------------- */
.verdict { padding-block: clamp(2.5rem, 6vw, 4rem); }
.verdict-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-card);
}
.verdict-card__head { grid-column: 1 / -1; }
.verdict-card__head h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-top: 0.5rem; }
.rating-list { display: flex; flex-direction: column; gap: 0.7rem; }
.rating-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.rating-row:last-child { border-bottom: 0; }
.rating-row__label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.rating-row__score { font-family: var(--ff-display); font-weight: 700; color: var(--accent-soft); font-size: 0.95rem; }
.rating-row--overall {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.1rem;
  margin-bottom: 0.4rem;
}
.rating-row--overall .rating-row__label { font-family: var(--ff-display); font-size: 1.2rem; color: var(--text); font-weight: 700; }
.rating-row--overall .rating-row__score { font-size: 1.6rem; }
.rating-row--overall .stars { font-size: 1.25rem; }
.verdict-note {
  position: relative;
  background: linear-gradient(160deg, rgba(212,175,106,0.08), transparent);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.verdict-note::before {
  content: "\201C";
  font-family: var(--ff-display);
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(212,175,106,0.35);
  display: block;
  margin-bottom: 0.4rem;
}
.verdict-note p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
}
.verdict-note cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

/* -------- 21. Stars (CSS-only) --------------------------------- */
.stars { display: inline-flex; gap: 0.06em; line-height: 1; }
.star { position: relative; display: inline-block; color: var(--star-empty); }
.star--full  { color: var(--accent); }
.star--empty { color: var(--star-empty); }
.star--half  { color: var(--star-empty); }
.star--half::before {
  content: "★";
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent);
}

/* -------- 22. Inner-page content (builder output) -------------- */
.page-content { padding-block: clamp(2.5rem, 6vw, 4rem); }
.content-section { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.content-section > .container > h2,
.content-section h2.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin-bottom: 1.4rem;
}
.plain-card {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.plain-card h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 1.2rem; }
.plain-card p { max-width: 75ch; margin-bottom: 1rem; }
.plain-card p:last-child { margin-bottom: 0; }

.intro-block {
  position: relative;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(212,175,106,0.06), transparent);
  padding: clamp(2rem, 5vw, 3rem);
}
.intro-block .glyph { margin: 0 auto 0.6rem; }
.intro-block p { max-width: 70ch; margin: 0 auto 1rem; font-size: 1.05rem; }
.intro-block p:last-child { margin-bottom: 0; }

/* overview / spec table */
.spec-table {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-panel));
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table table { width: 100%; border-collapse: collapse; }
.spec-table th { display: none; }
.spec-table tr { border-bottom: 1px solid var(--border-soft); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table tr:nth-child(even) { background: rgba(212,175,106,0.03); }
.spec-table td { padding: 0.85rem 1.4rem; vertical-align: top; }
.spec-table td:first-child {
  font-weight: 700;
  color: var(--accent-soft);
  font-family: var(--ff-body);
  width: 38%;
  white-space: nowrap;
}
.spec-table td:last-child { color: var(--text-muted); }
@media (max-width: 560px) {
  .spec-table td { display: block; padding-block: 0.4rem; }
  .spec-table td:first-child { width: auto; white-space: normal; padding-bottom: 0; }
  .spec-table td:last-child { padding-top: 0; padding-bottom: 0.9rem; }
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 75ch;
}
.content-list li {
  display: block;
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-muted);
}
.content-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65rem;
  width: 0.5rem; height: 0.5rem;
  background: var(--accent);
  transform: rotate(45deg);
}

/* -------- 23. Info page hero (centered editorial masthead) ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(2.4rem, 6vw, 3.6rem) clamp(1.8rem, 4vw, 2.6rem);
  border-bottom: 1px solid var(--border);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 90% at 50% -10%, rgba(212,175,106,0.14), transparent 60%),
    linear-gradient(0deg, var(--bg) 5%, rgba(18,3,7,0.55));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { justify-content: center; margin-bottom: 0.9rem; }
.page-hero__title { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 24ch; margin: 0.4rem auto 0; }
.page-hero__title::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.page-hero__lede { max-width: 62ch; margin: 1.1rem auto 0; font-size: 1.05rem; }

/* -------- 24. Footer (CTA band + editorial columns) ----------- */
.site-footer { position: relative; margin-top: clamp(2.5rem, 6vw, var(--section-pad)); }

/* lead CTA band */
.footer-cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(212,175,106,0.16), rgba(212,175,106,0.03)),
    linear-gradient(180deg, var(--bg-elevated), var(--bg-panel));
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
}
.footer-cta-band::after {
  content: "\2736";
  position: absolute;
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  color: rgba(212,175,106,0.06);
  pointer-events: none;
}
.footer-cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-block: clamp(1.8rem, 4vw, 2.7rem);
}
.footer-cta-band h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin-top: 0.45rem; }
.footer-cta-band h2 em { font-style: italic; color: var(--accent-soft); }

.footer-main {
  background: linear-gradient(180deg, var(--bg-panel), var(--brand-dark));
  padding-block: clamp(2.4rem, 5vw, 3.4rem) 2.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1.2fr 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.8rem);
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand .brand__emblem { width: 54px; height: 54px; }
.footer-brand .brand__line1 { font-size: 1.4rem; }
.footer-brand p { font-size: 0.88rem; max-width: 36ch; }
.footer-brand__age {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim);
}
.footer-brand__age strong {
  display: grid; place-items: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent-soft);
  font-size: 0.7rem;
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-col a:hover { color: var(--accent-soft); }
.footer-col a .mini-plate {
  width: 30px; height: 22px;
  background: linear-gradient(150deg, var(--cream-1), var(--cream-2));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  padding: 2px 3px;
  flex-shrink: 0;
}
.footer-col a .mini-plate img { max-height: 16px; width: 100%; object-fit: contain; }

.footer-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-block: 1.8rem;
  border-top: 1px solid var(--border-soft);
  background: var(--brand-dark);
}
.accred-badge {
  position: relative;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.accred-badge::before,
.accred-badge::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  border-color: var(--accent);
}
.accred-badge::before { top: 4px; left: 4px; border-top: 1.5px solid; border-left: 1.5px solid; }
.accred-badge::after  { bottom: 4px; right: 4px; border-bottom: 1.5px solid; border-right: 1.5px solid; }

.footer-bottom {
  background: var(--brand-dark);
  text-align: center;
  padding-block: 1.8rem 2.2rem;
  border-top: 1px solid var(--border-soft);
}
.footer-bottom__orn {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); max-width: 70ch; margin: 0.4rem auto; }
.footer-bottom .disclaimer { font-size: 0.74rem; }

/* -------- 25. Reveal-on-scroll --------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* -------- 26. 404 ---------------------------------------------- */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 4rem;
}
.error-page__code {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 18vw, 10rem);
  color: var(--accent-soft);
  line-height: 1;
}
.error-page h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin: 0.6rem 0 1rem; }
.error-page p { max-width: 48ch; margin: 0 auto 1.8rem; }
.error-page__cta { display: inline-flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* -------- 27. Responsive --------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero { min-height: auto; }
  .hero__media { max-width: 32rem; margin-inline: auto; width: 100%; }
  .review-hero__grid { grid-template-columns: 1fr; }
  .operator-card { max-width: 28rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  /* collapse the utility ribbon, header = main bar only */
  :root { --header-h: var(--bar-h); }
  .header-topbar { display: none; }
  .brand__emblem { width: 46px; height: 46px; }
  .brand__line1 { font-size: 1.3rem; }
  .header-divider { display: none; }
  .header-actions { gap: 0.6rem; }

  /* mobile nav drawer */
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, rgba(26,4,10,0.98), rgba(12,3,5,0.99));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    margin-inline: 0;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.2rem; width: 100%; max-width: 26rem; margin-inline: auto; }
  .nav-link { font-size: 1.05rem; padding: 0.9rem 1rem; justify-content: space-between; border-bottom: 1px solid var(--border-soft); }
  .nav-indicator { display: none; }
  .nav-submenu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
  }
  .nav-submenu::before { display: none; }
  .nav-item--has-submenu.is-open .nav-submenu { max-height: 40rem; padding: 0.6rem 0 0.8rem; }
  .submenu-grid { grid-template-columns: 1fr; }

  .podium { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .podium-card--featured { transform: none; order: -1; }
  .podium-card--featured:hover { transform: translateY(-6px); }

  .runner { grid-template-columns: 2.4rem 1fr; grid-template-areas: "rank logo" "info info" "cta cta"; row-gap: 0.7rem; }
  .runner__rank { grid-area: rank; }
  .runner .logo-plate { grid-area: logo; justify-self: start; width: 220px; height: 88px; }
  .runner__info { grid-area: info; }
  .runner__cta { grid-area: cta; justify-content: space-between; }

  .bento, .rewards-bento { grid-template-columns: repeat(4, 1fr); }
  .floor-tile, .floor-tile--feature, .floor-tile--narrow, .floor-tile--narrow3, .reward-tile, .reward-tile--lg { grid-column: span 2; }
  .floor-tile--wide, .floor-tile--full { grid-column: 1 / -1; }
  .floor-grid { --cols: 2 !important; }

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

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

@media (max-width: 560px) {
  :root { --gutter: 1.1rem; }
  .brand__line2 { display: none; }
  .hero__scribble { display: none; }
  .hero__pick { position: static; width: 100%; left: auto; bottom: auto; margin-top: 1.1rem; }
  .hero__stats { gap: 1.2rem 1.6rem; }
  .bento, .rewards-bento { grid-template-columns: 1fr; }
  .floor-tile, .floor-tile--feature, .floor-tile--wide, .floor-tile--narrow, .floor-tile--narrow3, .floor-tile--full,
  .reward-tile, .reward-tile--lg { grid-column: 1 / -1; }
  .floor-grid { --cols: 1 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-hero__title { font-size: clamp(1.7rem, 8vw, 2.3rem); }
}

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