/* Talandrixa editorial system — no third-party frameworks or font requests. */
:root {
  --ink: #071311;
  --ink-soft: #10201d;
  --paper: #f3f0e8;
  --paper-2: #e7e1d4;
  --sand: #d7c9b1;
  --white: #fffdf7;
  --coral: #ff6846;
  --coral-deep: #c93c20;
  --mint: #a9f4d0;
  --mint-deep: #3c9b75;
  --line-dark: rgba(7, 19, 17, 0.18);
  --line-light: rgba(255, 253, 247, 0.2);
  --muted-dark: #53615d;
  --muted-light: #aab7b3;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 2px;
  --shadow: 0 30px 90px rgba(3, 10, 8, 0.22);
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
  background: var(--ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.age-unconfirmed,
body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 800;
  transform: translateY(-180%);
}

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

.eyebrow {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.tag--coral {
  background: var(--coral);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--ink);
  background: var(--coral);
}

.button--primary:hover {
  background: var(--mint);
}

.button--quiet {
  color: var(--white);
  background: transparent;
  border-color: var(--line-light);
}

.button--quiet:hover {
  border-color: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--mint);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link--light {
  color: var(--white);
}

/* Age notice */
.age-gate {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  place-items: center;
  padding: 24px;
}

.age-unconfirmed .age-gate {
  display: grid;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 104, 70, 0.22), transparent 35%),
    radial-gradient(circle at 15% 90%, rgba(169, 244, 208, 0.11), transparent 33%),
    rgba(3, 10, 9, 0.93);
  backdrop-filter: blur(18px);
}

.age-gate__backdrop::after {
  content: "18";
  position: absolute;
  right: -0.06em;
  bottom: -0.34em;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(15rem, 43vw, 38rem);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
}

.age-gate__panel {
  position: relative;
  width: min(580px, 100%);
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background: rgba(9, 23, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.19);
  box-shadow: var(--shadow);
}

.age-gate__panel::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 90px;
  height: 6px;
  background: var(--coral);
}

.age-gate__brand {
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
}

.age-gate__brand span {
  color: var(--coral-deep);
}

.age-gate h2 {
  max-width: 450px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.age-gate__panel > p:not(.eyebrow, .age-gate__question, .microcopy, .noscript-note) {
  color: var(--muted-light);
}

.age-gate__question {
  margin: 30px 0 13px;
  font-weight: 800;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.microcopy {
  margin: 26px 0 0;
  color: var(--muted-light);
  font-size: 0.76rem;
  line-height: 1.55;
}

.microcopy a {
  color: var(--white);
}

.noscript-note {
  padding: 10px;
  color: var(--ink);
  background: var(--coral);
  font-size: 0.8rem;
}

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  color: var(--white);
  background: var(--ink);
}

.notice-bar {
  border-bottom: 1px solid var(--line-light);
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-bar p {
  margin: 0;
}

.notice-bar strong {
  margin-right: 7px;
  color: var(--coral);
}

.notice-bar__edition {
  color: var(--muted-light);
}

.live-dot,
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(169, 244, 208, 0.09);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: grid;
  grid-template-columns: 46px auto;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-items: center;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: transparent;
  background: transparent url("../icons/talandrixa-mark-96.png") center / cover no-repeat;
  border-radius: 4px;
  font-size: 0;
}

.brand__mark span {
  display: none;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.brand__descriptor {
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.masthead__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  place-items: center;
  height: 42px;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line-light);
  cursor: pointer;
}

.icon-button {
  width: 42px;
  padding: 0;
}

.icon-button:hover,
.menu-button:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.icon-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.menu-button {
  display: none;
  grid-template-columns: auto 16px;
  gap: 10px;
  width: auto;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-button i,
.menu-button i::before {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button i {
  position: relative;
}

.menu-button i::before {
  content: "";
  position: absolute;
  top: 5px;
}

.menu-open .menu-button i {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-button i::before {
  transform: translateY(-5px) rotate(90deg);
}

.primary-nav {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.primary-nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: 48px;
}

.primary-nav a {
  position: relative;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

/* Live editorial wire */
.newswire {
  position: relative;
  z-index: 25;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}

.newswire__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
}

.newswire p,
.newswire time {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.newswire__label {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 9px;
  padding-right: 22px;
  color: var(--white);
  background: var(--coral-deep);
}

.newswire__label::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - max(24px, (100vw - 1240px) / 2));
  bottom: 0;
  left: -100vw;
  z-index: -1;
  background: var(--coral-deep);
}

.newswire__label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: wire-pulse 1.8s ease-in-out infinite;
}

.newswire__items {
  display: flex;
  min-width: 0;
  overflow: hidden;
}

.newswire__items p {
  flex: 1 0 auto;
  padding-inline: 22px;
  white-space: nowrap;
}

.newswire__items p + p {
  border-left: 1px solid var(--line-dark);
}

.newswire__items strong {
  margin-right: 7px;
  color: var(--coral-deep);
}

.newswire time {
  padding-left: 20px;
  color: var(--muted-dark);
  border-left: 1px solid var(--line-dark);
}

@keyframes wire-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(790px, calc(100vh - 170px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  background: url("../images/global-casino-news-hero-v2.webp") 61% center / cover no-repeat;
  animation: hero-in 1200ms ease-out both;
}

.hero__wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 14, 12, 0.98) 0%, rgba(4, 14, 12, 0.88) 30%, rgba(4, 14, 12, 0.38) 61%, rgba(4, 14, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 14, 12, 0.82) 0%, transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-block: 90px 125px;
}

.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__meta time,
.hero__meta > span:not(.tag) {
  color: var(--muted-light);
}

.hero__meta time::before,
.hero__meta > span:not(.tag)::before {
  content: "·";
  margin-right: 13px;
  color: var(--coral);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero__dek {
  max-width: 660px;
  margin: 35px 0 38px;
  color: #d7dfdc;
  font-size: clamp(1.04rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.hero__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

/* Signal strip */
.signal-strip {
  color: var(--ink);
  background: var(--mint);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid rgba(7, 19, 17, 0.22);
}

.signal-grid article:first-child {
  border-left: 1px solid rgba(7, 19, 17, 0.22);
}

.signal-grid p {
  margin: 0;
  font-size: 0.77rem;
  line-height: 1.45;
}

.signal-grid__value {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1 !important;
}

/* Shared sections */
.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  color: var(--white);
  background: var(--ink);
}

.section--sand {
  background: var(--sand);
}

.section--coral {
  color: var(--ink);
  background: var(--coral);
}

.section--nz {
  background: var(--mint);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(50px, 7vw, 90px);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading--light {
  border-color: var(--line-light);
}

.section-heading .eyebrow {
  color: var(--coral-deep);
}

.section-heading--light .eyebrow {
  color: var(--mint);
}

.section-heading h2,
.regulation-title h2,
.nz-layout h2,
.standards-grid h2,
.help-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.section-heading__intro {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.section-heading--light .section-heading__intro {
  color: var(--muted-light);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 19px;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-meta span:first-child {
  color: var(--coral-deep);
}

.story-meta time,
.story-meta span:not(:first-child) {
  color: var(--muted-dark);
}

.section--ink .story-meta span:first-child {
  color: var(--mint);
}

.section--ink .story-meta span:not(:first-child) {
  color: var(--muted-light);
}

/* Latest */
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(300px, 0.8fr);
  gap: clamp(40px, 7vw, 100px);
}

.lead-story {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
}

.lead-story__index {
  padding-top: 4px;
  color: var(--coral-deep);
  border-top: 4px solid var(--coral);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lead-story h3 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.lead-story__dek {
  max-width: 800px;
  margin: 0 0 35px;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.story-columns {
  columns: 2;
  column-gap: 36px;
  max-width: 820px;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.story-columns p {
  break-inside: avoid;
  margin: 0 0 18px;
}

.source-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.dispatches {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line-dark);
}

.dispatch {
  flex: 1;
  padding: 27px 28px 30px;
  background: var(--paper-2);
}

.dispatch--accent {
  background: #ffd1c4;
}

.dispatch h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.dispatch > p {
  margin: 0 0 17px;
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.dispatch > a {
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 900;
}

.briefing-list {
  margin-top: clamp(70px, 10vw, 130px);
  border-top: 4px solid var(--ink);
}

.briefing-row {
  display: grid;
  grid-template-columns: 100px minmax(240px, 1.2fr) minmax(260px, 1fr) 28px;
  gap: 32px;
  align-items: start;
  padding-block: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.briefing-row__date {
  margin: 0;
  font-family: var(--mono);
  line-height: 1.2;
}

.briefing-row__date time {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.briefing-row__date span {
  color: var(--coral-deep);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.briefing-row h3,
.briefing-row > p:not(.briefing-row__date) {
  margin: 0;
}

.briefing-row h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.briefing-row > p:not(.briefing-row__date) {
  color: var(--muted-dark);
  font-size: 0.85rem;
}

.briefing-row > a {
  font-size: 1.2rem;
  text-decoration: none;
}

/* Technology */
.feature-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(380px, 0.78fr);
  align-items: start;
  gap: clamp(44px, 7vw, 90px);
}

.feature-visual figure,
.project-figure {
  margin: 0;
}

.feature-visual figure {
  position: sticky;
  top: 40px;
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.feature-visual figcaption,
.project-figure figcaption {
  padding-top: 10px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.45;
}

.feature-visual__copy h3 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.feature-visual__copy > p {
  color: var(--muted-light);
}

.number-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.number-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-block: 19px;
  border-bottom: 1px solid var(--line-light);
}

.number-list li > span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
}

.number-list strong {
  font-size: 0.9rem;
}

.number-list p {
  margin: 6px 0 0;
  color: var(--muted-light);
  font-size: 0.78rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.product-card {
  min-height: 350px;
  padding: 27px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.product-card__code {
  margin: 0 0 70px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
}

.product-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-card > p:not(.product-card__code, .product-card__signal) {
  color: var(--muted-light);
  font-size: 0.82rem;
}

.product-card__signal,
.product-card a {
  display: block;
  margin-top: 25px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Trends */
.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.trend-card {
  position: relative;
  min-height: 420px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 180ms ease;
}

.trend-card:hover {
  background: var(--white);
}

.trend-card__number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(7, 19, 17, 0.1);
  font-family: var(--serif);
  font-size: 5.7rem;
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
}

.trend-card__label {
  position: relative;
  z-index: 1;
  margin: 0 0 65px;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trend-card h3 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.trend-card > p:not(.trend-card__label) {
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.trend-card__meter {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.trend-card__meter::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--line-dark);
}

.trend-card__meter i {
  display: block;
  width: var(--level);
  height: 3px;
  margin-top: -3px;
  background: var(--coral);
}

.trend-card__meter span {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

/* Projects */
.project-figure {
  position: relative;
}

.project-figure::before {
  content: "WORLD / INFRASTRUCTURE WIRE";
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.project-figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.project-figure figcaption {
  color: #665e52;
}

.project-table {
  margin-top: 65px;
  border-top: 4px solid var(--ink);
}

.project-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(180px, 0.6fr) minmax(300px, 1.2fr) 100px;
  gap: 32px;
  align-items: start;
  padding-block: 34px;
  border-bottom: 1px solid rgba(7, 19, 17, 0.25);
}

.project-row__place {
  display: flex;
  gap: 18px;
}

.project-row__place > span {
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
}

.project-row p,
.project-row h3 {
  margin: 0;
}

.project-row__place p,
.table-label {
  margin-bottom: 7px !important;
  font-family: var(--mono);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-row h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.project-row > div:not(.project-row__place) p:last-child {
  font-size: 0.83rem;
}

.project-row > a {
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-note {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 25px;
  margin-top: 55px;
  padding: 25px;
  background: rgba(255, 253, 247, 0.48);
}

.project-note p {
  margin: 0;
  font-size: 0.78rem;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.timeline-item {
  min-height: 510px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.timeline-item--next {
  background: var(--ink);
  color: var(--white);
}

.timeline-item__date {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 175px;
  padding: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.timeline-item--next .timeline-item__date {
  border-color: var(--line-light);
}

.timeline-item__date span {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.timeline-item__date strong {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.timeline-item__body {
  padding: 29px;
}

.timeline-item__body h3 {
  margin: 24px 0 4px;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.timeline-item__body > p:not(.tag, .timeline-item__take) {
  margin: 0;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-item--next .timeline-item__body > p:not(.tag, .timeline-item__take) {
  color: var(--mint);
}

.timeline-item__take {
  margin: 32px 0 20px;
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.timeline-item--next .timeline-item__take {
  color: var(--muted-light);
}

.timeline-item__body a {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Regulation */
.regulation-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 130px);
}

.regulation-title {
  position: sticky;
  top: 40px;
  align-self: start;
}

.regulation-title h2 {
  max-width: 520px;
}

.regulation-title > p:last-child {
  max-width: 500px;
  margin: 35px 0 0;
}

.regulation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(7, 19, 17, 0.28);
  border-left: 1px solid rgba(7, 19, 17, 0.28);
}

.regulation-card {
  min-height: 330px;
  padding: 27px;
  border-right: 1px solid rgba(7, 19, 17, 0.28);
  border-bottom: 1px solid rgba(7, 19, 17, 0.28);
}

.regulation-card span {
  display: block;
  margin-bottom: 80px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
}

.regulation-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.regulation-card p {
  margin: 0;
  font-size: 0.82rem;
}

/* New Zealand */
.nz-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 130px);
}

.nz-layout h2 {
  max-width: 540px;
}

.large-copy {
  max-width: 560px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.4;
}

.nz-roadmap {
  border-top: 4px solid var(--ink);
}

.nz-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) 1.25fr;
  gap: 30px;
  padding: 26px 0 26px 30px;
  border-bottom: 1px solid rgba(7, 19, 17, 0.28);
}

.nz-step::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.nz-step--done::before {
  background: var(--ink);
}

.nz-step--current::before {
  border-color: var(--coral-deep);
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 104, 70, 0.2);
}

.nz-step p {
  margin: 0;
  font-size: 0.82rem;
}

.nz-step p:first-child span,
.nz-step p:first-child strong {
  display: block;
}

.nz-step p:first-child span {
  margin-bottom: 5px;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reader-note {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 55px;
  margin-top: 90px;
  padding: 33px;
  color: var(--white);
  background: var(--ink);
}

.reader-note > div {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.reader-note__icon {
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.reader-note h3,
.reader-note p {
  margin: 0;
}

.reader-note h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.reader-note > p {
  color: var(--muted-light);
  font-size: 0.82rem;
}

/* Methodology */
.standards-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.standards-grid > div:first-child {
  position: sticky;
  top: 40px;
  align-self: start;
}

.standards-copy {
  border-top: 4px solid var(--ink);
}

.standards-copy article {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  gap: 35px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.standards-copy h3,
.standards-copy p {
  margin: 0;
}

.standards-copy h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.standards-copy p {
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.standards-copy p + p {
  grid-column: 2;
}

/* Help & footer */
.help-band {
  padding-block: 70px;
  color: var(--white);
  background: var(--coral-deep);
}

.help-band__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr auto;
  align-items: end;
  gap: 45px;
}

.help-band h2 {
  max-width: 650px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.help-band__inner > p {
  margin: 0;
  color: #ffd9cd;
  font-size: 0.9rem;
}

.help-band__actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.site-footer {
  padding-block: 80px 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) repeat(3, 0.7fr);
  gap: 60px;
}

.brand--footer {
  grid-template-columns: 40px auto;
}

.brand--footer .brand__mark {
  width: 40px;
  height: 40px;
}

.footer-about {
  max-width: 450px;
  margin: 28px 0 0;
  color: var(--muted-light);
  font-size: 0.83rem;
}

.footer-title {
  margin: 0 0 20px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-status > p:not(.footer-title, .age-stamp) {
  display: block;
  margin: 0 0 11px;
  color: var(--muted-light);
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--white);
  text-decoration: underline;
}

.age-stamp {
  margin: 30px 0 0;
  color: var(--mint);
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  margin-top: 80px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Search */
.search-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: rgba(4, 14, 12, 0.96);
  border: 0;
}

.search-dialog::backdrop {
  background: rgba(4, 14, 12, 0.8);
  backdrop-filter: blur(8px);
}

.search-dialog__panel {
  width: min(850px, calc(100% - 48px));
  margin: 8vh auto;
}

.search-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 45px;
}

.search-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.search-dialog label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-dialog input {
  width: 100%;
  padding: 16px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--white);
  border-radius: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.search-dialog input::placeholder {
  color: #6d7c77;
}

.search-dialog input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}

.search-count {
  margin: 13px 0 30px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.search-results {
  display: grid;
  gap: 1px;
  max-height: 45vh;
  overflow: auto;
  background: var(--line-light);
}

.search-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 17px 19px;
  background: var(--ink-soft);
  text-decoration: none;
}

.search-result:hover {
  color: var(--ink);
  background: var(--mint);
}

.search-result strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.search-result span {
  font-family: var(--mono);
  font-size: 0.63rem;
}

.search-empty {
  padding: 30px;
  color: var(--muted-light);
  background: var(--ink-soft);
}

/* Light colour preference: the reading surface stays warm; dark sections become deep slate. */
html[data-theme="light"] .hero__wash {
  background:
    linear-gradient(90deg, rgba(4, 14, 12, 0.94) 0%, rgba(4, 14, 12, 0.8) 30%, rgba(4, 14, 12, 0.3) 66%, rgba(4, 14, 12, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 14, 12, 0.72), transparent 45%);
}

html[data-theme="light"] .section--paper {
  background: #fbfaf6;
}

html[data-theme="light"] .dispatch {
  background: #eeeae1;
}

html[data-theme="light"] .dispatch--accent {
  background: #ffd4c8;
}

/* Responsive */
@media (max-width: 1100px) {
  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid article:nth-child(3) {
    border-left: 1px solid rgba(7, 19, 17, 0.22);
  }

  .lead-grid,
  .feature-visual {
    grid-template-columns: 1fr;
  }

  .dispatches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-visual figure,
  .regulation-title,
  .standards-grid > div:first-child {
    position: static;
  }

  .feature-visual img {
    aspect-ratio: 16 / 9;
  }

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

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

  .project-row {
    grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.7fr) minmax(280px, 1.2fr);
  }

  .project-row > a {
    grid-column: 3;
  }

  .help-band__inner {
    grid-template-columns: 1fr 1fr;
  }

  .help-band__actions {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.7fr);
  }

  .footer-status {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  html {
    scroll-padding-top: 90px;
  }

  .notice-bar__edition,
  .brand__descriptor,
  .masthead__actions > .icon-button:nth-child(2) {
    display: none;
  }

  .masthead {
    min-height: 74px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand {
    grid-template-columns: 40px auto;
  }

  .brand__name {
    font-size: 1.5rem;
  }

  .menu-button {
    display: inline-grid;
  }

  .primary-nav {
    visibility: hidden;
    position: fixed;
    z-index: 20;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgba(7, 19, 17, 0.98);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .menu-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 19px;
    min-height: 100%;
    padding-bottom: 80px;
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: none;
  }

  .primary-nav a::after {
    bottom: -5px;
  }

  .newswire__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .newswire__items p {
    display: none;
  }

  .newswire__items p:first-child {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    background-position: 68% center;
  }

  .hero__wash {
    background: linear-gradient(90deg, rgba(4, 14, 12, 0.96), rgba(4, 14, 12, 0.65)), linear-gradient(0deg, rgba(4, 14, 12, 0.9), transparent 60%);
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(3.6rem, 14vw, 6rem);
  }

  .section-heading,
  .regulation-layout,
  .nz-layout,
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading__intro {
    max-width: 560px;
  }

  .lead-story {
    grid-template-columns: 1fr;
  }

  .lead-story__index {
    width: 90px;
  }

  .dispatches,
  .timeline {
    grid-template-columns: 1fr;
  }

  .briefing-row {
    grid-template-columns: 70px 1fr 25px;
  }

  .briefing-row > p:not(.briefing-row__date) {
    grid-column: 2 / 4;
  }

  .briefing-row > a {
    grid-column: 3;
    grid-row: 1;
  }

  .trend-card {
    min-height: 430px;
  }

  .project-row {
    grid-template-columns: 1fr 1fr;
  }

  .project-row > div:nth-child(3) {
    grid-column: 1 / 3;
  }

  .project-row > a {
    grid-column: 1 / 3;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 360px;
  }

  .timeline-item__date {
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item__date strong {
    font-size: 4.5rem;
  }

  .reader-note {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .help-band__inner {
    grid-template-columns: 1fr;
  }

  .help-band__actions {
    grid-column: auto;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-status {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom p:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 24px);
  }

  body {
    font-size: 15px;
  }

  .notice-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .masthead__actions {
    gap: 5px;
  }

  .icon-button {
    width: 40px;
  }

  .primary-nav {
    top: 108px;
  }

  .newswire__label {
    padding-right: 12px;
  }

  .newswire__items p:first-child {
    padding-inline: 12px;
  }

  .newswire time {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-block: 90px 100px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .hero__meta > span:not(.tag) {
    display: none;
  }

  .hero__dek {
    margin-block: 25px 28px;
    font-size: 0.96rem;
  }

  .hero__caption span:last-child {
    display: none;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid article,
  .signal-grid article:nth-child(3) {
    min-height: 94px;
    border-right: 1px solid rgba(7, 19, 17, 0.22);
    border-bottom: 1px solid rgba(7, 19, 17, 0.22);
    border-left: 1px solid rgba(7, 19, 17, 0.22);
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .regulation-title h2,
  .nz-layout h2,
  .standards-grid h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .story-columns {
    columns: 1;
  }

  .dispatches {
    display: flex;
  }

  .briefing-row {
    grid-template-columns: 60px 1fr 22px;
    gap: 16px;
  }

  .briefing-row h3 {
    font-size: 1.38rem;
  }

  .feature-visual img {
    aspect-ratio: 4 / 3;
  }

  .product-grid,
  .trend-grid,
  .regulation-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 310px;
  }

  .product-card__code,
  .trend-card__label,
  .regulation-card span {
    margin-bottom: 50px;
  }

  .trend-card {
    min-height: 390px;
  }

  .project-figure img {
    min-height: 390px;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-row > div:nth-child(3),
  .project-row > a {
    grid-column: auto;
  }

  .project-note,
  .nz-step,
  .standards-copy article {
    grid-template-columns: 1fr;
  }

  .standards-copy p + p {
    grid-column: auto;
  }

  .timeline-item {
    display: block;
  }

  .timeline-item__date {
    min-height: 155px;
    flex-direction: row;
    align-items: flex-end;
  }

  .reader-note {
    padding: 25px;
  }

  .help-band__actions {
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid > div:first-child,
  .footer-status {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom p:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .age-gate {
    padding: 12px;
  }

  .age-gate__panel {
    padding: 26px 22px;
  }

  .age-gate__brand {
    margin-bottom: 24px;
  }

  .age-gate__actions {
    display: grid;
  }

  .search-dialog__panel {
    width: calc(100% - 24px);
    margin-top: 4vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .age-gate,
  .site-header,
  .hero__image,
  .hero__wash,
  .help-band,
  .site-footer,
  .search-dialog,
  .button {
    display: none !important;
  }

  .hero,
  .section--ink,
  .section--coral {
    min-height: 0;
    color: #000;
    background: #fff;
  }

  .hero__content {
    min-height: 0;
    padding-block: 50px;
  }

  a {
    color: #000;
  }
}

/* Standalone newsroom articles */
.article-page {
  background: var(--paper);
}

.article-page .site-header {
  position: relative;
}

.article-hero {
  padding: clamp(54px, 8vw, 112px) 0 clamp(42px, 6vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(169, 244, 208, 0.12), transparent 28%),
    linear-gradient(135deg, var(--ink), #0b211b);
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 44px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-breadcrumbs a {
  color: var(--mint);
  text-decoration: none;
}

.article-hero__category {
  margin: 0 0 20px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7.1vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.article-hero__dek {
  max-width: 800px;
  margin: 30px 0 0;
  color: #c9d4d0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 38px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-byline strong {
  color: var(--white);
}

.article-visual {
  margin: 0;
  color: var(--muted-light);
  background: var(--ink);
}

.article-visual img {
  display: block;
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.article-visual figcaption {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 20px;
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.55;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(48px, 8vw, 118px);
  padding-block: clamp(66px, 9vw, 130px);
}

.article-aside {
  position: sticky;
  top: 28px;
  align-self: start;
  padding-top: 18px;
  border-top: 4px solid var(--ink);
}

.article-aside > p:first-child {
  margin: 0 0 17px;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-aside li {
  padding: 13px 0;
  color: #46534f;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.45;
}

.article-content {
  min-width: 0;
  max-width: 820px;
}

.article-content > p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.25vw, 1.85rem);
  line-height: 1.42;
}

.article-content h2 {
  margin: 58px 0 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.article-content h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.1;
}

.article-content p,
.article-content li {
  color: #46534f;
  font-size: 0.96rem;
  line-height: 1.75;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content ul {
  margin: 22px 0 28px;
  padding-left: 1.25rem;
}

.article-content li {
  margin-bottom: 11px;
  padding-left: 6px;
}

.article-callout {
  margin: 40px 0;
  padding: 28px 30px;
  color: var(--ink);
  background: var(--mint);
  border-left: 6px solid var(--coral-deep);
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-callout p {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
}

.article-sources {
  margin-top: 58px;
  padding: 28px;
  background: var(--paper-2);
  border-top: 4px solid var(--ink);
}

.article-sources h2 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-sources a {
  color: var(--coral-deep);
  font-weight: 800;
}

.article-disclaimer {
  margin-top: 30px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.65;
}

.article-more {
  padding-block: clamp(65px, 8vw, 105px);
  color: var(--white);
  background: var(--ink);
}

.article-more__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.article-more h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.article-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.article-more__card {
  min-height: 200px;
  padding: 24px;
  color: var(--white);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.article-more__card:hover {
  color: var(--ink);
  background: var(--mint);
}

.article-more__card span {
  display: block;
  margin-bottom: 54px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-more__card strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.08;
}

.story-title-link,
.project-title-link {
  color: inherit;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

.story-title-link:hover,
.project-title-link:hover {
  text-decoration-color: var(--coral-deep);
}

@media (max-width: 900px) {
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .article-aside ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }
}

@media (max-width: 680px) {
  .article-breadcrumbs {
    margin-bottom: 30px;
  }

  .article-aside ul,
  .article-more__grid {
    grid-template-columns: 1fr;
  }

  .article-more__head {
    display: block;
  }

  .article-more__head .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .article-more__card {
    min-height: 160px;
  }

  .article-more__card span {
    margin-bottom: 32px;
  }
}

/* Legal and reader-policy pages */
.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: relative;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(75px, 10vw, 140px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 104, 70, 0.2), transparent 27%),
    linear-gradient(135deg, var(--ink) 0%, #0c201b 100%);
}

.legal-hero::after {
  content: attr(data-code);
  position: absolute;
  right: -0.03em;
  bottom: -0.29em;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(16rem, 38vw, 34rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
}

.legal-hero__content {
  position: relative;
  z-index: 1;
}

.legal-hero .eyebrow {
  color: var(--mint);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.legal-hero__dek {
  max-width: 720px;
  margin: 34px 0 0;
  color: #cad5d1;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.6;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  color: var(--muted-light);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-hero__meta span + span::before {
  content: "·";
  margin-right: 18px;
  color: var(--coral);
}

.legal-summary {
  color: var(--ink);
  background: var(--mint);
}

.legal-summary__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: start;
  padding-block: 32px;
}

.legal-summary h2,
.legal-summary p {
  margin: 0;
}

.legal-summary h2 {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-summary p {
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.4;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(55px, 9vw, 130px);
  padding-block: clamp(75px, 10vw, 145px);
}

.legal-toc {
  position: sticky;
  top: 30px;
  align-self: start;
  padding-top: 18px;
  border-top: 4px solid var(--ink);
}

.legal-toc > p {
  margin: 0 0 20px;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
}

.legal-toc a {
  padding: 10px 0;
  color: var(--muted-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--coral-deep);
}

.legal-toc__back {
  display: inline-block;
  margin-top: 28px;
  color: var(--ink) !important;
  border: 0 !important;
  font-family: var(--mono);
  font-size: 0.63rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-content {
  width: 100%;
  min-width: 0;
  max-width: 830px;
}

.legal-content > section {
  scroll-margin-top: 30px;
  padding: 0 0 55px;
  margin: 0 0 55px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-content > section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legal-content h3 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.legal-content h4 {
  margin: 28px 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li,
.legal-content dd {
  color: #46534f;
  font-size: 0.93rem;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0 25px;
  padding-left: 1.35rem;
}

.legal-content li {
  margin-bottom: 10px;
  padding-left: 7px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--coral-deep);
  font-weight: 700;
}

.legal-content address {
  padding: 22px;
  background: var(--paper-2);
  font-style: normal;
}

.legal-callout {
  margin: 30px 0;
  padding: 25px 27px;
  color: var(--white);
  background: var(--ink);
  border-left: 5px solid var(--coral);
}

.legal-callout--mint {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--coral-deep);
}

.legal-callout--urgent {
  background: var(--coral-deep);
  border-color: var(--white);
}

.legal-callout h3 {
  margin-top: 0;
  color: inherit;
}

.legal-callout p,
.legal-callout li,
.legal-callout strong,
.legal-callout a {
  color: inherit;
}

.legal-callout p:last-child,
.legal-callout ul:last-child {
  margin-bottom: 0;
}

.legal-definition {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  margin: 25px 0;
  border-top: 1px solid var(--line-dark);
}

.legal-definition dt,
.legal-definition dd {
  margin: 0;
  padding-block: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-definition dt {
  padding-right: 25px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 15px;
  border: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-table td {
  color: #46534f;
  font-size: 0.8rem;
}

.policy-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.policy-facts > div {
  min-height: 155px;
  padding: 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.policy-facts span {
  display: block;
  margin-bottom: 24px;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-facts strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.15;
}

.legal-crosslinks {
  padding-block: clamp(70px, 9vw, 120px);
  color: var(--white);
  background: var(--ink);
}

.legal-crosslinks__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 45px;
}

.legal-crosslinks h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.legal-card {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.legal-card:hover {
  color: var(--ink);
  background: var(--mint);
}

.legal-card[aria-current="page"] {
  color: var(--ink);
  background: var(--coral);
}

.legal-card span {
  display: block;
  margin-bottom: 60px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
}

.legal-card:hover span,
.legal-card[aria-current="page"] span {
  color: var(--coral-deep);
}

.legal-card strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.legal-source-note {
  margin-top: 28px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 0.62rem !important;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
  }

  .legal-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .legal-summary__grid,
  .legal-definition {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .legal-toc nav,
  .policy-facts,
  .legal-card-grid {
    grid-template-columns: 1fr;
  }

  .legal-toc a {
    padding-block: 12px;
  }

  .legal-definition dt {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .legal-definition dd {
    padding-top: 0;
  }

  .legal-crosslinks__head {
    display: block;
  }

  .legal-card {
    min-height: 170px;
  }

  .legal-card span {
    margin-bottom: 35px;
  }
}

@media print {
  .legal-hero {
    padding-block: 35px;
    color: #000;
    background: #fff;
  }

  .legal-hero::after,
  .legal-summary,
  .legal-toc,
  .legal-crosslinks {
    display: none;
  }

  .legal-shell {
    display: block;
    width: 100%;
    padding-block: 20px;
  }

  .legal-content {
    max-width: none;
  }
}
