/* nilvado -- The Brief
   Drafting-office system. Cream paper, ink, one blueprint accent.
   Handwritten CSS. No framework. Radius 0 everywhere, deliberately. */

:root {
  /* Ink and paper */
  --paper: #fbfaf7;
  --paper-deep: #f2efe8;
  --ink: #14140f;
  --ink-soft: #4a4a41;
  --ink-faint: #6b6b61;
  --rule: #d8d4c8;
  --rule-hard: #14140f;

  /* One accent: blueprint blue. Used for nothing decorative. */
  --blue: #0f4c81;
  --blue-wash: #e7eff7;

  --font-sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Archivo Narrow", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --pad: clamp(18px, 5vw, 84px);
  --rhythm: clamp(56px, 8vw, 118px);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 100; font-size: 14px;
}
.skip:focus { left: 0; }

/* ---------- Masthead: a title block, not a navbar ---------- */

.masthead {
  border-bottom: 1px solid var(--rule-hard);
  padding: 0 var(--pad);
  background: var(--paper);
  position: sticky; top: 0; z-index: 40;
}
.masthead-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 62px;
}
.wordmark {
  font-family: var(--font-mono);
  font-weight: 700; font-size: 19px; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
}
.wordmark svg { width: 17px; height: 17px; flex: none; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--rule-hard);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 9px 13px; cursor: pointer;
  color: var(--ink);
}
.nav-toggle:hover { background: var(--ink); color: var(--paper); }

.nav {
  display: none;
  padding: 6px 0 20px;
  border-top: 1px solid var(--rule);
}
.nav.is-open { display: block; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav li { border-bottom: 1px solid var(--rule); }
.nav a {
  display: block; padding: 13px 2px; text-decoration: none;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.09em; text-transform: uppercase;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav {
    display: block; border-top: 0; padding: 0;
  }
  .nav ul { display: flex; gap: clamp(14px, 1.9vw, 30px); }
  .nav li { border-bottom: 0; }
  .nav a { padding: 0; font-size: 12px; }
}

/* ---------- Generic section frame ---------- */

.band { padding-inline: var(--pad); }
.band-rule { border-top: 1px solid var(--rule-hard); }
.band-hair { border-top: 1px solid var(--rule); }
.band-y { padding-block: var(--rhythm); }
.band-deep { background: var(--paper-deep); }

.sheet-label,
.field-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.19em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0;
}

h1, h2, h3 { font-weight: 600; letter-spacing: -0.022em; margin: 0; }

h1 {
  font-size: clamp(38px, 6.6vw, 88px);
  line-height: 0.98; letter-spacing: -0.035em; font-weight: 700;
}
h2 {
  font-size: clamp(27px, 3.5vw, 45px);
  line-height: 1.06;
}
h3 { font-size: clamp(20px, 1.9vw, 25px); line-height: 1.2; }

p { margin: 0 0 1.05em; }
.measure { max-width: 66ch; }
.measure-tight { max-width: 52ch; }
.lede {
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.52; color: var(--ink-soft);
}

/* ---------- Hero: a drawing sheet title block ---------- */

.hero { padding-inline: var(--pad); padding-block: clamp(38px, 5.5vw, 76px) 0; }
.hero-grid { display: grid; gap: clamp(26px, 3.4vw, 46px); }

@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.35fr 1fr; align-items: end; }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .blue { color: var(--blue); }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px;
}
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 13px 20px; border: 1px solid var(--rule-hard);
  background: var(--paper); color: var(--ink);
  transition: background 160ms ease, color 160ms ease, transform 90ms ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.trust-line {
  margin-top: 26px; padding-top: 13px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 12px;
  line-height: 1.6; color: var(--ink-soft); max-width: 46ch;
}

/* Hero side: the section diagram */
.hero-figure { border: 1px solid var(--rule-hard); background: var(--paper); }
.hero-figure svg { width: 100%; height: auto; display: block; }
.figure-caption {
  border-top: 1px solid var(--rule-hard);
  padding: 9px 13px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.05em; color: var(--ink-soft);
}

.hero-plate { margin: clamp(36px, 5vw, 62px) 0 0; }
.hero-plate img { width: 100%; }
.plate-credit {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-faint); padding-top: 8px; margin: 0;
}

/* ---------- Editor block ---------- */

.editor-grid { display: grid; gap: clamp(22px, 3vw, 54px); }
@media (min-width: 900px) {
  .editor-grid { grid-template-columns: 260px 1fr; }
}
.editor-aside { border-top: 2px solid var(--rule-hard); padding-top: 14px; }
.editor-aside dl { margin: 14px 0 0; font-family: var(--font-mono); font-size: 12px; }
.editor-aside dt { color: var(--ink-faint); letter-spacing: 0.1em; text-transform: uppercase; font-size: 10px; }
.editor-aside dd { margin: 2px 0 12px; }

.caveat {
  border-left: 2px solid var(--blue);
  padding: 2px 0 2px 16px;
  color: var(--ink-soft);
}

/* ---------- Method: numbered criteria, uneven by design ---------- */

.method-list { list-style: none; margin: 0; padding: 0; }
.method-list > li {
  display: grid; gap: 4px 22px;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .method-list > li { grid-template-columns: 92px 1fr; }
}
.method-list > li:first-child { border-top: 1px solid var(--rule-hard); }
.method-key {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
}
.method-list h3 { margin-bottom: 4px; }
.method-list p { margin: 0; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Sheets ---------- */

.sheet {
  border-top: 1px solid var(--rule-hard);
  padding-block: clamp(40px, 5.5vw, 78px);
}
.sheet-head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 8px 18px; margin-bottom: 22px;
}
.sheet-no {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 12px; letter-spacing: 0.2em; color: var(--blue);
}
.sheet-loc {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
  margin-left: auto;
}
.sheet h2 { margin-bottom: 10px; }
.sheet-sub {
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--ink-soft); margin-bottom: 26px;
}

/* Sheet body: alternating column weight, set per-sheet with a modifier */
.sheet-body { display: grid; gap: clamp(24px, 3vw, 46px); }
@media (min-width: 1000px) {
  .sheet-body { grid-template-columns: 1.5fr 1fr; }
  .sheet--flip .sheet-body { grid-template-columns: 1fr 1.5fr; }
  .sheet--flip .sheet-visual { order: -1; }
  .sheet--wide .sheet-body { grid-template-columns: 1fr; }
}

.sheet-visual figure { margin: 0; }
.sheet-visual img { width: 100%; border: 1px solid var(--rule-hard); }
.sheet-visual figcaption {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-faint); padding-top: 8px; line-height: 1.45;
}

.diagram {
  border: 1px solid var(--rule-hard);
  margin-top: 18px;
}
.diagram svg { width: 100%; height: auto; display: block; }

/* Drafting grid. Sits under the schematics only, never under photographs or
   prose: it is the paper the section is drawn on, not a page decoration. */
.diagram, .hero-figure {
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, rgba(20, 20, 15, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 20, 15, 0.055) 1px, transparent 1px);
  background-size: 17px 17px;
  background-position: -1px -1px;
}

/* Dimension callout: a leader pinned under a plate. Carries the number the
   photograph above it is evidence for. Never used for a caption. */
.dim {
  display: flex; align-items: center; gap: 9px;
  margin-top: 11px; padding-top: 9px;
  border-top: 1px solid var(--blue);
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--blue); line-height: 1.35;
}
.dim::before {
  content: ""; flex: none; width: 8px; height: 8px;
  border-left: 1px solid var(--blue); border-bottom: 1px solid var(--blue);
  transform: translateY(-1px);
}
.dim b { font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: 0.03em; }

/* A plate set in the text column, where its argument is. Deliberately not the
   same object as .sheet-visual figure: different column, different job. */
.plate { margin: 24px 0 0; }
.plate img { width: 100%; border: 1px solid var(--rule-hard); }
.plate figcaption {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-faint); padding-top: 8px; line-height: 1.45;
  max-width: 74ch;
}

/* Structure score: a number, not a progress bar */
.score {
  display: flex; align-items: baseline; gap: 10px;
  border-top: 2px solid var(--rule-hard); margin-top: 26px; padding-top: 12px;
}
.score-num {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 34px; letter-spacing: -0.02em; line-height: 1;
}
.score-of { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); }
.score-why { font-size: 14.5px; color: var(--ink-soft); margin: 0; max-width: 54ch; }

/* Honest note: the site's spine */
.note {
  background: var(--blue-wash);
  border-left: 3px solid var(--blue);
  padding: 16px 18px; margin: 22px 0 0;
}
.note p { margin: 0; font-size: 15.5px; }
.note .note-key {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.19em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}

/* Facts: paired rows, grouped, sparse rules */
.facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
  margin: 24px 0;
}
@media (min-width: 700px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts > div { background: var(--paper); padding: 13px 14px; }
.facts dt {
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-faint);
}
.facts dd {
  margin: 5px 0 0; font-family: var(--font-mono);
  font-size: 15px; font-weight: 600; line-height: 1.3;
}
.facts dd small { display: block; font-weight: 400; font-size: 11px; color: var(--ink-faint); letter-spacing: 0; }

.sheet-actions { margin-top: 24px; }

/* ---------- Spec table (dataviz core) ---------- */

.spec-scroll { overflow-x: auto; margin-top: 30px; -webkit-overflow-scrolling: touch; }
.spec {
  width: 100%; border-collapse: collapse; min-width: 780px;
  font-family: var(--font-mono); font-size: 13px;
}
.spec caption {
  text-align: left; font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-faint); padding-bottom: 12px; letter-spacing: 0.04em;
}
.spec th, .spec td {
  text-align: left; padding: 12px 14px 12px 0; vertical-align: top;
}
.spec thead th {
  border-bottom: 1px solid var(--rule-hard);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-faint); white-space: nowrap;
}
.spec tbody th {
  font-weight: 600; font-size: 13.5px; white-space: nowrap;
  font-family: var(--font-sans); letter-spacing: -0.01em;
}
.spec tbody tr + tr th, .spec tbody tr + tr td { border-top: 1px solid var(--rule); }
.spec .num { font-variant-numeric: tabular-nums; }
.spec .levy-yes { color: var(--blue); font-weight: 600; }

/* The gaps are the finding, so they are drawn rather than left blank.
   Hatching is what a drawing uses for "not in this contract": the cell is
   deliberately empty and we are saying so, not failing to fill it. */
.spec .nil {
  color: var(--ink-faint);
  padding-right: 14px;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 5px,
    rgba(20, 20, 15, 0.06) 5px 6px
  );
}
.spec .nil em {
  font-style: normal; font-size: 10px; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--ink-faint);
  display: block; border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 3px; margin-bottom: 4px; width: fit-content;
}

/* Room-count bars. No background tracks: the bar is the data. */
.counts { margin-top: 42px; }
.counts ol { list-style: none; margin: 18px 0 0; padding: 0; }
.counts li {
  display: grid; grid-template-columns: 116px 1fr auto;
  align-items: center; gap: 12px; padding: 7px 0;
  font-family: var(--font-mono); font-size: 12px;
}
.counts .bar-name { color: var(--ink-soft); }
.counts .bar {
  height: 9px; background: var(--ink); display: block;
}
.counts li.is-tallest .bar { background: var(--blue); }
.counts .bar-val { font-variant-numeric: tabular-nums; font-weight: 600; }

/* Resorts World Sentosa gets no bar, because there is no honest length to draw.
   The dashed track is the point: it holds the space a bar would occupy so the
   absence is visible at the same scale as the data, instead of the row quietly
   collapsing and reading as a small number. */
.counts li.is-void .bar-name { color: var(--ink-faint); }
.counts .bar-void {
  display: block; height: 9px;
  border: 1px dashed var(--ink-faint);
  background: transparent;
}
.counts li.is-void .bar-val { color: var(--ink-faint); }
.counts .void-why {
  grid-column: 2 / -1;
  font-size: 11px; color: var(--ink-faint); font-style: normal;
  line-height: 1.5; margin-top: 5px; max-width: 58ch;
}
.counts-foot {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint);
  margin-top: 14px; max-width: 62ch; line-height: 1.55;
}

/* ---------- Best drawn: one pick, argued ---------- */

.pick-grid { display: grid; gap: clamp(20px, 3vw, 44px); }
@media (min-width: 900px) { .pick-grid { grid-template-columns: 1fr 1fr; } }
.pick-main h2 { margin-bottom: 14px; }
.pick-runner {
  border-top: 1px solid var(--rule); padding-top: 16px; margin-top: 20px;
}
.pick-runner h3 { font-size: 17px; margin-bottom: 5px; }
.pick-runner p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Redlines: margin notes ---------- */

.redlines { display: grid; gap: 0; margin-top: 26px; counter-reset: rev; }
.redline {
  display: grid; gap: 6px 24px;
  padding: 20px 0; border-top: 1px solid var(--rule);
  counter-increment: rev;
}
@media (min-width: 800px) { .redline { grid-template-columns: 150px 1fr; } }
.redline:first-child { border-top: 1px solid var(--rule-hard); }
.redline-tag {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 9px;
}
/* Revision triangle, numbered in sequence. This is how a correction is marked
   on a real sheet, and the number is the running count of things we have had
   to fix in print. */
.redline-tag::before {
  content: counter(rev);
  flex: none;
  width: 19px; height: 16px;
  display: inline-flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1px;
  background: var(--blue); color: var(--paper);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  font-size: 8.5px; font-weight: 700; letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.redline p { margin: 0; color: var(--ink-soft); max-width: 68ch; }

/* ---------- FAQ ---------- */

.faq { margin-top: 24px; border-top: 1px solid var(--rule-hard); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; padding: 18px 34px 18px 0; position: relative;
  font-weight: 600; font-size: clamp(16px, 1.5vw, 18.5px);
  letter-spacing: -0.01em; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
/* The marker swaps glyph, so there is nothing for a transform transition to
   interpolate. Colour is the only honest thing to animate here. */
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 16px;
  font-family: var(--font-mono); font-size: 20px; color: var(--blue);
  line-height: 1; transition: color 160ms ease;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--blue); }
.faq summary:hover::after { color: var(--ink); }
.faq .faq-body { padding: 0 0 20px; }
.faq .faq-body p { margin: 0 0 0.8em; color: var(--ink-soft); max-width: 68ch; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Form ---------- */

.form-grid { display: grid; gap: clamp(24px, 3vw, 52px); }
@media (min-width: 900px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.field input[type="text"], .field input[type="email"] {
  width: 100%; padding: 12px 13px;
  border: 1px solid var(--ink-soft); border-radius: 0;
  background: #fff; color: var(--ink);
  font-family: var(--font-sans); font-size: 16px;
}
.field input:focus { border-color: var(--blue); outline: 2px solid var(--blue); outline-offset: 1px; }
.field .hint { font-size: 12.5px; color: var(--ink-soft); margin: 6px 0 0; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0; }
.consent input { margin-top: 4px; width: 17px; height: 17px; flex: none; accent-color: var(--blue); }
.consent label {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
  font-family: var(--font-sans); text-transform: none; letter-spacing: 0;
}

.success {
  display: none; border: 1px solid var(--blue); background: var(--blue-wash);
  padding: 14px 16px; margin-top: 18px; font-size: 15px;
}
.success.is-visible { display: block; }

.push-legal {
  border-top: 1px solid var(--rule); margin-top: 26px; padding-top: 16px;
  font-size: 13px; line-height: 1.62; color: var(--ink-soft);
}
.push-legal h3 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px;
}
.push-legal p { margin: 0 0 0.7em; }
.push-legal a { color: var(--blue); }

/* ---------- Legal / prose pages ---------- */

.prose h2 { margin: 44px 0 12px; font-size: clamp(21px, 2.2vw, 28px); }
.prose h3 { margin: 26px 0 8px; font-size: 18px; }
.prose p, .prose li { color: var(--ink-soft); max-width: 72ch; }
.prose ul { padding-left: 20px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--blue); }
.prose .updated {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint);
  letter-spacing: 0.06em;
}

.callout {
  border: 1px solid var(--rule-hard); padding: 18px 20px; margin: 26px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--ink); }

.helpline {
  border-top: 1px solid var(--rule-hard); margin-top: 30px; padding-top: 20px;
  display: grid; gap: 22px;
}
@media (min-width: 800px) { .helpline { grid-template-columns: 1fr 1fr; } }
.helpline h3 { font-size: 17px; margin-bottom: 6px; }
.helpline .tel {
  font-family: var(--font-mono); font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; display: block; margin: 4px 0 4px;
  color: var(--blue); text-decoration: none;
}
.helpline .tel:hover { text-decoration: underline; }
.helpline p { font-size: 14px; margin: 0; color: var(--ink-soft); }

/* ---------- 404 / thank-you ---------- */

.stub {
  min-height: 62vh; display: flex; flex-direction: column;
  justify-content: center; padding-block: var(--rhythm);
}
.stub h1 { max-width: 16ch; margin-bottom: 18px; }
.stub .stub-code {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 18px;
}

/* ---------- Footer ---------- */

.foot {
  border-top: 2px solid var(--rule-hard);
  padding: clamp(38px, 5vw, 62px) var(--pad) 30px;
  background: var(--paper-deep);
}
.foot-grid { display: grid; gap: 30px; }
@media (min-width: 860px) {
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
}
.foot h2 { font-size: 17px; margin-bottom: 10px; }
.foot p { font-size: 14px; color: var(--ink-soft); max-width: 46ch; }
.foot a { color: var(--ink-soft); }
.foot a:hover { color: var(--blue); }
.foot-nav h3, .foot-legal h3 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-faint); margin: 0 0 10px;
}
.foot-nav ul, .foot-legal ul { list-style: none; margin: 0; padding: 0; }
.foot-nav li, .foot-legal li { margin-bottom: 7px; font-size: 14px; }

.rg-strip {
  border-top: 1px solid var(--rule-hard); margin-top: 34px; padding-top: 18px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px;
}
.age-mark {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; border: 2px solid var(--ink); padding: 4px 9px;
  flex: none;
}
.rg-strip p { margin: 0; font-size: 13.5px; max-width: 70ch; }

.disclaimer {
  border-top: 1px solid var(--rule); margin-top: 22px; padding-top: 18px;
}
.disclaimer p {
  font-size: 12px; line-height: 1.6; color: var(--ink-faint); max-width: 92ch;
}
.copyright {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint);
  margin-top: 16px; letter-spacing: 0.05em;
}

/* ---------- Motion: minimal and motivated ----------
   The reveal only ever hides content once JS has confirmed it can un-hide it
   (the .js class is set by an inline script in <head>). Without JS, without
   IntersectionObserver, or with reduced motion, every sheet is simply visible.
   Content is never at the mercy of a script. */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(10px); }
  .js .reveal.is-in {
    opacity: 1; transform: none;
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}
