/* Hammerheads - Instant Withdraw Casino Canada
   Design direction: bold sporty leaderboard (Performance Industrial + Sports Data)
   No JavaScript. All interaction is CSS only. */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg: #0a1f44;
  --surface: #10294f;
  --surface-alt: #0d2551;
  --surface-3: #14315e;
  --accent: #ff6a1a;
  --accent-strong: #e85a10;
  --ink: #eef3fb;
  --muted: #9fb2d4;
  --line: #2c4880;
  --line-strong: #3d5c9c;
  --good: #33d17a;
  --warning: #ffb020;

  --font-display: "Arial Black", Impact, Haettenschweiler, "Franklin Gothic Bold", sans-serif;
  --font-body: system-ui, "Segoe UI", Arial, sans-serif;

  --space-1: .35rem;
  --space-2: .65rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.25rem;
  --space-6: 3.5rem;

  --container: 75rem;
  --reading: 44rem;

  --radius-control: 3px;
  --radius-card: 5px;
  --radius-special: 8px;

  --border-thin: 2px solid var(--line);
  --border-strong: 3px solid var(--line-strong);
  --border-accent: 3px solid var(--accent);

  --shadow-low: 0 6px 18px rgba(0, 0, 0, .35);
  --shadow-raised: 0 14px 34px rgba(0, 0, 0, .45);
  --shadow-accent: 0 10px 30px rgba(255, 106, 26, .28);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.02;
  margin: 0 0 var(--space-3);
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1rem + .7vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 var(--space-3); }

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

strong { color: var(--ink); }

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

hr { border: 0; border-top: var(--border-thin); margin: var(--space-4) 0; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section { padding-block: var(--space-6); }
.section-tight { padding-block: var(--space-5); }
.section-head { text-align: center; margin-bottom: var(--space-5); }
.section-head p { color: var(--muted); max-width: 46rem; margin-inline: auto; }

/* Close the empty band between the hero and the ranked list directly below it */
.hero + .section-tight { padding-top: var(--space-3); }
.hero + .section-tight .section-head { margin-bottom: var(--space-3); }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: .08em;
  font-size: .8rem;
  margin-bottom: var(--space-2);
}

/* ============================================================
   BRAND MARK (CSS shark-fin / chevron)
   ============================================================ */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: .02em;
}
.brand:hover { text-decoration: none; }
.fin {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background: var(--accent);
  /* shark fin / chevron shape */
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  border-radius: 3px 3px 3px 12px;
  transform: skewX(-8deg);
}
.brand b { color: var(--accent); }

/* ============================================================
   HEADER + NAV (CSS-only hamburger)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 31, 68, .96);
  border-bottom: var(--border-strong);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 62px;
  padding-block: .55rem;
}

.nav-toggle { position: fixed; top: 0; left: 0; width: 1px; height: 1px; opacity: 0; }

.nav-btn {
  display: none;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: 0 .85rem;
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-control);
  color: var(--ink);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .85rem;
  cursor: pointer;
}
.nav-btn .bars {
  position: relative;
  width: 20px; height: 2px;
  background: var(--ink);
  display: inline-block;
}
.nav-btn .bars::before, .nav-btn .bars::after {
  content: "";
  position: absolute;
  left: 0; width: 20px; height: 2px;
  background: var(--ink);
}
.nav-btn .bars::before { top: -6px; }
.nav-btn .bars::after { top: 6px; }
.nav-btn .lbl-close { display: none; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  margin: 0; padding: 0;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 .7rem;
  color: var(--ink);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .02em;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-btn { display: inline-flex; }
  .nav-toggle:focus-visible + .nav-btn { outline: 3px solid var(--accent); outline-offset: 2px; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: var(--border-strong);
    border-top: var(--border-thin);
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: var(--space-2); }
  .site-nav a {
    min-height: 48px;
    padding: 0 var(--space-2);
    border-bottom: 2px solid var(--line);
  }
  .site-nav li:last-child a { border-bottom: 0; }
  .nav-toggle:checked ~ .nav-btn .lbl-open { display: none; }
  .nav-toggle:checked ~ .nav-btn .lbl-close { display: inline; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: var(--space-3) var(--space-2); border-bottom: var(--border-thin); }
.hero-grid { display: grid; gap: var(--space-3); align-items: start; }
.hero-copy { text-align: left; }
.hero h1 { margin-bottom: var(--space-2); font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.8rem); line-height: 1.08; }
.hero h1 span { color: var(--accent); }
.hero-lead { font-size: 1rem; line-height: 1.4; color: var(--ink); max-width: 40rem; margin-bottom: var(--space-2); }
.hero-more { display: none; }
.hero-more p { color: var(--muted); max-width: 40rem; }

.more-toggle { position: fixed; top: 0; left: 0; width: 1px; height: 1px; opacity: 0; }
.more-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  color: var(--accent);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .85rem;
  cursor: pointer;
}
.more-label .lbl-less { display: none; }
.more-label::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.more-toggle:checked ~ .hero-more { display: block; }
.more-toggle:checked ~ .more-label .lbl-more { display: none; }
.more-toggle:checked ~ .more-label .lbl-less { display: inline; }
.more-toggle:checked ~ .more-label::after { transform: rotate(-135deg); }
.more-toggle:focus-visible ~ .more-label { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Reviewer byline */
.byline {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  padding: var(--space-2);
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
}
.byline-avatar {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0a1f44;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border: 2px solid var(--line-strong);
}
img.byline-avatar { object-fit: cover; }
.byline-id { min-width: 0; }
.byline-name { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; white-space: nowrap; }
.byline-role { color: var(--muted); font-size: .85rem; }
.byline-role .role-short { display: none; }
.byline-stats {
  margin-left: auto;
  display: flex;
  gap: var(--space-3);
  padding-left: var(--space-3);
  border-left: 2px solid var(--line);
  text-align: right;
}
.byline-stats .stat b { display: block; font-family: var(--font-display); color: var(--accent); font-size: 1.05rem; }
.byline-stats .stat span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; }

/* Editor's choice box (desktop only) */
.editor-choice { display: none; }

@media (min-width: 901px) {
  .hero-grid { grid-template-columns: 58% 1fr; gap: var(--space-4); }
  .editor-choice {
    display: block;
    background: var(--surface);
    border: var(--border-strong);
    border-top: 6px solid var(--accent);
    border-radius: var(--radius-card);
    padding: var(--space-3);
    box-shadow: var(--shadow-low);
  }
  .editor-choice .ec-tag {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--accent);
    font-size: .78rem;
    letter-spacing: .06em;
    margin-bottom: var(--space-1);
  }
  .editor-choice .ec-name {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: var(--space-2);
  }
  .editor-choice .ec-offer {
    background: var(--surface-3);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-control);
    padding: var(--space-2);
    margin-bottom: var(--space-2);
  }
  .editor-choice .ec-offer strong { color: var(--accent); font-size: 1.15rem; }
  .editor-choice ul { list-style: none; margin: 0 0 var(--space-2); padding: 0; }
  .editor-choice li { color: var(--muted); font-size: .9rem; padding: .12rem 0 .12rem 1.1rem; position: relative; }
  .editor-choice li::before { content: "›"; color: var(--accent); position: absolute; left: 0; font-weight: 800; }
}

@media (max-width: 360px) {
  .byline { gap: var(--space-2); padding: var(--space-2); }
  .byline-avatar { width: 44px; height: 44px; font-size: .95rem; }
  .byline-name { font-size: .9rem; }
  .byline-stats { gap: var(--space-2); padding-left: var(--space-2); }
}

/* team mark for CSS operator marks */
.opmark {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: var(--radius-control);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #0a1f44;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: 2px solid var(--line-strong);
}
.opmark.m2 { background: linear-gradient(135deg, #4aa3ff, #2b6fd6); color: #061428; }
.opmark.m3 { background: linear-gradient(135deg, #33d17a, #1f9a56); color: #062012; }
.opmark.m4 { background: linear-gradient(135deg, #b07bff, #7d47d6); color: #12042a; }
.opmark.m5 { background: linear-gradient(135deg, #ffd23f, #e0a800); color: #2a2000; }

/* ============================================================
   BADGES / CTA BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.4rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .03em;
  border-radius: var(--radius-control);
  border: 2px solid var(--accent-strong);
  background: var(--accent);
  color: #0a1f44;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--accent-strong); color: #fff; text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); color: var(--accent); }

.badge {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .05em;
  padding: .22rem .5rem;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: #0a1f44;
}
.badge-rec { background: var(--accent); }

/* ============================================================
   RANKED OPERATOR LIST (leaderboard)
   ============================================================ */
.leaderboard { display: grid; gap: var(--space-3); }

.op-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: center;
  background: var(--surface);
  border: var(--border-strong);
  border-radius: var(--radius-card);
  padding: var(--space-3);
}
.op-rank {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--muted);
  text-align: center;
  line-height: 1;
}
.op-body {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr) 10.5rem;
  gap: var(--space-3);
  align-items: center;
}
.op-id { display: flex; align-items: center; gap: var(--space-2); min-width: 0; }
.op-name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; }
.op-name small { display: block; font-family: var(--font-body); text-transform: none; color: var(--muted); font-size: .72rem; font-weight: 400; }
.op-offer {
  background: var(--surface-3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-control);
  padding: .6rem .8rem;
  font-size: .95rem;
}
.op-offer strong { color: var(--accent); font-size: 1.1rem; }
.op-offer .qual { color: var(--muted); font-size: .82rem; display: block; }
.op-cta .btn { width: 100%; }

/* Featured (rank 1) */
.op-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,106,26,.14), var(--surface) 60%);
  box-shadow: var(--shadow-accent);
  padding-top: 0;
  row-gap: 0;
}
.op-ribbon {
  grid-column: 1 / -1;
  margin: 0 calc(-1 * var(--space-3)) var(--space-3);
  background: var(--accent);
  color: #0a1f44;
  padding: .5rem var(--space-3);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .82rem;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.op-ribbon .chip {
  background: #0a1f44;
  color: var(--accent);
  padding: .15rem .5rem;
  border-radius: var(--radius-control);
  font-size: .72rem;
}
.op-card.featured .op-rank { color: var(--accent); font-size: 2.6rem; }
.op-card.featured .op-name { font-size: 1.35rem; }
.op-card.featured .op-offer strong { font-size: 1.25rem; }
.op-card:not(.featured) .op-ribbon { display: none; }

.list-note {
  margin-top: var(--space-3);
  padding: var(--space-3);
  background: var(--surface-alt);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  color: var(--muted);
  font-size: .85rem;
}
.list-note strong { color: var(--warning); }

@media (max-width: 980px) {
  .op-body { grid-template-columns: 1fr; gap: var(--space-2); }
  .op-cta .btn { width: 100%; }
}
@media (max-width: 700px) {
  .op-card { grid-template-columns: 40px minmax(0, 1fr); gap: var(--space-2); }
  .op-rank { font-size: 1.8rem; }
  .op-card.featured .op-rank { font-size: 2rem; }
  .op-ribbon { margin: 0 calc(-1 * var(--space-2)) var(--space-2); }
}

/* ============================================================
   COMPARISON TABLE (top 3)
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-card); border: var(--border-strong); }
table.compare, table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--surface);
}
table.compare caption, table.data caption {
  caption-side: top;
  text-align: left;
  padding: var(--space-2) var(--space-3);
  background: var(--surface-3);
  color: var(--muted);
  font-size: .82rem;
  border-bottom: var(--border-thin);
}
table.compare th, table.data th,
table.compare td, table.data td {
  padding: .7rem .85rem;
  text-align: left;
  border-bottom: 2px solid var(--line);
  font-size: .92rem;
}
table.compare thead th, table.data thead th {
  background: #061735;
  color: var(--ink);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .03em;
  border-bottom: var(--border-accent);
}
table.compare tbody tr:nth-child(even),
table.data tbody tr:nth-child(even) { background: var(--surface-alt); }
table.compare tbody tr:hover,
table.data tbody tr:hover { background: var(--surface-3); }
table.compare td strong { color: var(--accent); }
.t-rank { font-family: var(--font-display); font-size: 1.2rem; color: var(--accent); }

@media (max-width: 700px) {
  .table-wrap { overflow-x: visible; }
  table.compare, table.data { min-width: 0; }
  table.compare thead, table.data thead { display: none; }
  table.compare tbody tr, table.data tbody tr { display: block; border-bottom: var(--border-thin); }
  table.compare td, table.data td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-3);
    border-bottom: 1px solid var(--line);
  }
  table.compare td:last-child, table.data td:last-child { border-bottom: 0; }
  table.compare td::before, table.data td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: .7rem;
    color: var(--muted);
    padding-right: var(--space-2);
  }
  table.compare td .btn, table.data td .btn { margin-left: auto; }
}

/* ============================================================
   METHOD GRID (How We Rank) - 4/2/1
   ============================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.method-card {
  background: var(--surface);
  border: var(--border-strong);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.method-card .num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.method-card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.method-card p { color: var(--muted); font-size: .9rem; margin: 0; }

@media (max-width: 980px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .method-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PANELS / TWO-COLUMN COMPARE
   ============================================================ */
.panel {
  background: var(--surface);
  border: var(--border-strong);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.panel-accent { border-top: 5px solid var(--accent); }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.plus-list, .minus-list { list-style: none; margin: 0; padding: 0; }
.plus-list li, .minus-list li { padding: .35rem 0 .35rem 1.6rem; position: relative; color: var(--ink); }
.plus-list li::before { content: "+"; position: absolute; left: 0; color: var(--good); font-family: var(--font-display); }
.minus-list li::before { content: "\2212"; position: absolute; left: 0; color: var(--warning); font-family: var(--font-display); }

.safe-panel {
  background: var(--surface);
  border: var(--border-strong);
  border-left: 6px solid var(--warning);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.safe-panel h2 { color: var(--ink); }
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  text-align: center;
}
.stat-strip .cell {
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: var(--space-3);
}
.stat-strip b { display: block; font-family: var(--font-display); color: var(--accent); font-size: 1.5rem; }
.stat-strip span { color: var(--muted); font-size: .8rem; text-transform: uppercase; }
@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   ARTICLE + STICKY TOC
   ============================================================ */
.article-wrap { display: block; }
.article-head { margin-bottom: var(--space-4); }
.article-body h2 { margin-top: var(--space-5); scroll-margin-top: 80px; }
.article-body h3 { margin-top: var(--space-4); }
.article-body p, .article-body li { color: var(--ink); }
.article-body p { max-width: var(--reading); }
.article-body ul, .article-body ol { max-width: var(--reading); color: var(--ink); }
.article-body .worked {
  background: var(--surface);
  border: var(--border-thin);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-control);
  padding: var(--space-3);
  max-width: var(--reading);
}
.toc { display: none; }

@media (min-width: 1100px) {
  .article-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 17rem;
    gap: var(--space-5);
    align-items: start;
  }
  .article-head { margin-inline: 0; max-width: none; }
  .toc {
    display: block;
    position: sticky;
    top: 80px;
    background: var(--surface);
    border: var(--border-strong);
    border-radius: var(--radius-card);
    padding: var(--space-3);
  }
  .toc h2 { font-size: 1rem; margin-bottom: var(--space-2); color: var(--accent); }
  .toc ol { counter-reset: toc; list-style: none; margin: 0; padding: 0; }
  .toc li { counter-increment: toc; margin: 0; }
  .toc a {
    display: block;
    padding: .3rem 0 .3rem 2rem;
    position: relative;
    color: var(--muted);
    font-size: .85rem;
    border-bottom: 1px solid var(--line);
  }
  .toc a::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute; left: 0;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: .78rem;
  }
  .toc a:hover { color: var(--ink); text-decoration: none; }
}

/* numbered article headings */
.article-body { counter-reset: sec; }
.article-body h2.numbered { counter-increment: sec; padding-left: 3rem; position: relative; }
.article-body h2.numbered::before {
  content: counter(sec, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-size: .8em;
}

/* ============================================================
   FAQ (CSS read-more per item using details)
   ============================================================ */
.faq-list { display: grid; gap: var(--space-2); max-width: 52rem; margin-inline: auto; }
.faq-item {
  background: var(--surface);
  border: var(--border-thin);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
}
.faq-item summary {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  align-items: center;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: var(--space-2) 0 0; color: var(--muted); }

/* ============================================================
   GENERIC CONTENT PAGES
   ============================================================ */
.page-hero {
  padding-block: var(--space-5) var(--space-4);
  border-bottom: var(--border-thin);
  background: linear-gradient(180deg, rgba(255,106,26,.08), transparent);
}
.page-hero p { color: var(--muted); max-width: var(--reading); }
.prose { max-width: var(--reading); }
.prose h2 { margin-top: var(--space-5); }
.prose h3 { margin-top: var(--space-4); }
.prose ul, .prose ol { color: var(--ink); }
.prose a { text-decoration: underline; }
.callout {
  background: var(--surface);
  border: var(--border-thin);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
  margin: var(--space-4) 0;
}
.callout.warn { border-left-color: var(--warning); }

/* Contact details block */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface);
  border: var(--border-strong);
  border-radius: var(--radius-card);
  padding: var(--space-4);
}
.contact-card h3 { color: var(--accent); }

/* 404 */
.notfound { text-align: center; padding-block: var(--space-6); }
.notfound .code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 9rem); color: var(--accent); line-height: 1; }
.notfound .links { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-top: var(--space-4); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #061735;
  border-top: var(--border-strong);
  margin-top: var(--space-6);
  padding-block: var(--space-5) var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); } }
.footer-col h4 { color: var(--accent); font-size: .9rem; margin-bottom: var(--space-3); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .3rem; }
.footer-col a { color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-about p { color: var(--muted); font-size: .88rem; max-width: 26rem; }
.footer-bottom {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: var(--border-thin);
  color: var(--muted);
  font-size: .8rem;
}
.footer-bottom .age {
  display: inline-block;
  border: 2px solid var(--warning);
  color: var(--warning);
  font-family: var(--font-display);
  padding: .1rem .45rem;
  border-radius: var(--radius-control);
  margin-right: .5rem;
}

/* ============================================================
   COOKIE NOTICE (CSS only)
   ============================================================ */
.cookie-toggle { position: fixed; top: 0; left: 0; width: 1px; height: 1px; opacity: 0; }
.cookie-note {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: #061735;
  border-top: var(--border-accent);
  padding: .7rem var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
  visibility: hidden;
  animation: cookie-note-in .35s ease-out 2s forwards;
}
@keyframes cookie-note-in {
  from { opacity: 0; visibility: visible; transform: translateY(100%); }
  to { opacity: 1; visibility: visible; transform: translateY(0); }
}
.cookie-note p { margin: 0; color: var(--muted); font-size: .85rem; }
.cookie-note a { color: var(--accent); text-decoration: underline; }
.cookie-dismiss {
  margin-left: auto;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 1.1rem;
  background: var(--accent);
  color: #0a1f44;
  border: 0;
  border-radius: var(--radius-control);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle:checked ~ .cookie-note { display: none; }
@media (max-width: 560px) {
  .cookie-note { flex-wrap: nowrap; padding: .6rem var(--space-3); gap: var(--space-2); }
  .cookie-note p { font-size: .74rem; }
  .cookie-dismiss { padding: 0 .8rem; font-size: .74rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-note { animation: cookie-note-fade .01s linear 2s forwards; }
  @keyframes cookie-note-fade { to { opacity: 1; visibility: visible; } }
}

/* ============================================================
   BACK TO TOP (scroll-driven, @supports)
   ============================================================ */
.to-top {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 110;
  width: 44px; height: 44px;
  background: var(--accent);
  border: 2px solid var(--accent-strong);
  border-radius: var(--radius-card);
  display: grid;
  place-items: center;
}
.to-top:hover { background: var(--accent-strong); }
.to-top::before {
  content: "";
  width: 12px; height: 12px;
  border-top: 3px solid #0a1f44;
  border-left: 3px solid #0a1f44;
  transform: translateY(2px) rotate(45deg);
}
.cookie-toggle:not(:checked) ~ .to-top { bottom: 6.5rem; }
@media (max-width: 560px) {
  .cookie-toggle:not(:checked) ~ .to-top { bottom: 7.5rem; }
}
@supports (animation-timeline: scroll()) {
  .to-top {
    opacity: 0;
    animation: to-top-in linear both;
    animation-timeline: scroll(root);
    animation-range: 300px 700px;
  }
  @keyframes to-top-in { to { opacity: 1; } }
}
@media (prefers-reduced-motion: reduce) {
  .to-top { animation: none; opacity: 1; }
}

/* utility */
.mt-0 { margin-top: 0; }
.text-muted { color: var(--muted); }
.lead { font-size: 1.12rem; color: var(--ink); }
.divider-strong { border-top: var(--border-accent); }
