/* ===========================================================================
   BritCrown.Hub
   Visual language: brutalist row-stack, hairline rules, magenta bands,
   rotated vertical labels, running marquees, fixed bottom dock.
   Palette is grey / magenta / near-black. No white surfaces anywhere.
   =========================================================================== */

/* ------------------------------------------------------------------ tokens */
:root {
  --grey: #d5d4d0;
  --grey-2: #c8c7c2;
  --grey-3: #bcbbb6;
  --ink: #0b0b0b;
  --ink-2: #16161a;
  --mag: #ff0f7b;
  --mag-2: #e2006a;
  --pink: #ffb0d2;
  --sage: #7f9169;

  --line: rgba(11, 11, 11, 0.26);
  --line-hard: rgba(11, 11, 11, 0.72);
  --line-light: rgba(213, 212, 208, 0.3);

  --topbar-h: 34px;
  --dock-h: 54px;

  --pad: clamp(1rem, 3.2vw, 3rem);

  --f-display: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --micro: 0.6875rem;
}

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

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

body {
  margin: 0;
  background: var(--grey);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  padding-top: var(--topbar-h);
  padding-bottom: var(--dock-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

.band--mag :focus-visible,
.band--ink :focus-visible {
  outline-color: var(--grey);
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: var(--pad);
  top: calc(var(--topbar-h) + 8px);
  z-index: 200;
  background: var(--ink);
  color: var(--grey);
  padding: 0.6rem 1rem;
  font-size: var(--micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------ type helpers */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
}

.micro {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.sage {
  color: var(--sage);
}

.mag-text {
  color: var(--mag-2);
}

/* ================================================================= TOP BAR */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--topbar-h);
  z-index: 90;
  background: var(--grey);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 0.75rem;
  gap: 0.75rem;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.topbar__right {
  justify-content: flex-end;
}

.topbar__mid {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.topbar__mid svg {
  width: 13px;
  height: 13px;
  animation: spin 24s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.topnav {
  display: flex;
  gap: 1.05rem;
}
.topnav a {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.62;
  transition: opacity 0.18s;
}
.topnav a:hover,
.topnav a[aria-current="page"] {
  opacity: 1;
}
.topnav a[aria-current="page"] {
  color: var(--mag-2);
}

/* 18+ badge -------------------------------------------------------------- */
.age {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  font-family: var(--f-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.age--lg {
  width: 54px;
  height: 54px;
  font-size: 20px;
  border-width: 2px;
}
.age--invert {
  border-color: var(--grey);
  color: var(--grey);
}

/* ============================================================== BOTTOM DOCK */
.dock {
  position: fixed;
  inset: auto 0 0 0;
  height: var(--dock-h);
  z-index: 95;
  background: var(--pink);
  border-top: 1px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.75rem;
}

.dock__seal {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mag);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
}

.dock__nav {
  margin-left: auto;
  display: flex;
  gap: clamp(0.75rem, 2.4vw, 2rem);
  align-items: center;
}
.dock__nav a {
  font-family: var(--f-display);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.dock__nav a:hover,
.dock__nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}

.dock__burger {
  margin-left: auto;
  display: none;
  background: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* mobile sheet ---------------------------------------------------------- */
.sheet {
  position: fixed;
  inset: var(--topbar-h) 0 var(--dock-h) 0;
  z-index: 94;
  background: var(--mag);
  border-top: 1px solid var(--ink);
  overflow-y: auto;
  transform: translateY(101%);
  transition: transform 0.42s cubic-bezier(0.7, 0, 0.2, 1);
}
.sheet[data-open="true"] {
  transform: translateY(0);
}
.sheet a {
  display: block;
  border-bottom: 1px solid var(--line-hard);
  padding: 0.85rem var(--pad);
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 7vw, 2.2rem);
}
.sheet a:first-child {
  border-top: 1px solid var(--line-hard);
}

/* ============================================================ BAND SYSTEM */
.band {
  position: relative;
}
.band--grey {
  background: var(--grey);
}
.band--grey2 {
  background: var(--grey-2);
}
.band--mag {
  background: var(--mag);
}
.band--ink {
  background: var(--ink);
  color: var(--grey);
}
.band--pink {
  background: var(--pink);
}

.band--ink .rowset,
.band--ink .row,
.band--ink .kv,
.band--ink .vcell {
  border-color: rgba(213, 212, 208, 0.24);
}

.rule-top {
  border-top: 1px solid var(--line);
}
.rule-bottom {
  border-bottom: 1px solid var(--line);
}
.band--ink .rule-top,
.band--ink .rule-bottom {
  border-color: rgba(213, 212, 208, 0.24);
}

/* Section eyebrow: tiny rotated-feel label bar above a block --------------- */
.eyebrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem var(--pad);
  border-bottom: 1px solid var(--line);
}
.band--ink .eyebrow {
  border-color: rgba(213, 212, 208, 0.24);
}
.eyebrow span:last-child {
  opacity: 0.55;
}

/* ============================================== THE SIGNATURE ROW STACK */
.rowset {
  border-top: 1px solid var(--line);
}

.row {
  border-bottom: 1px solid var(--line);
  padding: clamp(0.5rem, 1.15vw, 0.9rem) var(--pad);
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 3.5vw, 2.7rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.02em;
  position: relative;
}

.row--sm {
  font-size: clamp(1rem, 2.1vw, 1.5rem);
}

/* A row that reveals something on hover (the team-hover trick) ------------- */
.row--reveal {
  cursor: default;
}
.row--reveal .reveal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 138px;
  height: 184px;
  translate: -50% -50%;
  rotate: -6deg;
  pointer-events: none;
  opacity: 0;
  scale: 0.9;
  transition: opacity 0.28s, scale 0.28s, rotate 0.28s;
  z-index: 4;
  border: 1px solid var(--ink);
  background: var(--grey-2);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: var(--f-display);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.row--reveal:hover .reveal {
  opacity: 1;
  scale: 1;
  rotate: -3deg;
}

/* link rows -------------------------------------------------------------- */
a.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s, padding-left 0.2s;
}
a.row:hover {
  background: rgba(11, 11, 11, 0.07);
}
.band--mag a.row:hover {
  background: rgba(11, 11, 11, 0.12);
}
.band--ink a.row:hover {
  background: rgba(213, 212, 208, 0.09);
}
a.row .arrow {
  font-size: 0.8em;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}
a.row:hover .arrow {
  transform: translateX(6px);
  opacity: 1;
}

/* ==================================================================== HERO */
.hero {
  position: relative;
  min-height: clamp(280px, 44vh, 460px);
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 7vw, 5rem) var(--pad) clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1500px;
  text-align: center;
}

.hero__mark {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 11.5vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 3;
  mix-blend-mode: normal;
}
.hero__mark .dot {
  color: var(--mag-2);
}

.hero__blob {
  position: absolute;
  top: 44%;
  left: 50%;
  translate: -50% -50%;
  width: clamp(150px, 24vw, 300px);
  z-index: 2;
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
  filter: drop-shadow(0 22px 34px rgba(11, 11, 11, 0.32));
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(7deg);
  }
}

.hero__sub {
  position: relative;
  z-index: 3;
  margin: clamp(1rem, 3vw, 1.8rem) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  justify-content: center;
}
.hero__sub .chip {
  border: 1px solid var(--line-hard);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Page hero for interior pages ------------------------------------------- */
.phero {
  padding: clamp(2rem, 5vw, 3.6rem) var(--pad) clamp(1.2rem, 3vw, 2rem);
}
.phero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 7.5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.3rem 0 0;
}
.phero__lede {
  max-width: 62ch;
  margin: clamp(0.9rem, 2vw, 1.4rem) 0 0;
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  opacity: 0.86;
}

/* ================================================================= MARQUEE */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.42rem 0;
  user-select: none;
}
.band--ink .marquee {
  border-color: rgba(213, 212, 208, 0.24);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  animation: slide 34s linear infinite;
}
.marquee--rev .marquee__track {
  animation-direction: reverse;
  animation-duration: 42s;
}
.marquee__track span {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2.3vw, 1.75rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-weight: 400;
}
.marquee__track span i {
  font-style: normal;
  color: var(--mag-2);
}
.band--mag .marquee__track span i {
  color: var(--sage);
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ========================================================= VERTICAL CELLS */
.vcells {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vcell {
  flex: 1 1 0;
  min-width: 0;
  border-right: 1px solid var(--line);
  min-height: clamp(220px, 34vw, 400px);
  display: grid;
  place-items: center;
  padding: 1rem 0.25rem;
  position: relative;
  transition: background 0.25s;
}
.vcell:last-child {
  border-right: 0;
}
.vcell:hover {
  background: rgba(11, 11, 11, 0.06);
}
.vcell__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--f-display);
  font-size: clamp(0.9rem, 1.9vw, 1.6rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
  font-weight: 400;
}
.vcell--figure {
  flex: 1.5 1 0;
  padding: 0;
  background: var(--grey-3);
}
.vcell--figure .vcell__media {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  position: relative;
}
.vcell--figure img {
  max-height: clamp(90px, 16vw, 160px);
  width: auto;
  object-fit: contain;
}
.vcell__pill {
  position: absolute;
  bottom: 12px;
  left: 50%;
  translate: -50% 0;
  background: var(--ink);
  color: var(--grey);
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
}

/* ============================================================ GRID / KV */
.grid {
  display: grid;
  border-top: 1px solid var(--line);
}
.band--ink .grid {
  border-color: rgba(213, 212, 208, 0.24);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid > * {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1rem, 2.2vw, 1.9rem) var(--pad);
}
.band--ink .grid > * {
  border-color: rgba(213, 212, 208, 0.24);
}
.grid--3 > *:nth-child(3n),
.grid--2 > *:nth-child(2n) {
  border-right: 0;
}

.cell__num {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.16em;
  opacity: 0.5;
  display: block;
  margin-bottom: 0.7rem;
}
.cell__h {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.cell__p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* key/value strips ------------------------------------------------------- */
.kv {
  display: grid;
  grid-template-columns: minmax(140px, 34%) 1fr;
  gap: 0 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem var(--pad);
  font-size: 0.92rem;
}
.kv dt {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.6;
  align-self: center;
}
.kv dd {
  margin: 0;
  font-weight: 500;
}
.kvlist {
  margin: 0;
  border-top: 1px solid var(--line);
}

/* =============================================================== CONTROLS */
.circ {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--grey);
  display: grid;
  place-items: center;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.circ:hover {
  transform: scale(1.09);
  background: var(--mag);
  color: var(--ink);
}
.circ svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--grey);
  border-radius: 999px;
  padding: 0.7rem 1.1rem 0.7rem 1.35rem;
  font-family: var(--f-display);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover {
  background: var(--mag);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn svg {
  width: 15px;
  height: 15px;
}
.btn--ghost {
  background: transparent;
  color: inherit;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--grey);
}
.band--ink .btn--ghost {
  border-color: rgba(213, 212, 208, 0.5);
}
.band--ink .btn--ghost:hover {
  background: var(--grey);
  color: var(--ink);
}
.btn--mag {
  background: var(--mag);
  color: var(--ink);
  border-color: var(--ink);
}
.btn--mag:hover {
  background: var(--ink);
  color: var(--grey);
}

/* =============================================================== BRAND BLOCK */
.brandblock {
  display: grid;
  grid-template-columns: minmax(230px, 30%) 1fr minmax(180px, 22%);
  border-bottom: 1px solid var(--line);
}

.brandblock__logo {
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  min-height: 190px;
  position: relative;
}
.brandblock__logo img {
  max-height: 92px;
  width: auto;
  object-fit: contain;
}
.brandblock__logo .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--f-display);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--grey);
  padding: 0.22rem 0.5rem;
}

.brandblock__body {
  padding: clamp(1.1rem, 2.4vw, 2rem) var(--pad);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.brandblock__name {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 0.45rem;
}
.brandblock__strap {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  opacity: 0.85;
  max-width: 58ch;
}
.brandblock__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  margin-top: 0.4rem;
}
.tagline {
  border: 1px solid var(--line-hard);
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.tagline--mag {
  background: var(--mag);
  border-color: var(--ink);
}
.tagline--ink {
  background: var(--ink);
  color: var(--grey);
  border-color: var(--ink);
}

.brandblock__score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.1rem, 2.4vw, 2rem) var(--pad);
}
.scorenum {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.scorenum sub {
  font-size: 0.28em;
  letter-spacing: 0.08em;
  vertical-align: super;
  opacity: 0.55;
  bottom: 0;
}

/* meters ---------------------------------------------------------------- */
.meter {
  margin: 0 0 0.15rem;
}
.meter__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--f-display);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.meter__bar {
  height: 6px;
  margin: 0.4rem 0 0.35rem;
  background: rgba(11, 11, 11, 0.14);
  position: relative;
  overflow: hidden;
}
.band--ink .meter__bar {
  background: rgba(213, 212, 208, 0.18);
}
.meter__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--ink);
}
.band--ink .meter__fill {
  background: var(--mag);
}
.band--mag .meter__fill {
  background: var(--ink);
}
.meter__note {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.45;
  opacity: 0.7;
}

/* ================================================================== PROSE */
.prose {
  max-width: 74ch;
  padding: clamp(1.4rem, 3vw, 2.6rem) var(--pad);
  font-size: 1rem;
  line-height: 1.72;
}
/* On wide screens the measure stays readable, so close the column with a
   hairline. Without it the empty right-hand side reads as a mistake rather
   than as part of the grid. */
@media (min-width: 1000px) {
  .prose {
    border-right: 1px solid var(--line);
  }
  .band--ink .prose {
    border-right-color: rgba(213, 212, 208, 0.24);
  }
}
.prose > * + * {
  margin-top: 1rem;
}
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.7vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.prose h3 {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 1.9rem;
}
.prose p,
.prose li {
  opacity: 0.9;
}
.prose ul,
.prose ol {
  padding-left: 1.15rem;
}
.prose li + li {
  margin-top: 0.5rem;
}
.prose a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.prose a:hover {
  color: var(--mag-2);
}
.prose strong {
  font-weight: 600;
}
.prose .note {
  border-left: 3px solid var(--mag);
  padding: 0.65rem 0 0.65rem 1rem;
  font-size: 0.94rem;
  background: rgba(11, 11, 11, 0.04);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  display: block;
  overflow-x: auto;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  text-align: left;
  vertical-align: top;
}
.prose th {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  align-items: center;
}
.toc a {
  font-family: var(--f-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
  border-bottom: 1px solid transparent;
}
.toc a:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}

/* =============================================================== PROS/CONS */
.pc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.pc > div {
  padding: clamp(1.1rem, 2.4vw, 1.9rem) var(--pad);
  border-bottom: 1px solid var(--line);
}
.pc > div:first-child {
  border-right: 1px solid var(--line);
}
.pc h3 {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.pc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pc li {
  display: flex;
  gap: 0.6rem;
  padding: 0.42rem 0;
  font-size: 0.94rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(11, 11, 11, 0.09);
}
.pc li:last-child {
  border-bottom: 0;
}
.pc li::before {
  content: "+";
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--mag-2);
  flex: 0 0 auto;
}
.pc .cons li::before {
  content: "\2212";
  color: var(--ink);
  opacity: 0.55;
}

/* ============================================================== ACCORDION */
.acc {
  border-top: 1px solid var(--line);
}
.acc details {
  border-bottom: 1px solid var(--line);
}
.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(0.8rem, 1.6vw, 1.15rem) var(--pad);
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.95vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  transition: background 0.18s;
}
.acc summary::-webkit-details-marker {
  display: none;
}
.acc summary:hover {
  background: rgba(11, 11, 11, 0.06);
}
.acc summary .sign {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-hard);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  margin-top: 0.15rem;
  transition: transform 0.25s, background 0.2s;
}
.acc details[open] summary .sign {
  transform: rotate(135deg);
  background: var(--mag);
}
.acc .acc__body {
  padding: 0 var(--pad) clamp(1rem, 2vw, 1.5rem);
  max-width: 78ch;
  font-size: 0.96rem;
  line-height: 1.7;
  opacity: 0.88;
}
.acc .acc__body p {
  margin: 0;
}

/* ==================================================================== FORM */
.form {
  border-top: 1px solid var(--line);
  max-width: 860px;
}
.field {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(120px, 24%) 1fr;
  align-items: center;
}
.field > label {
  padding: 0.85rem var(--pad);
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.7;
}
.field input,
.field textarea,
.field select {
  font-family: var(--f-display);
  font-size: 1.02rem;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: inherit;
  padding: 0.85rem var(--pad);
  width: 100%;
  min-width: 0;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(11, 11, 11, 0.38);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  background: rgba(11, 11, 11, 0.05);
}
.field--check {
  grid-template-columns: 1fr;
  padding: 0.85rem var(--pad);
  gap: 0.6rem;
}
.field--check label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--f-body);
  opacity: 1;
}
.field--check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  border: 0;
  padding: 0;
  accent-color: var(--mag-2);
}
.err {
  grid-column: 1 / -1;
  padding: 0 var(--pad) 0.7rem;
  font-size: 0.83rem;
  color: #8c0034;
  font-weight: 500;
}
.field--check .err {
  padding: 0;
}
.formfoot {
  padding: clamp(1rem, 2vw, 1.5rem) var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.formfoot p {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.7;
  max-width: 46ch;
}
.flash {
  padding: clamp(1.1rem, 2.4vw, 2rem) var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--mag);
}
.flash h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.flash p {
  margin: 0;
  max-width: 60ch;
}

/* ================================================================== FOOTER */
.foot {
  background: var(--ink);
  color: var(--grey);
  border-top: 1px solid var(--ink);
}
.foot a:hover {
  color: var(--mag);
}

.foot__top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
}
.foot__top > div {
  padding: clamp(1.4rem, 3vw, 2.4rem) var(--pad);
  border-right: 1px solid rgba(213, 212, 208, 0.2);
  border-bottom: 1px solid rgba(213, 212, 208, 0.2);
}
.foot__top > div:last-child {
  border-right: 0;
}
/* Needs to out-specify `.foot p` below, which would otherwise shrink it. */
.foot p.foot__mark {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.7rem;
}
.foot h3 {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 0.9rem;
  font-weight: 500;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot li + li {
  margin-top: 0.42rem;
}
.foot li a,
.foot p {
  font-size: 0.9rem;
  opacity: 0.82;
}
.foot p {
  margin: 0 0 0.5rem;
}

/* responsible gambling logo strip --------------------------------------- */
.helpstrip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-bottom: 1px solid rgba(213, 212, 208, 0.2);
}
.helpstrip__age {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem var(--pad);
  border-right: 1px solid rgba(213, 212, 208, 0.2);
  flex: 0 0 auto;
}
.helpstrip__age p {
  margin: 0;
  font-family: var(--f-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  max-width: 20ch;
  opacity: 0.8;
}
.helplogos {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 420px;
}
.helplogo {
  flex: 1 1 190px;
  min-width: 0;
  border-right: 1px solid rgba(213, 212, 208, 0.2);
  padding: 1rem var(--pad);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.helplogo:last-child {
  border-right: 0;
}
.helplogo:hover {
  background: rgba(213, 212, 208, 0.07);
}
.helplogo svg {
  height: 26px;
  width: auto;
}
.helplogo span {
  font-size: 0.76rem;
  line-height: 1.4;
  opacity: 0.62;
}

.foot__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  padding: 0.9rem var(--pad);
  border-bottom: 1px solid rgba(213, 212, 208, 0.2);
}
.foot__legal a {
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}
.foot__legal a:hover {
  opacity: 1;
}
.foot__legal .sep {
  opacity: 0.3;
}

.foot__base {
  padding: 1rem var(--pad) 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  opacity: 0.6;
  line-height: 1.5;
}
.foot__base p {
  margin: 0;
  max-width: 78ch;
  font-size: 0.78rem;
}

/* ========================================================= COOKIE CONSENT */
.consent {
  position: fixed;
  z-index: 120;
  left: var(--pad);
  bottom: calc(var(--dock-h) + 14px);
  width: min(400px, calc(100vw - 2 * var(--pad)));
  background: var(--ink-2);
  color: var(--grey);
  border: 1px solid rgba(213, 212, 208, 0.35);
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.6, 0, 0.2, 1), opacity 0.3s;
}
.consent[data-show="true"] {
  transform: translateY(0);
  opacity: 1;
}
.consent[hidden] {
  display: none;
}
.consent__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.consent__head strong {
  font-family: var(--f-display);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.consent__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mag);
  flex: 0 0 auto;
}
.consent p {
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  line-height: 1.55;
  opacity: 0.86;
}
.consent p a {
  border-bottom: 1px solid currentColor;
}
.consent p a:hover {
  color: var(--mag);
}
.consent__row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.consent button {
  flex: 1 1 auto;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--grey);
  background: var(--grey);
  color: var(--ink);
  transition: background 0.18s, color 0.18s;
}
.consent button:hover {
  background: var(--mag);
  border-color: var(--mag);
}
.consent button[data-act="reject"] {
  background: transparent;
  color: var(--grey);
}
.consent button[data-act="reject"]:hover {
  background: var(--grey);
  color: var(--ink);
  border-color: var(--grey);
}

/* ============================================================= UTILITIES */
.pad {
  padding: clamp(1.2rem, 2.6vw, 2.2rem) var(--pad);
}
.center {
  text-align: center;
}
.mt0 {
  margin-top: 0;
}
.stack > * + * {
  margin-top: 0.9rem;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: clamp(1.2rem, 2.6vw, 2rem) var(--pad);
  border-bottom: 1px solid var(--line);
}
.cta-strip h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 30ch;
  line-height: 1.1;
}

.ticker-note {
  padding: 0.55rem var(--pad);
  font-family: var(--f-display);
  font-size: var(--micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  border-bottom: 1px solid var(--line);
}

/* ============================================================== RESPONSIVE */
@media (max-width: 1000px) {
  .brandblock {
    grid-template-columns: minmax(180px, 34%) 1fr;
  }
  .brandblock__score {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .brandblock__body {
    border-right: 0;
  }
  .foot__top {
    grid-template-columns: 1fr 1fr;
  }
  .foot__top > div:first-child {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .foot__top > div:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --dock-h: 50px;
  }
  .topnav {
    display: none;
  }
  .dock__nav {
    display: none;
  }
  .dock__burger {
    display: block;
  }
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .grid > * {
    border-right: 0 !important;
  }
  .pc {
    grid-template-columns: 1fr;
  }
  .pc > div:first-child {
    border-right: 0;
  }
  .brandblock {
    grid-template-columns: 1fr;
  }
  .brandblock__logo {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 150px;
  }
  .field {
    grid-template-columns: 1fr;
  }
  .field input,
  .field textarea,
  .field select {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .field > label {
    padding-bottom: 0;
  }
  .kv {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .vcells {
    flex-wrap: wrap;
  }
  .vcell {
    flex: 1 1 33%;
    min-height: 180px;
  }
  .vcell--figure {
    flex: 1 1 100%;
    border-right: 0;
    min-height: 160px;
  }
  .helpstrip__age {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 212, 208, 0.2);
  }
  .helplogo {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 212, 208, 0.2);
  }
  .foot__top {
    grid-template-columns: 1fr;
  }
  .foot__top > div {
    border-right: 0;
  }
  .consent {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: calc(var(--dock-h) + 10px);
  }
}

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

/* -------------------------------------------------------------- print */
@media print {
  .topbar,
  .dock,
  .consent,
  .marquee,
  .sheet {
    display: none !important;
  }
  body {
    padding: 0;
    background: none;
    color: #000;
  }
}
