@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrumentserif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #ffffff;
  --ink: #111111;
  --ink-deep: #000000;
  --quiet: #565656;
  --hush: #6b6b6b;
  --tint: #f5f5f3;
  --tint-deep: #ebebe8;
  --accent: #5b6550;
  --rule: #d8d8d4;
  --grotesque: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --antiqua: "Instrument Serif", Georgia, "Times New Roman", serif;
  --shape: 22px 6px 22px 6px;
  --frame-max: 1280px;
  --frame-pad: clamp(20px, 5vw, 56px);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--grotesque);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0.002em;
  font-synthesis-weight: none;
}

img { max-width: 100%; }

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

h1, h2, h3 { margin: 0; font-weight: 400; }

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

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

.pane {
  width: 100%;
  max-width: var(--frame-max);
  margin: 0 auto;
  padding-inline: var(--frame-pad);
}

.kicker {
  display: block;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.title {
  font-family: var(--antiqua);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink-deep);
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
}

.title--wide { font-size: clamp(2.4rem, 6vw, 4.4rem); }

.prologue {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: var(--quiet);
}

.measure { max-width: 36em; }
.measure--tight { max-width: 28em; }

.hidden-note {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.jumpto {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  background: var(--ink-deep);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--shape);
}
.jumpto:focus { left: 12px; top: 12px; color: #fff; }

/* ---------- actions ---------- */

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 28px;
  border: 0;
  border-radius: var(--shape);
  font-family: var(--grotesque);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  background: none;
  color: var(--ink-deep);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.action--solid { background: var(--ink-deep); color: #ffffff; }
.action--solid:hover { color: #ffffff; transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--accent); }
.action--solid:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--accent); }

.action--outline { border: 1px solid var(--ink-deep); background: transparent; }
.action--outline:hover { color: var(--ink-deep); transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--accent); }
.action--outline:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--accent); }

.action--ghost { padding: 13px 18px; color: var(--accent); }
.action--ghost:hover { color: var(--ink-deep); box-shadow: inset 0 -2px 0 var(--accent); }

.action--wide { width: 100%; }

/* ---------- masthead ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.masthead__mark {
  font-family: var(--antiqua);
  font-size: 26px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-deep);
  padding: 10px 2px;
  white-space: nowrap;
}
.masthead__mark:hover { color: var(--ink-deep); }
.masthead__mark em { font-style: normal; color: var(--accent); }

.masthead__nav { display: flex; align-items: center; gap: 4px; }

.masthead__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 14px;
  font-size: 15px;
  color: var(--quiet);
  text-decoration: none;
  border-radius: var(--shape);
}
.masthead__link:hover { color: var(--ink-deep); background: var(--tint); }

.masthead__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--ink-deep);
  border-radius: var(--shape);
  background: transparent;
  color: var(--ink-deep);
  cursor: pointer;
}

.masthead__sheet { display: contents; }

/* ---------- opener ---------- */

.opener { padding-block: clamp(36px, 6vw, 78px) clamp(48px, 7vw, 96px); }

.opener__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.opener__lead { text-align: left; }

.opener__lede { margin-top: 22px; }

.opener__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.opener__still {
  width: 100%;
  aspect-ratio: 760 / 569;
  overflow: hidden;
  border-radius: 48px 12px 48px 12px;
  background: var(--tint);
}
.opener__still img { width: 100%; height: 100%; object-fit: cover; display: block; }

.racks {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.racks__row { display: flex; gap: 10px; }

.racks__pic {
  width: 54px;
  height: 54px;
  border-radius: 14px 4px 14px 4px;
  display: block;
  background: var(--tint);
}

.racks__note { font-size: 14px; color: var(--hush); max-width: 15em; }

/* ---------- desk ---------- */

.newsroom { padding-block: clamp(44px, 6vw, 82px); }

.newsroom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

.newsroom__list { margin: 30px 0 0; padding: 0; list-style: none; }

.newsroom__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 18px 0;
}

.newsroom__item svg { width: 26px; height: 26px; color: var(--accent); margin-top: 4px; }

.newsroom__item h3 {
  font-family: var(--grotesque);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.newsroom__item p { font-size: 16px; color: var(--quiet); margin: 0; }

.newsroom__still {
  width: 100%;
  aspect-ratio: 760 / 427;
  overflow: hidden;
  border-radius: 12px;
  background: var(--tint);
}
.newsroom__still img { width: 100%; height: 100%; object-fit: cover; display: block; }

.newsroom__fig { margin: 0; }
.newsroom__cap { margin-top: 12px; font-size: 14px; color: var(--hush); }

/* ---------- spreads ---------- */

.spreads { padding-block: clamp(40px, 5vw, 70px); }

.spreads__head { max-width: 40em; }

.spread { padding-block: clamp(38px, 5vw, 72px); }
.spread:nth-of-type(2) { padding-block: clamp(48px, 7vw, 104px); }
.spread:nth-of-type(4) { padding-block: clamp(32px, 4vw, 58px); }

.spread__still {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--tint);
}
.spread__still--tall { aspect-ratio: 760 / 569; }

.spread__still img { width: 100%; height: 100%; object-fit: cover; display: block; }

.spread__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-top: 26px;
}

.spread__head h3 {
  font-family: var(--antiqua);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--ink-deep);
}

.spread__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px clamp(30px, 5vw, 72px);
  margin-top: 22px;
}

.verdict {
  font-family: var(--antiqua);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.24;
  color: var(--ink-deep);
  margin: 0 0 18px;
}

.emblem {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.emblem__num {
  font-family: var(--antiqua);
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
}

.pips { display: inline-flex; gap: 3px; color: var(--accent); }
.pips svg { width: 15px; height: 15px; }

.note { font-size: 14px; color: var(--hush); margin: 0; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }

.tags li {
  padding: 7px 15px;
  border-radius: 14px 4px 14px 4px;
  background: var(--tint);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--quiet);
}

.spread__body p { color: var(--ink); }

/* ---------- ledger ---------- */

.ledger { padding-block: clamp(46px, 6vw, 88px); background: var(--tint); }

.ledger__scroll { width: 100%; overflow-x: auto; margin-top: 30px; }
.ledger__scroll:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.ledger table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 15px;
}

.ledger caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 16px;
  font-size: 15px;
  color: var(--quiet);
}

.ledger th, .ledger td { padding: 15px 18px; text-align: left; vertical-align: top; }

.ledger thead th {
  font-family: var(--grotesque);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-deep);
  border-bottom: 1px solid var(--ink-deep);
  white-space: nowrap;
}

.ledger tbody th {
  font-family: var(--antiqua);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink-deep);
  min-width: 190px;
}

.ledger tbody tr:nth-child(even) { background: var(--tint-deep); }

.ledger td svg { width: 17px; height: 17px; color: var(--accent); vertical-align: -3px; margin-right: 7px; }

.ledger__after { margin-top: 20px; font-size: 15px; color: var(--quiet); max-width: 44em; }

/* ---------- voices ---------- */

.testimonies { padding-block: clamp(48px, 6vw, 92px); }

.testimonies__set {
  columns: 1;
  column-gap: 30px;
  margin-top: 34px;
}

.testimony {
  break-inside: avoid;
  margin: 0 0 26px;
  padding: 24px 26px;
  background: var(--tint);
  border-radius: 18px 4px 18px 4px;
}

.testimony blockquote { margin: 0; }
.testimony p { font-size: 16px; line-height: 1.55; }

.testimony__who {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.03em;
  color: var(--hush);
}
.testimony__who b { display: block; font-weight: 600; font-size: 15px; letter-spacing: 0; color: var(--ink); }

.testimony--tall { padding-block: 34px; }

/* ---------- tiers ---------- */

.plans { padding-block: clamp(44px, 6vw, 80px); }

.plans__pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
}

.plan {
  padding: clamp(26px, 3vw, 40px);
  border-radius: 26px 6px 26px 6px;
  background: var(--tint);
}

.plan--plus { background: var(--ink-deep); color: #ffffff; }
.plan--plus .plan__price, .plan--plus h3 { color: #ffffff; }
.plan--plus .plan__list li { color: #e6e6e4; }
.plan--plus .note { color: #c6c6c2; }
.plan--plus .action--outline { border-color: #ffffff; color: #ffffff; }
.plan--plus .action--outline:hover { color: #ffffff; }

.plan h3 {
  font-family: var(--grotesque);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
}

.plan__price {
  display: block;
  margin: 14px 0 6px;
  font-family: var(--antiqua);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}

.plan__price span { font-family: var(--grotesque); font-size: 15px; letter-spacing: 0; }

.plan__list { margin: 22px 0 28px; padding: 0; list-style: none; }
.plan__list li { position: relative; padding: 7px 0 7px 28px; font-size: 16px; color: var(--quiet); }
.plan__list svg { position: absolute; left: 0; top: 13px; width: 16px; height: 16px; color: var(--accent); }
.plan--plus .plan__list svg { color: #b9c3ad; }

.plans__note { margin-top: 22px; font-size: 14px; color: var(--hush); max-width: 46em; }

/* ---------- signal ---------- */

.dispatch { padding-block: clamp(48px, 6vw, 88px); background: var(--tint); }

.dispatch__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.dispatch__act { margin: 30px 0 16px; }

.dispatch__fine { max-width: 30em; }

.dispatch__aside p { color: var(--quiet); }
.dispatch__aside b { color: var(--ink); font-weight: 600; }

/* ---------- queries ---------- */

.dossiers { padding-block: clamp(44px, 6vw, 84px); }

.dossiers__list { width: 100%; margin-top: 26px; }

.dossier { width: 100%; padding: 6px 0; }

.dossier h3 { margin: 0; }

.dossier__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 62px;
  padding: 16px 0;
  border: 0;
  background: none;
  font-family: var(--antiqua);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--ink-deep);
  cursor: pointer;
}
.dossier__q:hover { color: var(--accent); }

.dossier__sign {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 4px 12px 4px;
  background: var(--tint);
  color: var(--ink-deep);
  transition: transform 0.2s ease;
}
.dossier__q[aria-expanded="true"] .dossier__sign { transform: rotate(45deg); }
.dossier__sign svg { width: 15px; height: 15px; }

.dossier__a { display: none; padding: 0 0 22px; color: var(--quiet); max-width: 46em; }
.dossier__a.is-open { display: block; }

/* ---------- colophon ---------- */

.colophon {
  background: var(--ink-deep);
  color: #d5d5d2;
  padding-block: clamp(48px, 6vw, 78px) 34px;
  margin-top: clamp(30px, 4vw, 60px);
}

.colophon a { color: #ffffff; text-decoration: none; }
.colophon a:hover { color: #b9c3ad; text-decoration: underline; }

.colophon__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.colophon__mark {
  font-family: var(--antiqua);
  font-size: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 14px;
}
.colophon__mark em { font-style: normal; color: #b9c3ad; }

.colophon h2 {
  font-family: var(--grotesque);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.colophon ul { margin: 0; padding: 0; list-style: none; }
.colophon li { padding: 5px 0; }
.colophon li a { display: inline-flex; align-items: center; min-height: 34px; }

.colophon__about { font-size: 15px; color: #a9a9a5; max-width: 26em; }

.colophon__foot {
  margin-top: 40px;
  padding-top: 22px;
  font-size: 13px;
  color: #8f8f8b;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
}

/* ---------- overlays ---------- */

.upward {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: var(--shape);
  background: var(--ink-deep);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.upward.is-on { display: inline-flex; }
.upward:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--accent); }
.upward svg { width: 18px; height: 18px; }

.notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  background: var(--paper);
  box-shadow: 0 -8px 34px rgba(0, 0, 0, 0.16);
  padding-block: 20px;
}
.notice.is-on { display: block; }

.notice__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 26px;
}

.notice__text { font-size: 15px; color: var(--quiet); max-width: 46em; margin: 0; }

.notice__acts { display: flex; flex-wrap: wrap; gap: 10px; }
.notice__acts .action { min-height: 48px; padding: 11px 22px; font-size: 15px; }

/* ---------- paper pages ---------- */

.folio { padding-block: clamp(40px, 5vw, 72px); }
.folio__head { max-width: 40em; }
.folio__stamp { margin-top: 16px; font-size: 14px; color: var(--hush); }
.folio__back { margin-top: 26px; }
.folio__body { margin-top: 40px; max-width: 44em; }
.folio__body h2 {
  font-family: var(--antiqua);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink-deep);
  margin: 40px 0 14px;
}
.folio__body h2:first-child { margin-top: 0; }
.folio__body ul { margin: 0 0 1.2em; padding-left: 20px; }
.folio__body li { padding: 4px 0; }
.folio__body p, .folio__body li { color: var(--ink); }

.drift { padding-block: clamp(60px, 10vw, 130px); text-align: left; }
.drift__acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .masthead__toggle { display: inline-flex; }
  .masthead__sheet {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
    padding: 12px var(--frame-pad) 22px;
  }
  .masthead__sheet.is-on { display: block; }
  .masthead__inner { position: relative; }
  .masthead__nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .masthead__link { min-height: 52px; font-size: 16px; }
}

@media (min-width: 720px) {
  .testimonies__set { columns: 2; }
  .plans__pair { grid-template-columns: 1fr 1fr; gap: 26px; }
  .spread__columns { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
  .colophon__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
}

@media (min-width: 1000px) {
  body { font-size: 18px; }
  .opener__grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(40px, 5vw, 80px); }
  .newsroom__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
  .dispatch__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .testimonies__set { columns: 3; }
}

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