/* ==========================================================================
   PrimeCornerHub — stylesheet
   Swiss neo-grotesk editorial system after the PP Neue Montreal specimen:
   vermillion hero, near-black body, cream paper bands, hairline rules,
   giant tight display type, pill navigation, zero shadows, zero gradients.
   No external fonts or assets: everything here is self-contained.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  /* base palette, sampled from the specimen */
  --red:      #e15a4b;
  --red-2:    #cd4a3c;
  --ink:      #1a1a1a;
  --ink-2:    #151515;
  --black:    #0b0b0b;
  --paper:    #efe7d4;
  --paper-2:  #e4dbc6;
  --white:    #ffffff;

  /* specimen accents, used for figures, tones and states */
  --green:    #4fa24f;
  --blue:     #3d5af1;
  --yellow:   #e8c84b;
  --orange:   #e08a2e;
  --gray:     #8c8c8c;

  --good:     var(--green);
  --hot:      var(--orange);

  --shell:       1360px;
  --shell-tight: 900px;

  --type: 'PP Neue Montreal', 'Neue Haas Grotesk Display Pro', 'Helvetica Neue',
          Helvetica, 'Inter', 'Segoe UI Variable Display', 'Segoe UI', Arial,
          'Noto Sans', sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;

  /* default surface: near-black, cream ink */
  --surface: var(--ink);
  --on:      var(--paper);
  --on-2:    rgba(239, 231, 212, .72);
  --on-3:    rgba(239, 231, 212, .46);
  --rule:    rgba(239, 231, 212, .17);
  --rule-2:  rgba(239, 231, 212, .34);
  --key:     var(--red);
  --fill-bg: var(--paper);
  --fill-ink: var(--ink);
}

/* Surface recipes. Every component below reads --on / --rule / --key only,
   so dropping one of these classes on a section re-themes everything inside. */
.on-paper {
  --surface: var(--paper);
  --on:      var(--ink);
  --on-2:    rgba(26, 26, 26, .74);
  --on-3:    rgba(26, 26, 26, .52);
  --rule:    rgba(26, 26, 26, .2);
  --rule-2:  rgba(26, 26, 26, .42);
  --key:     var(--red-2);
  --fill-bg: var(--ink);
  --fill-ink: var(--paper);
}
.on-red {
  --surface: var(--red);
  --on:      var(--ink);
  --on-2:    rgba(26, 26, 26, .8);
  --on-3:    rgba(26, 26, 26, .58);
  --rule:    rgba(26, 26, 26, .3);
  --rule-2:  rgba(26, 26, 26, .5);
  --key:     var(--ink);
  --fill-bg: var(--ink);
  --fill-ink: var(--paper);
}
.on-black {
  --surface: var(--black);
  --on:      var(--paper);
  --on-2:    rgba(239, 231, 212, .68);
  --on-3:    rgba(239, 231, 212, .42);
  --rule:    rgba(239, 231, 212, .15);
  --rule-2:  rgba(239, 231, 212, .3);
  --key:     var(--red);
  --fill-bg: var(--paper);
  --fill-ink: var(--ink);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--type);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.011em;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

:is(a, button, summary, input, select, textarea):focus-visible {
  outline: 2px solid var(--key);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.038em;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

code {
  font-family: var(--mono);
  font-size: .86em;
  border: 1px solid var(--rule);
  padding: .1em .42em;
}

::selection { background: var(--red); color: var(--paper); }

.jump {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 300;
  padding: 13px 20px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -.01em;
}
.jump:focus { left: 0; }

/* --------------------------------------------------------------- layout -- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 26px;
}
/* Flush-left throughout: measure is capped on the text blocks themselves,
   never by re-centring a narrower container. */
.shell--tight { max-width: var(--shell); }

.band {
  padding-block: 92px;
  background: var(--surface);
  color: var(--on);
}
.band--slim { padding-block: 62px; }

/* Cream paper band — the specimen's print-spec surface. */
.band--tint {
  --surface: var(--paper);
  --on:      var(--ink);
  --on-2:    rgba(26, 26, 26, .74);
  --on-3:    rgba(26, 26, 26, .52);
  --rule:    rgba(26, 26, 26, .2);
  --rule-2:  rgba(26, 26, 26, .42);
  --key:     var(--red-2);
  --fill-bg: var(--ink);
  --fill-ink: var(--paper);
}

.mid { text-align: center; }
.gap-24 { margin-top: 28px; }
.gap-32 { margin-top: 40px; }

/* ------------------------------------------------------------ 18+ rings -- */
.ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  color: var(--key);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
}
.ring i { font-style: normal; font-size: .68em; margin-left: 1px; }

.ring--xs { width: 30px; height: 30px; font-size: 13px; }
.ring--lg { width: 62px; height: 62px; font-size: 25px; border-width: 2px; }
.ring--xl { width: 116px; height: 116px; font-size: 48px; border-width: 3px; }

/* ------------------------------------------------------------ age strip -- */
.agestrip {
  background: var(--black);
  color: var(--paper);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.agestrip__row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  padding-block: 7px;
}
.agestrip .ring { width: 22px; height: 22px; font-size: 9.5px; border-width: 1px; color: var(--red); }
.agestrip p { color: rgba(239, 231, 212, .74); }
.agestrip a {
  margin-left: auto;
  color: var(--paper);
  white-space: nowrap;
  border-bottom: 1px solid rgba(239, 231, 212, .34);
  padding-bottom: 1px;
}
.agestrip a:hover { color: var(--red); border-bottom-color: var(--red); }

/* ------------------------------------------------------------- masthead -- */
/* Continuous vermillion plate with capsule navigation, exactly as the
   specimen: the bar, the breadcrumb and the topper read as one red block. */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
}
.masthead__row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.wordmark { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.wordmark__mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}
.wordmark__type { display: flex; flex-direction: column; line-height: 1.05; }
.wordmark__type b {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--paper);
}
.wordmark__type i {
  font-style: normal;
  font-size: 9.5px;
  color: rgba(239, 231, 212, .62);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 500;
  margin-top: 3px;
}

.mainnav { display: flex; align-items: center; gap: 14px; margin-left: auto; }

.mainnav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 4px;
  background: var(--paper);
  border-radius: 999px;
}
.mainnav__links a {
  display: block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.014em;
  color: rgba(26, 26, 26, .68);
  transition: color .15s, background .15s;
}
.mainnav__links a:hover { color: var(--ink); }
.mainnav__links a[aria-current="page"] { background: var(--ink); color: var(--paper); }

.mainnav__end { display: flex; align-items: center; gap: 10px; }

.langpick {
  display: flex;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(239, 231, 212, .16);
}
.langpick__opt {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--paper);
  transition: background .15s, color .15s;
}
.langpick__opt:hover { background: rgba(239, 231, 212, .18); }
.langpick__opt.on { background: var(--paper); color: var(--ink); }

.burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  padding: 0;
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  gap: 4px;
}
.burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------------------------------------------------------------- trail -- */
.trail {
  background: var(--red);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.trail ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  list-style: none;
  padding-block: 13px;
  border-top: 1px solid rgba(26, 26, 26, .28);
  color: rgba(26, 26, 26, .62);
}
.trail li + li::before { content: '/'; margin-right: 9px; color: rgba(26, 26, 26, .42); }
.trail a:hover { color: var(--ink); }
.trail [aria-current] { color: var(--ink); }

/* ----------------------------------------------------------- hero/topper -- */
/* The specimen's opening: white statement, hairline, small copy, hairline,
   then an oversized black wordline with a picture card beside it. */
.opening {
  position: relative;
  background: var(--red);
  color: var(--ink);
  --on: var(--ink);
  --on-2: rgba(26, 26, 26, .8);
  --on-3: rgba(26, 26, 26, .58);
  --rule: rgba(26, 26, 26, .3);
  --rule-2: rgba(26, 26, 26, .5);
  --key: var(--ink);
  --fill-bg: var(--ink);
  --fill-ink: var(--paper);
  overflow: hidden;
}
.opening__wash, .opening__mesh { display: none; }
.opening__inner { position: relative; padding-block: 30px 0; }

/* white statement line, the specimen's "Official Travel Guide" */
.opening__label {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.042em;
  color: var(--white);
  max-width: 21ch;
}

.opening__rule { display: block; height: 1px; background: var(--rule); margin-top: 46px; }
.opening__rule--wide { margin-top: 110px; }

.opening__lead {
  margin-top: 16px;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.42;
  letter-spacing: -.012em;
  color: var(--ink);
}

/* oversized wordline + picture card */
.opening__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: end;
  gap: 40px;
  margin-top: 26px;
  padding-bottom: 26px;
}
.opening__h1 {
  font-size: clamp(44px, 7.6vw, 106px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.048em;
  color: var(--ink);
  text-wrap: pretty;
  margin: 0;
}
.opening__h1 em { font-style: normal; color: var(--white); }

/* postcard-style proof panel that sits where the specimen puts its photo */
.opening__card {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 22px 18px;
  align-self: end;
}
.opening__card h2 {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(239, 231, 212, .6);
  margin-bottom: 16px;
}
.opening__card ul { list-style: none; display: grid; gap: 12px; }
.opening__card li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(239, 231, 212, .16);
  font-size: 13px;
}
.opening__card li:last-child { border-bottom: 0; padding-bottom: 0; }
.opening__card b { font-weight: 500; font-size: 15px; letter-spacing: -.02em; }
.opening__card span { color: rgba(239, 231, 212, .58); font-variant-numeric: tabular-nums; }

.opening__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-block: 30px 0;
}
.opening__fine {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--on-2);
  max-width: 62ch;
}

/* rotating chevron seal, the specimen's circular mark */
.seal {
  position: absolute;
  top: 26px; right: 26px;
  width: 122px; height: 122px;
  color: var(--ink);
  animation: seal-spin 26s linear infinite;
  pointer-events: none;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }

/* licence proof strip — hairline row of logo + register number */
.proof {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.proof li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px 18px 0;
  margin-right: 26px;
  border-right: 1px solid var(--rule);
}
.proof li:last-child { border-right: 0; margin-right: 0; }
.proof img { max-height: 20px; width: auto; }
.proof span {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--on-2);
  white-space: nowrap;
}
.proof__link a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* inner-page topper, same red plate at a smaller scale */
.topper {
  position: relative;
  background: var(--red);
  color: var(--ink);
  --on: var(--ink);
  --on-2: rgba(26, 26, 26, .8);
  --on-3: rgba(26, 26, 26, .58);
  --rule: rgba(26, 26, 26, .3);
  --rule-2: rgba(26, 26, 26, .5);
  --key: var(--ink);
  --fill-bg: var(--ink);
  --fill-ink: var(--paper);
  padding-block: 62px 60px;
  overflow: hidden;
}
.topper--mid { text-align: left; padding-block: 76px 76px; }
.topper__h1 {
  font-size: clamp(42px, 7.4vw, 104px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.046em;
  max-width: 18ch;
}
.topper--mid .topper__h1 { margin-inline: 0; }
.topper__h1--sm { font-size: clamp(38px, 5.6vw, 76px); }
.topper__p {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.48;
  color: var(--on-2);
}
.topper--mid .topper__p { margin-inline: 0; }
.topper__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--on-3);
}
.topper__meta b { color: var(--ink); font-weight: 500; }

/* -------------------------------------------------------------- section -- */
/* label, hairline, oversized heading — the specimen's section signature. */
.bandhead {
  text-align: left;
  max-width: none;
  margin: 0 0 56px;
}
.bandhead--start { text-align: left; }
.bandhead__h {
  font-size: clamp(34px, 5.2vw, 74px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.045em;
  max-width: 17ch;
  margin-top: 26px;
}
.bandhead__p {
  margin-top: 22px;
  max-width: 56ch;
  color: var(--on-2);
  font-size: 15px;
  line-height: 1.5;
}

/* Polychrome mixed-style statement — the specimen's signature composition,
   one colour and slant per word. */
.statement {
  margin-top: 30px;
  font-size: clamp(40px, 7.2vw, 106px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.05em;
  max-width: 15ch;
}
.statement span:nth-child(7n+1) { color: var(--green);  font-style: italic; }
.statement span:nth-child(7n+2) { color: var(--on); }
.statement span:nth-child(7n+3) { color: var(--gray); }
.statement span:nth-child(7n+4) { color: var(--yellow); font-style: italic; }
.statement span:nth-child(7n+5) { color: var(--blue); }
.statement span:nth-child(7n+6) { color: var(--red); }
.statement span:nth-child(7n+7) { color: var(--orange); }

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-2);
}
.kicker__dot {
  width: 7px; height: 7px;
  flex: 0 0 auto;
  background: var(--red);
}
.on-red .kicker__dot, .opening .kicker__dot, .topper .kicker__dot { background: var(--ink); }

/* --------------------------------------------------------------- action -- */
.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.012em;
  cursor: pointer;
  white-space: nowrap;
  transition: background .16s, border-color .16s, color .16s, opacity .16s;
}

.act--fill { background: var(--fill-bg); color: var(--fill-ink); }
.act--fill:hover { background: var(--red); color: var(--paper); }

.act--line { background: transparent; border-color: var(--rule-2); color: var(--on); }
.act--line:hover { background: var(--on); color: var(--surface); border-color: var(--on); }

.act--bare {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--on);
  border-bottom: 1px solid var(--rule-2);
}
.act--bare:hover { border-bottom-color: var(--on); }

.act--sm { padding: 10px 18px; font-size: 12.5px; }
.act--lg { padding: 16px 30px; font-size: 15px; }
.act--wide { width: 100%; }

.asLink {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.asLink:hover { color: var(--red); }

/* -------------------------------------------------------------- figures -- */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.figures li {
  padding: 34px 26px 32px;
  text-align: left;
  border-right: 1px solid var(--rule);
}
.figures li:last-child { border-right: 0; }
.figures li:first-child { padding-left: 0; }
.figures b {
  display: block;
  font-size: clamp(44px, 4.6vw, 68px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}
.figures li:nth-child(1) b { color: var(--red); }
.figures li:nth-child(2) b { color: var(--green); }
.figures li:nth-child(3) b { color: var(--yellow); }
.figures li:nth-child(4) b { color: var(--blue); }
.band--tint .figures li:nth-child(3) b { color: var(--orange); }
.figures span {
  display: block;
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--on-2);
  max-width: 22ch;
}

/* -------------------------------------------------------- operator card -- */
.opgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.opgrid--one { grid-template-columns: minmax(0, 640px); }

.opcard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 34px 34px 0;
  margin-right: 34px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.opcard:last-child { border-right: 0; margin-right: 0; }
.opcard::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 44px;
  height: 4px;
  background: var(--tone, var(--red));
}

.opcard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-top: 22px;
}
.opcard__logo {
  display: grid;
  place-items: center;
  min-width: 148px;
  min-height: 62px;
  padding: 12px 18px;
  /* operator artwork is white-on-transparent, so it needs a dark plate */
  background: var(--black);
}
.opcard__logo img { max-height: 38px; width: auto; object-fit: contain; }

.opcard__rating { text-align: right; flex: 0 0 auto; }
.opcard__rating b {
  display: block;
  font-size: 46px;
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}

.meter { position: relative; display: inline-block; font-size: 12px; letter-spacing: 2px; line-height: 1; }
.meter__base { color: var(--on-3); }
.meter__on { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--key); }
.opcard__rating .meter { margin-top: 8px; }

.opcard__name { font-size: 34px; font-weight: 500; letter-spacing: -.042em; }
.opcard__name a:hover { color: var(--red); }

.licstrip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-top: 20px;
  padding: 16px 0 16px 16px;
  border-left: 3px solid var(--red);
  font-size: 12.5px;
}
.licstrip__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}
.licstrip__nums { color: var(--on-2); }
.licstrip__nums b {
  color: var(--on);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.licstrip__holder { width: 100%; color: var(--on-3); font-size: 11.5px; line-height: 1.45; }
.licstrip__check {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 2px;
}
.licstrip__check:hover { border-bottom-color: var(--on); }

.opcard__flags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin-top: 18px; }
.opcard__flags li {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule-2);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--on-2);
}

.opcard__intro {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--on-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.opcard__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 0;
  border-top: 1px solid var(--rule);
}
.opcard__facts > div {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--rule);
}
.opcard__facts > div:nth-child(odd) { border-right: 1px solid var(--rule); }
.opcard__facts > div:nth-child(even) { padding-left: 16px; }
.opcard__facts dt {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--on-3);
  margin-bottom: 6px;
}
.opcard__facts dd { margin: 0; font-size: 14.5px; font-weight: 500; letter-spacing: -.018em; }

.opcard__pay { display: flex; flex-wrap: wrap; gap: 6px 14px; list-style: none; margin-top: 16px; }
.opcard__pay li { font-size: 11px; text-transform: uppercase; letter-spacing: .11em; color: var(--on-3); }

.opcard__buttons {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
}

.opcard__small {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 10px;
  color: var(--on-3);
  line-height: 1.45;
}
.sponsor {
  padding: 2px 8px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-2);
  white-space: nowrap;
}

/* --------------------------------------------------------------- ladder -- */
/* Numbered rows on hairlines, in the "Typeface Evolution" idiom. */
.ladder {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  border-top: 1px solid var(--rule);
}
.rung {
  display: grid;
  grid-template-columns: 120px minmax(0, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  padding-block: 28px;
  border-bottom: 1px solid var(--rule);
  transition: background .18s;
}
.rung:hover { background: var(--rule); }
.rung__n {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.rung__h { font-size: clamp(21px, 2vw, 28px); font-weight: 500; letter-spacing: -.036em; }
.rung__p { font-size: 14.5px; color: var(--on-2); line-height: 1.5; max-width: 60ch; }

/* ---------------------------------------------------------------- tiles -- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--rule);
}
.tile {
  padding: 30px 26px 30px 0;
  margin-right: 26px;
  border-right: 1px solid var(--rule);
}
.tile:last-child { border-right: 0; margin-right: 0; }
.tile__mark {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid var(--rule-2);
  color: var(--green);
}
.tile h3 { font-size: 21px; font-weight: 500; letter-spacing: -.032em; }
.tile p { margin-top: 12px; font-size: 14px; color: var(--on-2); line-height: 1.5; }

/* ---------------------------------------------------------------- folds -- */
.folds { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }

.fold { border-bottom: 1px solid var(--rule); }

.fold__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  letter-spacing: -.03em;
}
.fold__q::-webkit-details-marker { display: none; }
.fold__q svg { flex: 0 0 auto; color: var(--on-3); transition: transform .22s, color .22s; }
.fold[open] .fold__q svg { transform: rotate(45deg); color: var(--red); }
.fold__q:hover { color: var(--red); }

.fold__a { padding: 0 0 26px; }
.fold__a p { font-size: 15px; color: var(--on-2); line-height: 1.56; max-width: 72ch; }

.foldset { margin-bottom: 56px; }
.foldset__h {
  margin-bottom: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--on-2);
}

.jumps { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 52px; }
.jumps a {
  padding: 9px 17px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--on-2);
  transition: background .15s, color .15s, border-color .15s;
}
.jumps a:hover { background: var(--on); color: var(--surface); border-color: var(--on); }

/* -------------------------------------------------------------- callout -- */
/* Full-bleed vermillion plate, the specimen's colour-block moment. */
.callout {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 62px 56px;
  background: var(--red);
  --surface: var(--red);
  --on: var(--ink);
  --on-2: rgba(26, 26, 26, .8);
  --on-3: rgba(26, 26, 26, .58);
  --rule: rgba(26, 26, 26, .3);
  --rule-2: rgba(26, 26, 26, .5);
  --key: var(--ink);
  --fill-bg: var(--ink);
  --fill-ink: var(--paper);
  color: var(--ink);
}
.callout--slim { padding: 40px 36px; }
.callout__body { flex: 1 1 auto; }
.callout__h {
  font-size: clamp(32px, 4.6vw, 66px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.046em;
  max-width: 20ch;
}
.callout__h--sm { font-size: clamp(26px, 3vw, 40px); }
.callout__p {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  max-width: 58ch;
  color: var(--on-2);
  font-size: 15px;
  line-height: 1.5;
}
.callout__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 28px; }
.callout__fine {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--on-3);
}

/* --------------------------------------------------------------- opener -- */
.opener {
  display: grid;
  grid-template-columns: auto 1fr minmax(240px, 300px);
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
}
.opener__logo {
  display: grid;
  place-items: center;
  min-width: 176px;
  min-height: 96px;
  padding: 18px 24px;
  background: var(--black);
}
.opener__logo img { max-height: 54px; width: auto; object-fit: contain; }
.opener__score { display: flex; align-items: baseline; gap: 12px; }
.opener__score b {
  font-size: 54px;
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}
.opener__score i { font-style: normal; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; color: var(--on-3); }
.opener__lic { margin-top: 14px; font-size: 13.5px; color: var(--on-2); }
.opener__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 10px;
  color: var(--on-3);
  line-height: 1.45;
}

/* -------------------------------------------------------------- licence -- */
.licbox { padding: 0; }
.licbox__h {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--on-2);
}
.licbox__h svg { color: var(--red); }
.licbox__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin: 0;
}
.licbox__top > div {
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.licbox__top > div:last-child { border-right: 0; }
.licbox__top dt {
  margin-bottom: 8px;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--on-3);
}
.licbox__top dd { margin: 0; font-size: 15px; line-height: 1.45; letter-spacing: -.018em; }
.licbox__note { margin: 24px 0 18px; font-size: 12px; color: var(--on-3); line-height: 1.5; max-width: 76ch; }

.pill {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule-2);
  color: var(--on);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.pill--big { font-size: 18px; padding: 3px 13px; }

.state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.state::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.state--on { color: var(--green); }
.state--off { color: var(--orange); }

.liccards { display: grid; margin-top: 0; }
.liccard {
  padding: 26px 0 26px 20px;
  border-left: 3px solid var(--green);
  border-bottom: 1px solid var(--rule);
}
.liccard--off { border-left-color: var(--orange); }
.liccard__top { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.liccard__kind { font-size: 17px; font-weight: 500; letter-spacing: -.028em; }
.liccard__dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 20px 0 0;
}
.liccard__dl dt {
  margin-bottom: 6px;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--on-3);
}
.liccard__dl dd { margin: 0; font-size: 14px; color: var(--on-2); line-height: 1.5; }
.liccard__docs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-top: 18px; }
.liccard__docs a {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .13em;
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 2px;
}
.liccard__docs a:hover { border-bottom-color: var(--on); }
.liccard__docs--sub { margin-top: 10px; }
.liccard__docs--sub span { font-size: 9.5px; color: var(--on-3); text-transform: uppercase; letter-spacing: .15em; }
.liccard__docs--sub a { font-size: 10px; color: var(--on-2); }

/* --------------------------------------------------------------- panels -- */
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; }
.pair > * + * { border-left: 1px solid var(--rule); padding-left: 40px; }
.pair--form { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }

.slab { padding: 0 40px 0 0; }
.slab__h {
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--on-2);
}
.slab__note { margin-top: 20px; font-size: 12px; color: var(--on-3); line-height: 1.5; }

.rows { display: grid; margin: 0; }
.rows > div {
  display: grid;
  grid-template-columns: minmax(120px, 34%) 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
}
.rows dt { font-size: 10.5px; text-transform: uppercase; letter-spacing: .13em; color: var(--on-3); }
.rows dd { margin: 0; font-size: 14px; line-height: 1.45; }
.rows a { border-bottom: 1px solid var(--rule-2); }
.rows a:hover { border-bottom-color: var(--on); }

.bars { list-style: none; display: grid; }
.bar {
  display: grid;
  grid-template-columns: minmax(110px, 32%) 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
}
.bar__label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .13em; color: var(--on-3); }
.bar__track { height: 3px; background: var(--rule); overflow: hidden; }
.bar__track i { display: block; height: 100%; background: var(--red); }
.bar__val { font-size: 17px; font-weight: 500; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }

.plusminus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  padding-top: 0;
  border-top: 1px solid var(--rule);
}
.plusminus__col { padding: 24px 24px 0 0; }
.plusminus__col + .plusminus__col { border-left: 1px solid var(--rule); padding-left: 24px; }
.plusminus__col h3 {
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.plusminus__col--up h3 { color: var(--green); }
.plusminus__col--down h3 { color: var(--red); }
.plusminus__col ul { list-style: none; display: grid; gap: 11px; }
.plusminus__col li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--on-2); line-height: 1.5; }
.plusminus__col li::before { position: absolute; left: 0; top: 0; font-weight: 500; }
.plusminus__col--up li::before { content: '+'; color: var(--green); }
.plusminus__col--down li::before { content: '\2212'; color: var(--red); }

.helplines { list-style: none; display: grid; margin-top: 0; border-top: 1px solid var(--rule); }
.helplines li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.helplines b { font-size: 16px; font-weight: 500; letter-spacing: -.026em; }
.helplines span { font-size: 13px; color: var(--on-2); }
.helplines a { border-bottom: 1px solid var(--rule-2); }
.helplines a:hover { border-bottom-color: var(--on); }

/* ----------------------------------------------------------------- copy -- */
.copy { max-width: 74ch; }
.copy h2 {
  margin: 60px 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -.04em;
  scroll-margin-top: 120px;
}
.copy h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.copy p { margin-bottom: 18px; font-size: 15.5px; color: var(--on-2); line-height: 1.6; }
.copy ul, .copy ol { margin: 0 0 22px; padding-left: 22px; }
.copy li { margin-bottom: 10px; font-size: 15px; color: var(--on-2); line-height: 1.56; }
.copy a { border-bottom: 1px solid var(--rule-2); }
.copy a:hover { border-bottom-color: var(--on); color: var(--red); }

.copy--legal h2 { margin-top: 48px; font-size: clamp(20px, 2.2vw, 27px); }
.copy--legal p, .copy--legal li { font-size: 14.5px; color: var(--on-3); }

.index {
  margin-bottom: 56px;
  padding: 0 0 22px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.index__h {
  margin: 0 0 16px;
  padding-top: 16px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--on-3);
}
.index ol { display: grid; gap: 9px; padding-left: 20px; }
.index li { font-size: 13.5px; color: var(--on-2); }
.index a:hover { color: var(--red); }

.legalswitch { display: flex; flex-wrap: wrap; gap: 6px; }
.legalswitch__i {
  padding: 10px 18px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--on-2);
  transition: background .15s, color .15s, border-color .15s;
}
.legalswitch__i:hover { background: var(--on); color: var(--surface); border-color: var(--on); }
.legalswitch__i.on { background: var(--on); color: var(--surface); border-color: var(--on); }

/* --------------------------------------------------------------- tables -- */
/* Print-spec table: hairlines only, tabular figures, no container chrome. */
.scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; border-top: 1px solid var(--rule); }
.scroller__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--on-3);
  line-height: 1.5;
}

.grid { width: 100%; border-collapse: collapse; min-width: 700px; font-size: 14px; }
.grid th, .grid td {
  padding: 16px 20px 16px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
}
.grid thead th {
  padding-block: 20px;
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--on-3);
  white-space: nowrap;
  border-bottom-color: var(--rule-2);
}
.grid thead th a {
  color: var(--on);
  font-size: 24px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -.04em;
}
.grid thead th a:hover { color: var(--red); }
.grid tbody th {
  font-weight: 500;
  color: var(--on-3);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .13em;
  border-right: 1px solid var(--rule);
  padding-right: 24px;
}
.grid tbody td { color: var(--on); border-right: 1px solid var(--rule); padding-left: 24px; }
.grid tbody td:last-child { border-right: 0; }
.grid tbody tr:last-child > * { border-bottom: 0; }
.grid a { border-bottom: 1px solid var(--rule-2); }

.grid--rows tbody th { white-space: nowrap; }
.doccell { display: table-cell; }
.doccell a { display: block; margin-bottom: 6px; font-size: 12px; }
.doccell a:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------- form -- */
.ask { display: grid; gap: 0; }
.ask__field { display: grid; gap: 8px; padding-block: 16px; border-bottom: 1px solid var(--rule); }
.ask__field label { font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; color: var(--on-3); }
.ask__field label i { font-style: normal; color: var(--red); }

.ask input[type="text"],
.ask input[type="email"],
.ask select,
.ask textarea {
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  color: var(--on);
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.024em;
  transition: border-color .15s;
}
.ask select { padding-right: 22px; }
.ask textarea { resize: vertical; min-height: 120px; line-height: 1.5; font-size: 15px; }
.ask ::placeholder { color: var(--on-3); font-weight: 400; }
.ask :is(input, select, textarea):focus { border-bottom-color: var(--red); outline-offset: 4px; }
.ask [aria-invalid="true"] { border-bottom-color: var(--red); }
.ask__err { font-size: 12px; color: var(--red); }

.ask__field--check { grid-template-columns: auto 1fr; align-items: start; gap: 12px; }
.ask__field--check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--red); }
.ask__field--check label {
  font-size: 13px;
  text-transform: none;
  letter-spacing: -.01em;
  color: var(--on-2);
  line-height: 1.5;
}
.ask__field--check a { border-bottom: 1px solid var(--rule-2); }
.ask__field--check .ask__err { grid-column: 1 / -1; }

.ask__note { padding-top: 16px; font-size: 11.5px; color: var(--on-3); line-height: 1.5; }

.note { margin-bottom: 26px; padding: 20px 0 20px 20px; border-left: 3px solid; }
.note b { display: block; margin-bottom: 6px; font-size: 17px; font-weight: 500; letter-spacing: -.028em; }
.note p { font-size: 13.5px; line-height: 1.5; }
.note--ok { border-left-color: var(--green); color: var(--green); }
.note--bad { border-left-color: var(--red); color: var(--red); }

/* -------------------------------------------------------------- closing -- */
.closing {
  padding-block: 76px 34px;
  background: var(--black);
  --surface: var(--black);
  --on:      var(--paper);
  --on-2:    rgba(239, 231, 212, .68);
  --on-3:    rgba(239, 231, 212, .42);
  --rule:    rgba(239, 231, 212, .15);
  --rule-2:  rgba(239, 231, 212, .3);
  --key:     var(--red);
  --fill-bg: var(--paper);
  --fill-ink: var(--ink);
  color: var(--on);
}

.agepanel {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 62px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--rule);
}
.agepanel .ring { color: var(--red); }
.agepanel__lead {
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -.032em;
  line-height: 1.1;
  max-width: 34ch;
}
.agepanel__sub { margin-top: 10px; font-size: 12.5px; color: var(--on-3); line-height: 1.5; max-width: 72ch; }

.closing__cols {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.closing__col { padding-right: 32px; }
.closing__col + .closing__col { border-left: 1px solid var(--rule); padding-left: 32px; }
.closing__text { font-size: 12.5px; color: var(--on-2); line-height: 1.55; max-width: 44ch; }
.closing__text--dim { margin-top: 16px; font-size: 11.5px; color: var(--on-3); }

.closing__h {
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--on-3);
}
.closing__h--mid { text-align: left; }

.closing__list { list-style: none; display: grid; gap: 12px; }
.closing__list :is(a, button) { font-size: 13.5px; color: var(--on); transition: color .15s; }
.closing__list a:hover, .closing__list button:hover { color: var(--red); }

.trustwall { padding-block: 48px; border-bottom: 1px solid var(--rule); }
.trustwall__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 18px 34px;
  list-style: none;
}
.trustwall__row img {
  height: 40px;
  width: auto;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity .18s, filter .18s;
}
.trustwall__row a:hover img { opacity: 1; filter: grayscale(0); }
.trustwall__age img { height: 40px; opacity: .9; filter: none; }

.closing__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 32px;
}
.closing__legalrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.closing__legalrow a { color: var(--on-2); }
.closing__legalrow a:hover { color: var(--red); }
.closing__legalrow span { color: var(--on-3); }
.closing__copy { font-size: 10.5px; text-transform: uppercase; letter-spacing: .11em; color: var(--on-3); }

/* ---------------------------------------------------- consent + flash --- */
.consent {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 200;
  transform: translateY(150%);
  width: min(560px, calc(100vw - 32px));
  background: var(--paper);
  color: var(--ink);
  --on: var(--ink);
  --on-2: rgba(26, 26, 26, .74);
  --on-3: rgba(26, 26, 26, .52);
  --rule: rgba(26, 26, 26, .2);
  --rule-2: rgba(26, 26, 26, .42);
  --surface: var(--paper);
  --fill-bg: var(--ink);
  --fill-ink: var(--paper);
  opacity: 0;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .3s;
}
.consent.up { transform: translateY(0); opacity: 1; }
.consent[hidden] { display: none; }

.consent__box { display: flex; flex-direction: column; align-items: stretch; gap: 22px; padding: 26px; }
.consent__h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.036em;
}
.consent__h svg { flex: 0 0 auto; color: var(--red-2); }
.consent__p { margin-top: 12px; font-size: 13px; color: var(--on-2); line-height: 1.5; }
.consent__p a { border-bottom: 1px solid var(--rule-2); }
.consent__buttons { display: flex; gap: 8px; flex: 0 0 auto; }

.flash {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 210;
  transform: translateY(18px);
  padding: 13px 22px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.014em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
}
.flash.up { opacity: 1; transform: translateY(0); }
.flash[hidden] { display: none; }

/* ----------------------------------------------------------- responsive -- */
@media (max-width: 1180px) {
  .opening__stage { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .opening__card { max-width: 420px; }
  .rung { grid-template-columns: 90px minmax(0, 260px) minmax(0, 1fr); gap: 22px; }
  .closing__cols { grid-template-columns: 1fr 1fr; }
  .closing__col--wide { grid-column: 1 / -1; border-left: 0; padding-left: 0; padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--rule); }
  .closing__col:nth-child(2) { border-left: 0; padding-left: 0; }
  .opener { grid-template-columns: auto 1fr; }
  .opener__cta { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .burger { display: grid; }

  .mainnav {
    position: fixed;
    inset: 96px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    background: var(--paper);
    color: var(--ink);
    border-radius: 22px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
  .mainnav.open { display: flex; }
  .mainnav__links { flex-direction: column; align-items: stretch; gap: 0; padding: 0; background: none; border-radius: 0; }
  .mainnav__links li + li { border-top: 1px solid rgba(26, 26, 26, .14); }
  .mainnav__links a { padding: 14px 4px; font-size: 20px; letter-spacing: -.034em; border-radius: 0; color: var(--ink); }
  .mainnav__links a[aria-current="page"] { background: none; color: var(--red-2); }
  .mainnav__end {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(26, 26, 26, .14);
  }
  .langpick { justify-content: center; background: rgba(26, 26, 26, .08); }
  .langpick__opt { color: var(--ink); }
  .langpick__opt:hover { background: rgba(26, 26, 26, .08); }
  .langpick__opt.on { background: var(--ink); color: var(--paper); }
  .mainnav .act--fill { background: var(--ink); color: var(--paper); }

  .figures { grid-template-columns: 1fr 1fr; }
  .figures li:nth-child(2n) { border-right: 0; }
  .figures li:nth-child(3) { padding-left: 0; }
  .figures li:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .pair, .pair--form { grid-template-columns: 1fr; }
  .pair > * + * { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 36px; margin-top: 36px; }
  .slab { padding-right: 0; }
  .band { padding-block: 74px; }
  .seal { width: 84px; height: 84px; top: 22px; right: 22px; }
  .callout { padding: 44px 30px; }
}

@media (max-width: 720px) {
  .shell { padding-inline: 20px; }
  .agestrip__row { flex-wrap: wrap; row-gap: 5px; }
  .agestrip p { flex: 1 1 auto; font-size: 9.5px; letter-spacing: .1em; }
  .agestrip a { margin-left: 0; font-size: 9.5px; }

  .seal { display: none; }
  .opening__label { max-width: none; }
  .opening__rule--wide { margin-top: 62px; }
  .proof li { width: 100%; border-right: 0; margin-right: 0; padding: 14px 0; border-bottom: 1px solid var(--rule); }

  .opgrid { grid-template-columns: 1fr; }
  .opcard { padding-right: 0; margin-right: 0; border-right: 0; }
  .opcard__buttons { grid-template-columns: 1fr; }
  .plusminus { grid-template-columns: 1fr; }
  .plusminus__col + .plusminus__col { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); }
  .closing__cols { grid-template-columns: 1fr; }
  .closing__col, .closing__col + .closing__col {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--rule);
  }
  .closing__cols > .closing__col:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
  .agepanel { flex-direction: column; align-items: flex-start; gap: 18px; }

  .callout { flex-direction: column; align-items: flex-start; gap: 32px; padding: 36px 24px; }
  .tiles { grid-template-columns: 1fr; }
  .tile { padding-right: 0; margin-right: 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .tile:last-child { border-bottom: 0; }
  .rung { grid-template-columns: 1fr; gap: 12px; }

  .consent { left: 16px; right: 16px; bottom: 16px; width: auto; }
  .consent__buttons { flex-direction: column-reverse; }
  .consent__buttons .act { width: 100%; }
  .flash { left: 16px; right: 16px; text-align: center; }

  .opener { grid-template-columns: 1fr; gap: 22px; }
  .opener__logo { justify-self: start; }

  .trustwall__row img, .trustwall__age img { height: 32px; }
}

@media (max-width: 480px) {
  .figures { grid-template-columns: 1fr; }
  .figures li { border-right: 0; padding-left: 0; border-bottom: 1px solid var(--rule); }
  .figures li:last-child { border-bottom: 0; }
  .opcard__facts { grid-template-columns: 1fr; }
  .opcard__facts > div:nth-child(odd) { border-right: 0; }
  .opcard__facts > div:nth-child(even) { padding-left: 0; }
  .rows > div { grid-template-columns: 1fr; gap: 5px; }
}

/* ---------------------------------------------------------------- print -- */
@media print {
  .agestrip, .masthead, .consent, .flash, .seal, .opcard__buttons { display: none !important; }
  body { background: #fff; color: #000; }
}

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