:root {
  --ink: #18121f;
  --ink-soft: #4f4858;
  --aubergine: #251536;
  --aubergine-2: #3b1f52;
  --aubergine-3: #56316f;
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --lavender: #eee7f3;
  --line: #d8cedd;
  --coral: #ff715f;
  --coral-dark: #bc3d35;
  --lime: #d9ff58;
  --mint: #88e2c4;
  --white: #ffffff;
  --max-width: 1240px;
  --header-height: 76px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 18px 48px rgb(37 21 54 / .10);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--aubergine-3); text-underline-offset: .2em; }
a:hover { color: var(--coral-dark); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .15s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  background: rgb(37 21 54 / .97);
  border-bottom: 1px solid rgb(217 255 88 / .25);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 48px;
}

.brand-link img {
  width: 244px;
  height: auto;
  filter: saturate(.7) brightness(1.3);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.25vw, 1.35rem);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #f6f0fa;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--lime); }

.site-nav .nav-safety {
  padding-inline: .9rem;
  border: 1px solid var(--lime);
  border-radius: 999px;
  color: var(--lime);
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: .55rem .7rem;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgb(255 255 255 / .32);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .15s ease, opacity .15s ease;
}

.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before,
.nav-toggle-lines::after { content: ""; position: absolute; left: 0; }
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 0 64%, rgb(255 113 95 / .12) 64% 67%, transparent 67%),
    radial-gradient(circle at 80% 6%, rgb(217 255 88 / .12), transparent 28%),
    var(--aubergine);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / .035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  aspect-ratio: 1;
  right: -145px;
  bottom: -210px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgb(255 113 95 / .06), 0 0 0 74px rgb(217 255 88 / .04);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 4.6rem) 0;
}

.hero-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.6rem, 6vw, 5.8rem);
  color: #f5eff7;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-topline p { margin: 0; }

.hero-index {
  display: inline-grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
}

.hero-topline p:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-topline p:nth-child(2)::after {
  content: "";
  width: min(25vw, 280px);
  height: 1px;
  background: rgb(255 255 255 / .26);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(285px, .65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Arial Narrow", "Segoe UI", Inter, sans-serif;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6.5vw, 6.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1 span { display: block; }
h1 span:nth-child(2) { color: var(--lime); }
h1 span:nth-child(3) {
  display: inline-block;
  margin-top: .15em;
  padding: .06em .18em .1em;
  background: var(--coral);
  color: var(--aubergine);
  transform: rotate(-1.5deg);
}

.hero-summary {
  position: relative;
  margin-bottom: 1rem;
  padding: 0 0 .3rem 1.5rem;
  border-left: 4px solid var(--lime);
}

.hero-summary p {
  margin: 0 0 1.1rem;
  color: #f4edf7;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
}

.hero-summary strong { color: var(--lime); }

.primary-link,
.visit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  color: var(--aubergine);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.primary-link {
  margin-top: .35rem;
  padding: .75rem 1.2rem .75rem 1.4rem;
  border-color: var(--lime);
}

.primary-link:hover,
.visit-link:hover {
  background: var(--coral);
  color: var(--aubergine);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgb(0 0 0 / .24);
}

.hero-metrics {
  margin: clamp(3rem, 6vw, 5.25rem) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(255 255 255 / .24);
}

.hero-metrics div {
  min-height: 125px;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgb(255 255 255 / .24);
}

.hero-metrics div:first-child { border-left: 1px solid rgb(255 255 255 / .24); }

.hero-metrics dt {
  order: 2;
  margin-top: .4rem;
  color: #eee5f1;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-metrics dd {
  order: 1;
  margin: 0;
  color: var(--coral);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
}

.hero-metrics data { color: inherit; font: inherit; }

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.content-section {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  border-bottom: 1px solid var(--line);
}

.content-section:last-child { border-bottom: 0; }

.feature-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1.5rem -12px;
  border-radius: var(--radius-lg);
  background: var(--lavender);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, .25fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading .section-kicker { grid-column: 1; grid-row: 1; }
.section-heading h2 { grid-column: 2; margin-bottom: 0; }
.section-heading > p:not(.section-kicker) { grid-column: 1 / -1; }

.section-kicker {
  margin: .45rem 0 0;
  color: var(--coral-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 4px;
  margin-right: .65rem;
  background: var(--coral);
  vertical-align: .18em;
}

h2 {
  margin-bottom: 1.25rem;
  color: var(--aubergine);
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin: clamp(3rem, 6vw, 5rem) 0 1rem;
  color: var(--aubergine);
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
  font-weight: 900;
}

p { margin: 0 0 1.15rem; }
.section-heading > p:not(.section-kicker) {
  max-width: none;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

strong { font-weight: 900; color: var(--aubergine); }
dfn { color: var(--aubergine); font-style: normal; font-weight: 900; }
abbr[title] { text-decoration-thickness: 1px; text-underline-offset: .15em; }

.casino-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
  list-style: none;
}

.casino-row {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: grid;
  grid-template-columns: 230px 150px minmax(260px, 1fr) 175px;
  align-items: stretch;
  border: 1px solid #cfc3d5;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 8px 0 rgb(37 21 54 / .06);
}

.casino-row::before {
  content: "";
  width: 8px;
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--coral);
}

.brand-zone,
.review-status,
.offer-copy,
.casino-row .visit-link {
  min-width: 0;
  border-left: 1px solid var(--line);
}

.brand-zone {
  min-height: 150px;
  padding: 1rem 1.35rem 1rem 1.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-left: 0;
  text-align: center;
}

.brand-zone img {
  width: min(150px, 90%);
  height: 70px;
  object-fit: contain;
  object-position: center;
}

.brand-zone span {
  color: var(--aubergine);
  font-size: .82rem;
  font-weight: 850;
}

.review-status {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.review-status > span {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: .45rem;
  border: 2px solid var(--aubergine);
  border-radius: 50%;
  background: var(--lime);
  color: var(--aubergine);
  font-size: 1.25rem;
  font-weight: 900;
}

.review-status strong {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.review-status small { color: var(--ink-soft); font-size: .7rem; }

.offer-copy {
  margin: 0;
  padding: 1.25rem 1.65rem;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgb(238 231 243 / .72), transparent);
  color: var(--aubergine);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.45;
}

.casino-row .visit-link {
  align-self: center;
  justify-self: center;
  width: calc(100% - 30px);
  margin: 15px;
  padding: .7rem 1rem;
  border-color: var(--aubergine);
  font-size: .78rem;
}

.brand-summaries {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.brand-summary {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  display: grid;
  grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr);
  column-gap: clamp(1.6rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.brand-summary:nth-child(even) { background: #f2ebf5; }

.brand-summary-title {
  grid-column: 1;
  grid-row: 1 / span 4;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.brand-summary-title h3 {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.brand-summary > p {
  grid-column: 2;
  margin-bottom: .85rem;
}

.brand-summary > p:last-child { margin-bottom: 0; }

.check-list {
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 76px;
  padding: 1.2rem 1.25rem 1.15rem 3.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1.1rem;
  left: 1.15rem;
  display: grid;
  width: 26px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--aubergine);
  font-weight: 900;
}

.warning-list li::before {
  content: "!";
  background: var(--coral);
  color: var(--white);
}

.info-strip {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--aubergine);
  border-radius: var(--radius-md);
  background: var(--aubergine);
}

.info-strip > div {
  padding: 1.3rem;
  background: var(--paper);
}

.info-strip dt {
  margin: 0 0 .6rem;
  color: var(--aubergine);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.info-strip dd { margin: 0; font-size: .9rem; line-height: 1.55; }

.table-scroll {
  overflow-x: auto;
  margin: 1.6rem 0 1.4rem;
  border: 1px solid #cfc3d5;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
  scrollbar-color: var(--coral) var(--lavender);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: .88rem;
  line-height: 1.48;
}

caption {
  padding: 1rem 1.2rem;
  background: var(--aubergine);
  color: var(--white);
  font-size: .88rem;
  font-weight: 900;
  text-align: left;
}

thead { background: var(--lime); color: var(--aubergine); }

th,
td {
  padding: .95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

tbody th { font-weight: 400; }
tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #f5f0f6; }

.numbered-steps {
  margin: 1.6rem 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  counter-reset: steps;
  list-style: none;
}

.numbered-steps li {
  position: relative;
  min-height: 150px;
  padding: 3.6rem 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  counter-increment: steps;
}

.numbered-steps li::before {
  content: counter(steps);
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  color: var(--coral-dark);
  font-weight: 900;
}

.numbered-steps li > strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--aubergine);
  font-weight: 900;
}

.compact-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.compact-steps li { min-height: 170px; }

.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  margin: 1.5rem 0;
}

.notice {
  min-height: 128px;
  padding: 1.25rem;
  border: 1px solid rgb(188 61 53 / .38);
  border-radius: var(--radius-sm);
  background: #fff1ed;
}

.notice dt,
.notice dd { display: block; }
.notice dt {
  margin-bottom: .55rem;
  color: var(--aubergine);
  font-weight: 900;
}
.notice dd { margin: 0; color: #70423d; font-size: .9rem; line-height: 1.55; }

.organisation-grid {
  display: grid;
  min-width: 1240px;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: .75rem;
}

.organisation-grid a {
  min-height: 92px;
  overflow: hidden;
  padding: .65rem .75rem;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color .15s ease, transform .15s ease;
}

.organisation-grid a:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.organisation-grid img {
  width: auto;
  max-width: 100%;
  max-height: 50px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgb(37 21 54 / .7)) drop-shadow(0 0 1px rgb(37 21 54 / .75));
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }

.faq-list summary {
  position: relative;
  padding: 1.25rem 4rem 1.25rem 1.35rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.35rem;
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--aubergine);
  font-size: 1.2rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after { content: "−"; background: var(--coral); }

.faq-list summary h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.faq-list details > p {
  margin: 0;
  padding: 0 4rem 1.4rem 1.35rem;
  color: var(--ink-soft);
}

.site-footer {
  background: #170c22;
  color: #e9e1ec;
}

.error-page {
  min-height: 100vh;
  padding: 1rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 10%, rgb(217 255 88 / .12), transparent 28%),
    var(--aubergine);
}

.error-card {
  width: min(100%, 720px);
  padding: clamp(1.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--coral);
}

.error-card > img { width: min(286px, 80%); filter: none; }
.error-code { margin: 2rem 0 .25rem; color: var(--coral-dark); font-size: 1rem; font-weight: 900; letter-spacing: .16em; }
.error-card h1 { margin-bottom: 1.25rem; color: var(--aubergine); font-size: clamp(2.6rem, 8vw, 5.4rem); }
.error-card .primary-link { border-color: var(--aubergine); }

.footer-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding-block: 3.5rem 2.2rem;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr .65fr;
  gap: 2rem;
}

.footer-organisations {
  grid-column: 1 / -1;
  overflow-x: auto;
  padding-bottom: 1.65rem;
  border-bottom: 1px solid rgb(255 255 255 / .18);
  scrollbar-color: var(--coral) rgb(255 255 255 / .1);
  scrollbar-width: thin;
}

.footer-organisations::-webkit-scrollbar { height: 7px; }
.footer-organisations::-webkit-scrollbar-track { background: rgb(255 255 255 / .1); }
.footer-organisations::-webkit-scrollbar-thumb { border-radius: 999px; background: var(--coral); }

.footer-brand img {
  width: 260px;
  filter: saturate(.7) brightness(1.3);
}

.footer-brand p,
.footer-notice p { margin: .85rem 0 0; color: #d8ccdd; font-size: .86rem; }

.footer-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-notice p { margin-top: 0; }

.age-mark {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: var(--white) !important;
  font-weight: 900;
}

.footer-nav { display: grid; align-content: start; gap: .55rem; }
.footer-nav a { color: var(--white); font-size: .86rem; text-decoration: none; }
.footer-nav a:hover { color: var(--lime); }

.footer-legal {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / .18);
  color: #bfb2c5;
  font-size: .78rem;
}

@media (max-width: 1060px) {
  .brand-link img { width: 210px; }
  .site-nav { gap: .7rem; }
  .site-nav a { font-size: .75rem; }
  .hero-stage { grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr); }
  .casino-row { grid-template-columns: 200px 135px minmax(230px, 1fr) 155px; }
  .compact-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .header-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: .75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .25rem;
    border: 1px solid rgb(255 255 255 / .16);
    border-top: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: var(--aubergine);
    box-shadow: var(--shadow);
  }
  .site-nav[hidden] { display: none; }
  .site-nav a { padding-inline: .75rem; font-size: .84rem; }
  .site-nav .nav-safety { border-radius: var(--radius-sm); }

  .hero-topline { margin-bottom: 2.6rem; }
  .hero-stage { grid-template-columns: 1fr; }
  .hero-summary { max-width: none; margin-left: clamp(1rem, 8vw, 4rem); }
  .hero-metrics div { padding-inline: .9rem; }

  .section-heading { grid-template-columns: 1fr; gap: .8rem; }
  .section-heading .section-kicker,
  .section-heading h2,
  .section-heading > p:not(.section-kicker) { grid-column: 1; grid-row: auto; }
  .section-heading > p:not(.section-kicker) { margin-top: .45rem; }

  .casino-row {
    grid-template-columns: 185px 120px minmax(0, 1fr);
    grid-template-areas:
      "brand status offer"
      "brand status action";
  }
  .brand-zone { grid-area: brand; }
  .review-status { grid-area: status; }
  .offer-copy { grid-area: offer; padding-bottom: .6rem; }
  .casino-row .visit-link {
    grid-area: action;
    justify-self: start;
    width: auto;
    min-width: 160px;
    margin: .5rem 1rem 1rem 1.65rem;
    border-left: 2px solid var(--aubergine);
  }

  .brand-summary { grid-template-columns: 1fr; gap: 1rem; }
  .brand-summary-title {
    grid-column: 1;
    grid-row: auto;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brand-summary-title h3 { position: static; }
  .brand-summary > p { grid-column: 1; }

  .numbered-steps { grid-template-columns: repeat(2, 1fr); }
  .notice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: .96rem; }
  .header-inner,
  .hero-inner,
  .page-shell,
  .footer-inner { width: min(calc(100% - 24px), var(--max-width)); }
  .brand-link img { width: 184px; }
  .nav-toggle-label { display: none; }

  .hero-inner { padding-top: 1.35rem; }
  .hero-topline {
    grid-template-columns: auto 1fr;
    margin-bottom: 2rem;
    font-size: .67rem;
  }
  .hero-topline p:last-child { display: none; }
  .hero-topline p:nth-child(2)::after { display: none; }
  h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .hero-summary { margin: 1.7rem 0 0; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics div { min-height: 105px; }
  .hero-metrics div:nth-child(3) { border-left: 1px solid rgb(255 255 255 / .24); }

  .content-section { padding-block: 4rem; }
  h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  h3 { line-height: 1.1; }

  .casino-row {
    min-height: 0;
    grid-template-columns: 1fr 110px;
    grid-template-areas:
      "brand status"
      "offer offer"
      "action action";
  }
  .brand-zone { min-height: 125px; padding-left: 1.35rem; }
  .review-status { border-left: 1px solid var(--line); }
  .offer-copy { min-height: 95px; border-top: 1px solid var(--line); border-left: 0; }
  .casino-row .visit-link {
    justify-self: stretch;
    width: auto;
    margin: .9rem 1.1rem 1.1rem;
  }

  .brand-summary { padding: 1.25rem; }
  .check-list,
  .info-strip,
  .numbered-steps,
  .notice-grid { grid-template-columns: 1fr; }
  .numbered-steps li,
  .compact-steps li { min-height: 0; }
  .organisation-grid a { min-height: 82px; }

  table { min-width: 680px; font-size: .82rem; }
  th, td { padding: .8rem; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .primary-link,
  .visit-link { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { background: #fff; color: #000; }
  h1 span,
  h1 span:nth-child(2),
  h1 span:nth-child(3) { background: none; color: #000; transform: none; }
  .page-shell { width: 100%; }
  .content-section { break-inside: avoid; }
  .table-scroll { overflow: visible; box-shadow: none; }
  table { min-width: 0; }
}
