/* ==========================================================================
   Alo Promos — shared stylesheet
   A campaign-calendar desk. One motif: a promotional window has WIDTH.
   Bars encode time everywhere on this site.
   ========================================================================== */

:root {
  --ivory:      #FFFDF8;
  --paper:      #FAF6EC;
  --navy:       #101A3D;
  --navy-mute:  #4A5273;
  --coral:      #FF6B5A;
  --hairline:   #E2DDCE;
  --navy-line:  rgba(16, 26, 61, 0.14);

  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "Space Mono", "SFMono-Regular", Consolas, monospace;

  --shell: 1220px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);

  --step--1: 0.8125rem;
  --step-0:  1.0625rem;
  --step-1:  1.25rem;
  --step-2:  clamp(1.5rem, 1.1rem + 1.4vw, 2.125rem);
  --step-3:  clamp(2rem, 1.3rem + 2.6vw, 3.25rem);
  --step-4:  clamp(2.75rem, 1.5rem + 5vw, 5.25rem);
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { text-decoration-color: var(--coral); }

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

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 1px;
}

/* --- shared utility -------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.band { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.band--paper { background: var(--paper); border-block: 1px solid var(--hairline); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  z-index: 50;
  font-family: var(--mono);
  font-size: var(--step--1);
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

/* Eyebrow: a short coral bar + mono label. The bar is the site's signature
   motif at its smallest scale. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--coral);
  flex: none;
}

.mono { font-family: var(--mono); font-size: var(--step--1); letter-spacing: 0.04em; }

/* small, single-purpose helpers — used instead of inline style attributes so the
   page needs no 'unsafe-inline' in the style CSP */
.u-mute   { color: var(--navy-mute); }
.u-mt     { margin-top: 1.5rem; }
.u-mt-sm  { margin-top: 0.75rem; }
.u-mb-xs  { margin-bottom: 0.6rem; }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--navy-mute);
}

/* --- buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--navy);
  background: var(--coral);
  color: var(--navy);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 4px 4px 0 var(--navy);
  cursor: pointer;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--navy); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--navy); }

.btn--ghost { background: transparent; box-shadow: none; }
.btn--ghost:hover { background: var(--navy); color: var(--ivory); transform: none; }

/* ==========================================================================
   Masthead — horizontal, with a live readout instead of a plain link row
   ========================================================================== */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--navy-line);
}

.masthead__in {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 72px;
  padding-block: 0.75rem;
  flex-wrap: wrap;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--navy);
  flex: none;
  line-height: 1;
}
.wordmark span { color: var(--coral); }

.masthead__nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
  margin-inline-start: auto;
  flex-wrap: wrap;
}

.masthead__nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
  color: var(--navy);
}
.masthead__nav a:hover,
.masthead__nav a[aria-current="page"] { border-bottom-color: var(--coral); }

/* The readout: the masthead carries data, not just navigation. */
.readout {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--navy);
  padding: 0.45rem 0.8rem;
  flex: none;
}
.readout__dot {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ==========================================================================
   Hero — 60 / 40
   ========================================================================== */

.hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem); }

.hero__grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.hero__title {
  font-size: var(--step-4);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--coral);
  /* coral is display-size only here — never small text */
}

.hero__lede {
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.3125rem);
  line-height: 1.55;
  color: var(--navy-mute);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__facts {
  display: flex;
  gap: clamp(1.25rem, 4vw, 3rem);
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
}
.hero__fact { max-width: 20ch; }
.hero__fact dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin-bottom: 0.4rem;
}
.hero__fact dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.15;
}

/* The year as a spine: 12 rules, length = windows tracked that month.
   Foreshadows the ledger below. */
.spine {
  background: var(--navy);
  color: var(--ivory);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
}

.spine__cap {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.spine__list { list-style: none; margin: 0; padding: 0; }

.spine__row {
  display: grid;
  grid-template-columns: 2.4rem 1fr 1.6rem;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.3rem;
}

.spine__mo {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: rgba(255, 253, 248, 0.6);
}

.spine__bar {
  height: 8px;
  background: rgba(255, 253, 248, 0.14);
  position: relative;
}
.spine__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: rgba(255, 253, 248, 0.55);
  display: block;
}

.spine__n {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-align: right;
  color: rgba(255, 253, 248, 0.6);
}

.spine__row--now .spine__mo,
.spine__row--now .spine__n { color: var(--coral); }
.spine__row--now .spine__bar i { background: var(--coral); }

.spine__foot {
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: rgba(255, 253, 248, 0.6);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

/* Bar length utilities for the spine: open days in that month as a share of
   the busiest month (July, 26 days). Derived from the nine windows below. */
.p4   { width: 4%; }
.p8   { width: 8%; }
.p19  { width: 19%; }
.p27  { width: 27%; }
.p35  { width: 35%; }
.p38  { width: 38%; }
.p42  { width: 42%; }
.p58  { width: 58%; }
.p62  { width: 62%; }
.p69  { width: 69%; }
.p100 { width: 100%; }

/* ==========================================================================
   The Ledger — signature element. Bar length = window duration.
   ========================================================================== */

.ledger__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ledger__title { font-size: var(--step-2); }

.ledger__legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mute);
}
.ledger__legend li { display: flex; align-items: center; gap: 0.5rem; }
.ledger__legend i { width: 18px; height: 4px; flex: none; }
.ledger__legend .k-open { background: var(--coral); }
.ledger__legend .k-soon { background: var(--navy); }
.ledger__legend .k-shut { background: var(--navy-line); }

.ledger__rail {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  border-top: 2px solid var(--navy);
}

.ledger__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max-content;
}

.win {
  scroll-snap-align: start;
  flex: none;
  width: clamp(13rem, 20vw, 15.5rem);
  padding: 1.4rem 1.4rem 1.6rem;
  border-inline-end: 1px solid var(--hairline);
  position: relative;
}
.win:first-child { padding-inline-start: 0; }

.win__id {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--navy-mute);
  margin: 0 0 0.8rem;
}

.win__name {
  font-size: var(--step-1);
  margin-bottom: 0.5rem;
  min-height: 2.6em;
}

.win__dates {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--navy-mute);
  margin: 0 0 1rem;
}

.win__bar {
  height: 6px;
  background: var(--navy-line);
  margin-bottom: 0.75rem;
}
.win__bar i { display: block; height: 100%; background: var(--navy-line); }

.win__state {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin: 0;
}

.win--soon .win__bar i { background: var(--navy); }
.win--soon .win__state { color: var(--navy); }

.win--open { background: var(--ivory); }
.win--open .win__bar { background: rgba(255, 107, 90, 0.28); }
.win--open .win__bar i { background: var(--coral); }
.win--open .win__id,
.win--open .win__dates { color: var(--navy); }
.win--open .win__state {
  color: var(--navy);
  background: var(--coral);
  display: inline-block;
  padding: 0.2rem 0.5rem;
}
/* the today line — a real marker falling inside the open window */
.win--open::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1.4rem;
  left: 62%;
  width: 2px;
  background: var(--coral);
}
.win--open::after {
  content: "TODAY";
  position: absolute;
  top: 0.1rem;
  left: calc(62% + 6px);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--coral);
}

/* Duration utilities: bar width is the window's length in days as a share of
   the longest window of the year (W-29, 28 days). The bar IS the duration. */
.d-11 { width: 39%; }
.d-14 { width: 50%; }
.d-15 { width: 54%; }
.d-18 { width: 64%; }
.d-28 { width: 100%; }

.ledger__hint {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin: 1rem 0 0;
}

/* ==========================================================================
   Inbox — two columns of text
   ========================================================================== */

.inbox__title {
  font-size: var(--step-3);
  max-width: 24ch;
  margin-bottom: 2.5rem;
}

.inbox__cols {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
  column-rule: 1px solid var(--hairline);
  max-width: 62rem;
}
.inbox__cols h3 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  break-after: avoid;
}
.inbox__cols h3 + p { break-before: avoid; }
.inbox__cols p { margin-bottom: 1.6em; }
.inbox__cols > :first-child { margin-top: 0; }

/* first line of the column set gets an editorial drop treatment */
.inbox__cols > p:first-of-type::first-line {
  font-family: var(--mono);
  font-size: 0.9em;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Specimen — a trimmed page with printer's crop marks
   ========================================================================== */

.spec__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.spec__title { font-size: var(--step-3); margin-bottom: 1.25rem; }

.spec__frame {
  position: relative;
  padding: 1.75rem;
}

/* crop marks — the actual artifact of magazine production */
.spec__frame .crop {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 0 solid var(--navy);
  pointer-events: none;
}
.spec__frame .crop.tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.spec__frame .crop.tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.spec__frame .crop.bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.spec__frame .crop.br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.clip {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.clip__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy-mute);
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 1.25rem;
}

.clip__hed {
  font-size: var(--step-2);
  margin-bottom: 0.9rem;
}
.clip__dek {
  color: var(--navy-mute);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.clip__cut {
  border: 0;
  border-top: 1px dashed var(--hairline);
  margin: 1.25rem 0;
}

.clip__chip {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  border: 1px dashed var(--navy);
  padding: 0.6rem 0.9rem;
  display: inline-block;
  background: var(--paper);
}

.clip__more {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin: 1.25rem 0 0;
}

/* ==========================================================================
   FAQ — accordion
   ========================================================================== */

.faq__title { font-size: var(--step-3); margin-bottom: 2.25rem; max-width: 28ch; }

.faq__list { max-width: 54rem; border-top: 2px solid var(--navy); }

.qa { border-bottom: 1px solid var(--hairline); }

.qa > summary {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 0;
  font-family: var(--display);
  font-size: var(--step-1);
  line-height: 1.3;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:hover { color: var(--navy-mute); }

.qa__mark {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--coral);
  flex: none;
  width: 1.2rem;
  transition: transform 0.2s ease;
}
.qa[open] .qa__mark { transform: rotate(45deg); }

.qa__body {
  padding: 0 0 1.5rem 2.2rem;
  max-width: 62ch;
  color: var(--navy-mute);
}

/* ==========================================================================
   Desk — about + address
   ========================================================================== */

.desk__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.desk__title { font-size: var(--step-2); margin-bottom: 1.25rem; }

.desk__card {
  border: 1px solid var(--navy);
  padding: clamp(1.5rem, 3vw, 2rem);
  align-self: start;
}
.desk__card h3 {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin-bottom: 1rem;
}
.desk__card address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.desk__card .mono a { color: var(--navy); }

/* ==========================================================================
   Footer — three columns
   ========================================================================== */

.foot {
  background: var(--navy);
  color: var(--ivory);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.foot__mark {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.foot__mark span { color: var(--coral); }

.foot__blurb {
  color: rgba(255, 253, 248, 0.72);
  max-width: 34ch;
  font-size: 0.9375rem;
}

.foot h2 {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.1rem;
}

.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 0.6rem; }

.foot a { color: rgba(255, 253, 248, 0.86); text-decoration: none; }
.foot a:hover { color: var(--coral); text-decoration: underline; text-underline-offset: 0.22em; }

.foot address {
  font-style: normal;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.foot__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.6);
}

/* ==========================================================================
   Issue page (calendar)
   ========================================================================== */

.issue { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem); }
.issue__wrap { max-width: 46rem; margin-inline: auto; }

.issue__rule {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy-mute);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 2rem;
}

.issue__hed { font-size: var(--step-3); margin-bottom: 1.25rem; }
.issue__dek { font-size: var(--step-1); color: var(--navy-mute); margin-bottom: 2.5rem; line-height: 1.55; }

.issue__body h2 {
  font-size: var(--step-2);
  margin: 2.5rem 0 1rem;
}
.issue__body h3 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 2rem 0 0.6rem;
}

/* the code slip */
.slip {
  border: 1px solid var(--navy);
  background: var(--paper);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin: 2rem 0;
}

.slip__label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin: 0 0 0.9rem;
}

.slip__row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.slip__code {
  font-family: var(--mono);
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--ivory);
  border: 1px dashed var(--navy);
  padding: 0.85rem 1.1rem;
  flex: 1 1 14rem;
  display: flex;
  align-items: center;
  margin: 0;
  overflow-wrap: anywhere;
}

.slip__copy {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--ivory);
  border: 1px solid var(--navy);
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  flex: none;
  transition: background 0.16s ease, color 0.16s ease;
}
.slip__copy:hover { background: var(--coral); color: var(--navy); }
.slip__copy[data-done="true"] { background: var(--coral); color: var(--navy); }

.slip__note {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--navy-mute);
  margin: 0.9rem 0 0;
  min-height: 1.2em;
}

.issue__cta { margin: 2.5rem 0; }

.terms {
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  color: var(--navy-mute);
}
.terms h3 { margin-top: 0; }

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2rem;
}

/* ==========================================================================
   Prose pages (privacy / terms)
   ========================================================================== */

.doc { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3rem, 7vw, 5.5rem); }
.doc__wrap { max-width: 44rem; }
.doc__title { font-size: var(--step-3); margin-bottom: 0.75rem; }
.doc__stamp {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mute);
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 2.5rem;
}
.doc__wrap h2 {
  font-size: var(--step-1);
  margin: 2.5rem 0 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
}
.doc__wrap h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.doc__wrap ul { padding-left: 1.2rem; margin: 0 0 1.1em; }
.doc__wrap li { margin-bottom: 0.5rem; }

/* ==========================================================================
   404
   ========================================================================== */

.lost { padding-block: clamp(4rem, 10vw, 8rem); text-align: center; }
.lost__num {
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.85;
  font-weight: 600;
  color: var(--coral);
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}
.lost__title { font-size: var(--step-2); margin-bottom: 1rem; }
.lost__text { color: var(--navy-mute); max-width: 44ch; margin-inline: auto; margin-bottom: 2rem; }
.lost__links { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .hero__grid,
  .spec__grid,
  .desk__grid { grid-template-columns: minmax(0, 1fr); }
  .foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .foot__col--mark { grid-column: 1 / -1; }
  .spec__frame { padding: 1.25rem; order: 2; }
}

@media (max-width: 700px) {
  .inbox__cols { columns: 1; column-rule: none; }
  .readout { order: 3; width: 100%; justify-content: center; }
  .masthead__nav { margin-inline-start: 0; }
  .masthead__in { justify-content: space-between; }
}

@media (max-width: 560px) {
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__facts { flex-direction: column; gap: 1.25rem; }
  .win--open::before, .win--open::after { display: none; }
}

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

@media print {
  .masthead, .foot__base, .ledger__hint { display: none; }
  body { background: #fff; }
}
