/* ==========================================================================
   Flawless Casino Review — flawlesscasinoreview.co.uk
   Palette: red / black / bone. Editorial broadsheet structure: hard rules,
   split section headers, hairline grids, one accent colour used sparingly.
   No web fonts are loaded: Arial is used throughout, which also keeps first
   render fast on mobile connections.
   ========================================================================== */

:root {
  --red: #e10600;
  --red-deep: #a80400;
  --red-glow: rgba(225, 6, 0, 0.35);
  --ink: #0a0a0a;
  --ink-2: #121212;
  --ink-3: #1a1a1a;
  --ink-4: #060606;
  --line: #2b2b2b;
  --line-soft: #1f1f1f;
  --paper: #f2efe9;
  --paper-dim: #b9b5ad;
  --muted: #8d8a84;
  --green: #37c07a;
  --amber: #f0b429;
  --shell: 1320px;
  --gutter: clamp(20px, 4vw, 44px);
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-head: "Arial Black", "Arial Bold", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Film-grain overlay — keeps large flat blacks from banding. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: var(--paper); text-decoration: none; }
a:hover { color: var(--red); }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.wide { max-width: 1600px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.94;
  margin: 0 0 18px;
}
h1 { font-size: clamp(30px, 4.4vw, 52px); }
h2 { font-size: clamp(25px, 3.4vw, 42px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
h4 { font-size: 16px; letter-spacing: 0.02em; }
p { margin: 0 0 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }

.lead { font-size: 17px; color: var(--paper-dim); max-width: 62ch; }
.muted { color: var(--muted); }
.red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--paper);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); background: var(--paper); color: var(--ink); }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 6px 6px 0 var(--red-deep); }
.btn-red:hover { background: #fff; border-color: #fff; color: var(--ink); box-shadow: 6px 6px 0 var(--red); }
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-block { width: 100%; }

/* ---------- Age badge ---------- */
.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0;
  background: rgba(225, 6, 0, 0.08);
}
.age-lg { width: 62px; height: 62px; flex-basis: 62px; font-size: 19px; }

/* ---------- Top strip ---------- */
.topbar {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 0;
  position: relative;
  z-index: 40;
}
.topbar .shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: #fff; text-decoration: underline; }
.topbar .age { width: 22px; height: 22px; flex-basis: 22px; font-size: 9px; border-color: #fff; color: #fff; background: rgba(0, 0, 0, 0.18); }
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-right { display: none; }
@media (min-width: 860px) { .topbar-right { display: block; } }

/* ---------- Header: brand · centred nav · actions ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 80px;
  gap: 24px;
}

.brandmark { display: flex; align-items: center; gap: 12px; }
.brandmark .mark {
  width: 38px; height: 38px;
  background: var(--red);
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 18px; color: #fff;
  transform: skewX(-8deg);
}
.brandmark .name { font-family: var(--font-head); font-size: 17px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.brandmark .name small { display: block; font-family: var(--font); font-size: 9px; letter-spacing: 0.26em; color: var(--muted); font-weight: normal; margin-top: 4px; }

.nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 30px); }
.nav a {
  font-size: 12px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 0; position: relative; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red);
  transition: width 0.2s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 14px; justify-self: end; }
.burger {
  display: none; width: 44px; height: 40px; border: 2px solid var(--line); background: transparent; cursor: pointer;
  padding: 0; place-items: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--paper); box-shadow: 0 -6px 0 var(--paper), 0 6px 0 var(--paper); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
  z-index: 2;
}
.marquee.dark { background: var(--ink-3); color: var(--paper); border-color: var(--line); }
.marquee-track { display: flex; width: max-content; animation: slide 32s linear infinite; }
.marquee-track span {
  font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 11px 0; white-space: nowrap;
}
.marquee-track span i { font-style: normal; opacity: 0.55; margin: 0 22px; }
@keyframes slide { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ==========================================================================
   HERO — built from hard geometry, not a glow: a halftone dot field, a set of
   skewed registration bars along the right edge and an outlined wordmark.
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink-4);
  border-bottom: 2px solid var(--red);
  overflow: hidden;
}

.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1.3px);
  background-size: 19px 19px;
  -webkit-mask-image: linear-gradient(200deg, #000 0%, rgba(0, 0, 0, 0.32) 58%, transparent 88%);
  mask-image: linear-gradient(200deg, #000 0%, rgba(0, 0, 0, 0.32) 58%, transparent 88%);
}

.hero-rule {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  opacity: 0.6;
}

.hero-bars {
  position: absolute;
  top: -16%;
  bottom: -16%;
  right: -3%;
  width: min(660px, 60vw);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  transform: skewX(-13deg);
}
.hero-bars i { display: block; width: clamp(26px, 4.4vw, 72px); }
.hero-bars i:nth-child(1) { width: clamp(14px, 1.8vw, 28px); border: 1px solid rgba(255, 255, 255, 0.07); }
.hero-bars i:nth-child(2) { background: linear-gradient(180deg, transparent, rgba(225, 6, 0, 0.18) 52%, rgba(225, 6, 0, 0.44)); }
.hero-bars i:nth-child(3) { border-left: 2px solid rgba(225, 6, 0, 0.4); border-right: 2px solid rgba(225, 6, 0, 0.4); }
.hero-bars i:nth-child(4) { width: clamp(8px, 1.1vw, 16px); background: var(--red); }
.hero-bars i:nth-child(5) { background: rgba(255, 255, 255, 0.035); }

.hero-ghost {
  position: absolute;
  left: -0.04em;
  bottom: 62px;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(120px, 19vw, 300px);
  line-height: 0.8;
  letter-spacing: -0.045em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) 0 clamp(48px, 6vw, 76px);
}
.hero h1 { font-size: clamp(34px, 5vw, 62px); max-width: 13ch; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--red); display: block; }
.hero .lead { font-size: 16px; max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-sig {
  display: flex; align-items: center; gap: 12px;
  margin: 30px 0 0;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.hero-sig::before { content: ""; width: 46px; height: 1px; background: var(--line); flex: 0 0 46px; }

/* Hero dossier panel */
.hero-panel {
  background: rgba(14, 14, 14, 0.88);
  border: 1px solid var(--line);
  box-shadow: 20px 20px 0 rgba(225, 6, 0, 0.13);
}
.hero-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 18px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
  font-size: 10px; font-weight: bold; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
}
.hero-panel-head b { font-family: var(--font-head); font-size: 12px; color: var(--red); letter-spacing: 0.08em; }
.hero-panel-note { margin: 0; padding: 14px 18px; font-size: 11px; color: var(--muted); }

.hero-card {
  display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; gap: 18px; align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease, padding-left 0.15s ease;
}
.hero-card:hover { background: rgba(225, 6, 0, 0.07); padding-left: 24px; }
.hero-card .logo-plate { background: #fff; border-radius: 4px; padding: 8px; display: grid; place-items: center; height: 56px; }
.hero-card .logo-plate img { max-height: 40px; width: auto; object-fit: contain; }
.hero-card h3 { margin: 0 0 4px; font-size: 16px; }
.hero-card p { margin: 0; font-size: 12px; color: var(--muted); }
.hero-card .score { font-family: var(--font-head); font-size: 26px; color: var(--red); line-height: 1; text-align: right; }
.hero-card .score span { display: block; font-family: var(--font); font-size: 9px; letter-spacing: 0.18em; color: var(--muted); }

/* Full-width statistics band closing the hero */
.hero-band { position: relative; z-index: 2; border-top: 1px solid var(--line); background: rgba(0, 0, 0, 0.55); }
.hero-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hero-facts div { padding: 24px 0 24px 26px; border-left: 1px solid var(--line); }
.hero-facts div:first-child { border-left: 0; padding-left: 0; }
.hero-facts div strong { display: block; font-family: var(--font-head); font-size: clamp(24px, 3vw, 34px); color: var(--paper); line-height: 1; margin-bottom: 8px; }
.hero-facts div:nth-child(odd) strong { color: var(--red); }
.hero-facts div span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================================
   SECTIONS — split editorial header: numbered rule, title left, standfirst right
   ========================================================================== */
.section { padding: clamp(58px, 7vw, 92px) 0; position: relative; }
.section.alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.tight { padding: clamp(44px, 5vw, 62px) 0; }

body { counter-reset: sh; }
.section-head {
  counter-increment: sh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: clamp(28px, 5vw, 84px);
  align-items: end;
  max-width: none;
  margin: 0 0 clamp(34px, 4vw, 52px);
  padding-top: 26px;
  border-top: 2px solid var(--paper);
}
.section-head::after {
  content: counter(sh, decimal-leading-zero);
  position: absolute;
  top: -26px;
  right: 0;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.section-head .eyebrow { grid-column: 1; grid-row: 1; margin-bottom: 12px; }
.section-head h2 { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.section-head .lead { grid-column: 2; grid-row: 1 / span 2; align-self: end; margin: 0; max-width: 54ch; }

.section-head.center {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  border-top-color: var(--line);
}
.section-head.center::after { left: 0; right: 0; text-align: center; }
.section-head.center .eyebrow { grid-column: 1; grid-row: auto; justify-content: center; }
.section-head.center h2 { grid-column: 1; grid-row: auto; }
.section-head.center .lead { grid-column: 1; grid-row: auto; margin-top: 16px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

/* ---------- Cards ---------- */
.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--red); transform: translateY(-3px); }
.card .num {
  font-family: var(--font-head); font-size: 34px; color: var(--red); opacity: 0.35; line-height: 1; margin-bottom: 12px; display: block;
}
.card h3 { font-size: 17px; }
.card p { font-size: 14px; color: var(--paper-dim); margin: 0; }

/* ---------- Process rail (replaces a plain card grid for the method) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 2px solid var(--line); }
.step { position: relative; padding: 32px 28px; border-right: 1px solid var(--line); }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; border-right: 0; }
.step::before {
  content: ""; position: absolute; top: -2px; left: 0; height: 2px; width: 0; background: var(--red);
  transition: width 0.35s ease;
}
.step:hover::before { width: 100%; }
.step .num {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 12px; letter-spacing: 0.28em; color: var(--red);
  margin-bottom: 20px;
}
.step .num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.step h3 { font-size: 17px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--paper-dim); margin: 0; }

/* ---------- Bento (hairline grid) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.bento > * { background: var(--ink-2); padding: 30px; margin: 0; }
.bento h3 { font-size: 17px; }
.bento p { font-size: 14px; color: var(--paper-dim); margin: 0; }
.bento-lead {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-lead h2 { margin-bottom: 16px; }
.bento-lead .btn { align-self: flex-start; margin-top: 8px; }

/* ---------- Brand review card — copy first, scorecard on the right rail ---------- */
.brand-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.brand-card + .brand-card { margin-top: 30px; }
.brand-card:hover { border-color: var(--red); box-shadow: -14px 14px 0 rgba(225, 6, 0, 0.14); transform: translate(6px, -6px); }
.brand-side {
  grid-column: 2; grid-row: 1;
  background: linear-gradient(200deg, #171717, #0c0c0c);
  border-left: 1px solid var(--line);
  padding: 30px;
  display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; justify-content: center;
}
.brand-body { grid-column: 1; grid-row: 1; padding: 32px; }
.logo-plate-lg { background: #fff; width: 100%; border-radius: 6px; padding: 16px; display: grid; place-items: center; min-height: 96px; }
.logo-plate-lg img { max-height: 62px; width: auto; object-fit: contain; }
.score-badge { font-family: var(--font-head); font-size: 44px; color: var(--red); line-height: 1; }
.score-badge span { display: block; font-family: var(--font); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); margin-top: 6px; }
.stars { color: var(--amber); letter-spacing: 3px; font-size: 14px; }

.brand-body h3 { margin-bottom: 6px; }
.brand-body .tag { font-size: 13px; color: var(--red); font-weight: bold; margin-bottom: 14px; }
.tick-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; }
.tick-list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--paper-dim); }
.tick-list li::before {
  content: "✕"; position: absolute; left: 0; top: 0; color: var(--red); font-size: 12px; font-weight: bold;
}
.tick-list.yes li::before { content: "✓"; color: var(--green); }

.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.chip {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: bold;
  border: 1px solid var(--line); padding: 6px 12px; color: var(--paper-dim); background: var(--ink-3);
}
.chip.licence { border-color: var(--red); color: var(--red); }
.chip.licence a { color: var(--red); text-decoration: underline; }
.brand-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.tc { font-size: 11px; color: var(--muted); margin-top: 12px; }

/* ---------- Licence panel ---------- */
.licence-box {
  border: 2px dashed var(--line);
  background: var(--ink-3);
  padding: 20px 22px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.licence-box .lic-key { font-family: var(--font-head); font-size: 20px; color: var(--paper); }
.licence-box small { display: block; font-family: var(--font); font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; font-weight: normal; }
.licence-box a { color: var(--red); text-decoration: underline; font-size: 13px; word-break: break-all; }

/* ---------- Score bars ---------- */
.bars { display: grid; gap: 14px; }
.bar-row { display: grid; grid-template-columns: 150px 1fr 40px; gap: 14px; align-items: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.bar { height: 8px; background: var(--ink-3); border: 1px solid var(--line); overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--red-deep), var(--red)); }
.bar-row b { font-family: var(--font-head); color: var(--red); text-align: right; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 14px; }
th, td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--ink-3); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper); }
td { color: var(--paper-dim); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(225, 6, 0, 0.05); color: var(--paper); }
tbody th[scope="row"] { background: var(--ink-2); }

/* ---------- Accordion ---------- */
.acc { border-top: 2px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; background: none; border: 0; color: var(--paper); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; text-align: left;
  font-family: var(--font-head); font-size: 15px; text-transform: uppercase; letter-spacing: -0.01em;
}
.acc-head:hover { color: var(--red); }
.acc-head .plus {
  flex: 0 0 26px; width: 26px; height: 26px; border: 2px solid var(--red); color: var(--red);
  display: grid; place-items: center; font-size: 16px; line-height: 1; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.acc-item.open .acc-head .plus { transform: rotate(45deg); background: var(--red); color: #fff; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.acc-panel p { font-size: 14px; color: var(--paper-dim); padding-bottom: 22px; margin: 0; max-width: 78ch; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 800px; }
.prose h2 { font-size: clamp(20px, 2.4vw, 26px); margin-top: 40px; }
.prose h3 { font-size: 16px; margin-top: 28px; }
.prose p, .prose li { color: var(--paper-dim); font-size: 15px; }
.prose ul, .prose ol { padding-left: 20px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red); text-decoration: underline; }
.prose strong { color: var(--paper); }
.updated {
  display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: 6px 12px; margin-bottom: 26px;
}

/* ---------- Page header — same geometry as the hero, half height ---------- */
.page-head {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5vw, 66px) 0 clamp(38px, 4.5vw, 54px);
  background: var(--ink-4);
  border-bottom: 2px solid var(--red);
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1.3px);
  background-size: 19px 19px;
  -webkit-mask-image: linear-gradient(200deg, #000 0%, transparent 78%);
  mask-image: linear-gradient(200deg, #000 0%, transparent 78%);
}
.page-head::after {
  content: "";
  position: absolute; top: -20%; bottom: -20%; right: 6%;
  width: clamp(90px, 12vw, 190px);
  transform: skewX(-13deg);
  background: linear-gradient(180deg, transparent, rgba(225, 6, 0, 0.16) 55%, rgba(225, 6, 0, 0.34));
  border-left: 2px solid rgba(225, 6, 0, 0.35);
}
.crumbs { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }

/* ---------- Callout ---------- */
.callout {
  border-left: 4px solid var(--red);
  background: var(--ink-3);
  padding: 22px 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.callout p { margin: 0; font-size: 14px; color: var(--paper-dim); }
.callout h4 { margin: 0 0 8px; color: var(--paper); }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; color: var(--paper); font-weight: bold; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink-3); border: 1px solid var(--line); color: var(--paper);
  padding: 13px 14px; font-family: var(--font); font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
.field textarea { min-height: 168px; resize: vertical; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--paper-dim); }
.check input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; accent-color: var(--red); }
.alert { border: 1px solid var(--red); background: rgba(225, 6, 0, 0.1); padding: 14px 16px; font-size: 14px; }
.alert.ok { border-color: var(--green); background: rgba(55, 192, 122, 0.1); }

/* ---------- Safer gambling strip ---------- */
.safer-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 30px 0; background: var(--ink-2);
}
.safer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; justify-content: space-between; }
.safer-logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(22px, 3vw, 40px); }
/* These are supplied as dark/full-colour artwork, so they sit on a light plate
   rather than directly on the black strip. */
.safer-logos a {
  display: grid; place-items: center;
  min-width: 168px; min-height: 58px; padding: 10px 20px;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.safer-logos a:hover { transform: translateY(-2px); border-color: var(--red); }
/* Gamblers Anonymous supply white artwork, so that one keeps a dark plate. */
.safer-logos a.on-dark { background: var(--ink-4); }
.safer-logos img { height: 30px; width: auto; object-fit: contain; }
.safer-note { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--muted); max-width: 46ch; }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--ink-4); border-top: 2px solid var(--red); padding-top: 64px; z-index: 2; }
.site-footer::before {
  content: "";
  position: absolute; top: -25%; bottom: -25%; right: -4%;
  width: clamp(70px, 9vw, 150px);
  transform: skewX(-13deg);
  border-left: 1px solid rgba(225, 6, 0, 0.22);
  border-right: 1px solid rgba(225, 6, 0, 0.22);
  pointer-events: none;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
}
.foot-grid > div + div { border-left: 1px solid var(--line-soft); padding-left: clamp(20px, 3vw, 34px); }
.foot-grid h4 { font-size: 12px; letter-spacing: 0.18em; color: var(--paper); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-grid a { font-size: 13px; color: var(--paper-dim); }
.foot-grid a:hover { color: var(--red); }
.foot-about p { font-size: 13px; color: var(--muted); max-width: 42ch; }

.foot-legal { padding: 26px 0 34px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.foot-legal p { margin: 0; font-size: 12px; color: var(--muted); }
.foot-legal nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot-legal nav a { font-size: 12px; color: var(--paper-dim); }
.foot-disclaimer { font-size: 11px; color: #6d6a65; padding-bottom: 34px; max-width: 100%; line-height: 1.7; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--ink-2); border: 1px solid var(--red); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  padding: 20px 22px; max-width: 620px;
  display: none; gap: 18px; align-items: flex-start;
  transform: translateY(12px); opacity: 0; transition: transform 0.25s ease, opacity 0.25s ease;
}
.cookie.show { display: flex; transform: translateY(0); opacity: 1; }
.cookie h4 { margin: 0 0 8px; font-size: 14px; }
.cookie p { margin: 0 0 14px; font-size: 13px; color: var(--paper-dim); }
.cookie p a { color: var(--red); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 700px) { .cookie { left: 24px; bottom: 24px; right: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .site-header .shell { grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; }
  .nav { gap: 16px; }
  .nav a { font-size: 11px; letter-spacing: 0.08em; }
}

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 44px; }
  .hero-ghost { display: none; }
  .hero-bars { width: 62vw; opacity: 0.75; }
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-facts div { padding: 20px 0 20px 24px; }
  .hero-facts div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .hero-facts div:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .section-head { grid-template-columns: 1fr; row-gap: 16px; }
  .section-head .eyebrow { grid-row: auto; }
  .section-head h2 { grid-row: auto; }
  .section-head .lead { grid-column: 1; grid-row: auto; }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step { padding: 28px 24px; }
  .step:nth-child(odd) { padding-left: 0; }
  .step:nth-child(even) { padding-right: 0; border-right: 0; }
  .step:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-lead { grid-column: span 2; grid-row: auto; }

  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: 1fr 1fr; }

  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > div + div { border-left: 0; padding-left: 0; }

  .brand-card { grid-template-columns: 1fr; }
  .brand-side {
    grid-column: 1; grid-row: 1;
    border-left: 0; border-bottom: 1px solid var(--line);
    flex-direction: row; text-align: left; align-items: center; justify-content: flex-start;
  }
  .brand-body { grid-column: 1; grid-row: 2; }
  .logo-plate-lg { width: 190px; min-height: 74px; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 80px 0 auto 0; background: var(--ink-2); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 8px var(--gutter) 22px; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .burger { display: grid; }
  .header-cta .btn { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 26px 0; border-right: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-lead { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 56px 0; }
  .hero h1 { max-width: none; }
  .hero-card { grid-template-columns: 74px minmax(0, 1fr); }
  .hero-card .score { grid-column: 2; text-align: left; }
  .bar-row { grid-template-columns: 110px 1fr 34px; font-size: 11px; }
  .topbar { font-size: 10px; letter-spacing: 0.08em; }
  .brand-side { flex-direction: column; text-align: center; }
  .logo-plate-lg { width: 100%; }
  .safer-logos img { height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
