@import url("fonts.css");

/* ==========================================================================
   Clio — product page for jandoopress.com/product/clio
   Design tokens transcribed from the Clio "modernist" design system.
   ========================================================================== */

:root {
  /* dark ground */
  --ink: #141312;
  --paper: #f2efed;
  --paper-bright: #ffffff;
  --muted: #a29c98;
  --muted-strong: #c9c4c1;
  --rule: #524d4a;
  --hair: #322f2d;
  --accent: #ec3013;
  --surface: #1c1a19;

  /* device chrome */
  --chrome: #262423;
  --chrome-edge: #3d3937;
  --chrome-foot: #33302e;
  --screen: #0f0e0e;

  /* light ground */
  --light-bg: #fbf6f4;
  --light-ink: #201e1d;
  --light-muted: #6b6663;
  --light-muted-strong: #4d4846;
  --light-hair: #d5d0cd;
  --light-chip: #eae5e2;
  --light-foot: #dcd7d4;

  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --header-h: 64px;
  --gutter: clamp(20px, 4vw, 40px);
  --wrap: 1240px;
  --section-y: clamp(72px, 10vw, 120px);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent); }
::selection { background: rgba(236, 48, 19, 0.3); }
img { display: block; max-width: 100%; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 16px;
  text-decoration: none;
  transition: top 120ms;
}
.skip-link:focus { top: 12px; color: var(--ink); }

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

/* --------------------------------------------------------------- header -- */

.page { padding-top: var(--header-h); background: var(--ink); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--ink);
  border-bottom: 2px solid var(--rule);
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo { display: flex; align-items: center; flex: none; text-decoration: none; }
.site-header__logo img { height: 26px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
.nav a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted-strong);
  padding: 23px 0 21px;
  white-space: nowrap;
}
.nav a:hover { color: var(--paper); }

.site-header__actions { display: flex; align-items: center; gap: 20px; flex: none; }

.header-link {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-link:hover { color: var(--paper); }

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

.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  transition: background 100ms, color 100ms;
  cursor: pointer;
  border: 0;
  font-family: var(--sans);
}
.btn--sm { height: 32px; padding: 0 14px; font-size: 13px; }
.btn--lg { height: 48px; padding: 0 22px; font-size: 16px; }
.btn--solid { background: var(--paper); color: var(--ink); }
.btn--solid:hover { background: var(--paper-bright); color: var(--ink); }
.btn--ghost { border: 1px solid var(--rule); color: var(--paper); }
.btn--ghost:hover { background: var(--surface); color: var(--paper); }

/* burger + mobile menu ----------------------------------------------------- */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
  padding: 0 9px;
}
.burger span { display: block; height: 2px; background: var(--paper); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--ink);
  padding: 80px var(--gutter) 40px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu a {
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.mobile-menu .btn {
  margin-top: 28px;
  height: 48px;
  padding: 0 18px;
  font-size: 15px;
  align-self: flex-start;
  border-bottom: 0;
}

@media (max-width: 899px) {
  .nav, .site-header__actions { display: none; }
  .burger { display: flex; }
}

/* -------------------------------------------------------------- sections -- */

.section {
  border-bottom: 2px solid var(--rule);
  padding: var(--section-y) var(--gutter);
}
.section--light {
  background: var(--light-bg);
  color: var(--light-ink);
  border-bottom-color: var(--light-ink);
}
.wrap { max-width: var(--wrap); margin: 0 auto; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.section--light .eyebrow { color: var(--light-muted); }
.eyebrow--bright { color: var(--paper); }

.meta {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.section--light .meta { color: var(--light-muted); }

h1, h2, h3 { text-wrap: pretty; }

.h1 {
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.99;
  margin: 0 0 28px;
  max-width: 19ch;
}
.h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 28px;
  max-width: 26ch;
}
.h2--tight { margin-bottom: 0; }
.h2--display {
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 20ch;
  margin: 0 0 clamp(36px, 5vw, 48px);
}

.lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-strong);
  margin: 0;
  max-width: 64ch;
}
.section--light .lede { color: var(--light-ink); }

.body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-strong);
  margin: 0;
  max-width: 66ch;
}
.body + .body { margin-top: 1em; }

/* section heading block: index column + heading ---------------------------- */

.sec-head {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-top: 20px;
  border-top: 2px solid var(--rule);
}
.section--light .sec-head { border-top-color: var(--light-ink); }
.sec-head__index { flex: none; width: 140px; }
.sec-head__body { flex: 1 1 520px; min-width: 0; }

/* a labelled row: 140px mono label + prose --------------------------------- */

.row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.row--rule { border-top: 2px solid var(--rule); align-items: flex-start; gap: clamp(24px, 4vw, 56px); }
.row__label { flex: none; width: 140px; }
.row__body { flex: 1 1 380px; min-width: 0; }

/* ------------------------------------------------------------------ hero -- */

.hero { padding: clamp(44px, 7vh, 84px) var(--gutter) clamp(52px, 6vw, 76px); }
.hero__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__text { flex: 1 1 480px; min-width: 0; }
.hero__logo {
  height: clamp(34px, 4vw, 50px);
  width: auto;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.hero .eyebrow { margin-bottom: clamp(20px, 3vw, 32px); }
.hero__lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--paper);
  margin: 0 0 16px;
  max-width: 46ch;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 50ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 44px);
}
.hero__cta .link { font-size: 16px; font-weight: 500; text-underline-offset: 5px; }
.hero__status { margin: 20px 0 0; display: block; }
.hero__figure { flex: 1 1 340px; min-width: 0; max-width: 440px; }
.hero__frame {
  width: 100%;
  aspect-ratio: 1340 / 1800;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  border-left: 1px solid var(--hair);
}

/* ---------------------------------------------------- screenshot framing -- */

/* A screenshot is shown through a fixed CSS crop: --w is the image width as a
   percentage of its frame, --x/--y translate it into position. Values are
   carried on the element so the geometry stays readable next to the markup. */
.shot {
  aspect-ratio: 16 / 10;
  background: var(--screen);
  overflow: hidden;
  position: relative;
}
.shot__img,
.hero__frame img {
  position: absolute;
  top: 0; left: 0;
  width: var(--w, 100%);
  height: auto;
  max-width: none;
  transform: translate(var(--x, 0), var(--y, 0));
}
.shot__img--fill { position: static; width: 100%; transform: none; }

.device {
  background: var(--chrome);
  border: 1px solid var(--chrome-edge);
  border-radius: 12px 12px 0 0;
  padding: clamp(8px, 1vw, 14px);
}
.device__foot {
  height: 13px;
  background: var(--chrome-foot);
  border: 1px solid var(--chrome-edge);
  border-top: 0;
  border-radius: 0 0 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device__foot span { display: block; width: 15%; height: 4px; background: var(--chrome); }

.section--light .device { background: var(--light-chip); border-color: var(--light-hair); }
.section--light .device__foot { background: var(--light-foot); border-color: var(--light-hair); }
.section--light .device__foot span { background: var(--light-chip); }

figure { margin: 0; }
figcaption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; margin-top: 12px; }
.figcaption--accent { color: var(--accent); }

/* annotation marks drawn over a screenshot */
.annot { position: absolute; pointer-events: none; }
.annot--rule { height: 1px; background: var(--accent); }
.annot--flag { display: flex; flex-direction: column; align-items: flex-start; }
.annot--flag i { display: block; width: 1px; height: clamp(18px, 2.2vw, 30px); background: var(--accent); }
.annot--flag b {
  font-family: var(--mono);
  font-size: clamp(9px, 0.75vw, 11px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--ink);
  padding: 2px 5px;
  margin-top: 2px;
  white-space: nowrap;
}

/* --------------------------------------------------------------- the gap -- */

.gap__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  align-items: flex-start;
}
.gap__text { flex: 2 1 460px; max-width: 660px; }
.gap__text .h2 { margin-bottom: 32px; }
.gap__claim { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.75; margin: 0 0 40px; }
.gap__cite { margin: 0; padding-top: 20px; border-top: 1px solid var(--light-hair); }
.gap__cite a { color: var(--light-muted); }

.gap__chart { flex: 1 1 300px; max-width: 420px; }
.bars {
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 48px);
  height: clamp(200px, 26vw, 280px);
  border-bottom: 2px solid var(--light-ink);
  padding: 0 4px;
}
.bars__col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.bars__key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.bars__col--more .bars__key { color: var(--light-ink); }
.bars__col--flat .bars__key { color: var(--light-muted); }
.bars__bar { display: block; height: 86%; background: var(--light-ink); }
.bars__bar--outline { height: 34%; background: none; border: 1px solid var(--light-ink); border-bottom: 0; }
.bars__labels { display: flex; gap: clamp(24px, 4vw, 48px); padding: 12px 4px 0; }
.bars__labels span { flex: 1; font-size: 13px; line-height: 1.5; }
.gap__chart figcaption { line-height: 1.7; color: var(--light-muted); margin-top: 16px; }

/* ---------------------------------------------------------------- tables -- */

.split {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  align-items: flex-start;
}
.split > * { flex: 1 1 400px; min-width: 0; }

.kinds th, .kinds td { text-align: left; }
.kinds thead th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 12px 10px 0;
  border-top: 2px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.kinds thead th:first-child { width: 30%; }
.kinds thead th:last-child { width: 24%; padding-right: 0; }
.kinds tbody th {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--paper);
  padding: 11px 12px 11px 0;
  border-bottom: 1px solid var(--hair);
}
.kinds tbody td {
  font-size: 14px;
  color: var(--muted-strong);
  padding: 11px 12px 11px 0;
  border-bottom: 1px solid var(--hair);
}
.kinds tbody td:last-child {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding-right: 0;
}
.kinds td.is-absent { color: var(--muted); }
.note { font-size: 13px; line-height: 1.8; color: var(--muted); margin: 18px 0 0; }
.split__intro { font-size: 17px; line-height: 1.6; color: var(--paper); margin: 0 0 24px; }

/* ----------------------------------------------------------------- cards -- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
}
.card { border-top: 1px solid var(--hair); padding-top: 20px; }
.card .eyebrow { color: var(--paper); margin-bottom: 12px; }
.card p { font-size: 13px; line-height: 1.7; color: var(--muted-strong); margin: 0; }

.states {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 2px solid var(--light-ink);
  padding-top: 24px;
}
.states svg { display: block; margin-bottom: 14px; }
.states dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.states dd { font-size: 13px; line-height: 1.7; color: var(--light-muted-strong); margin: 0; }

.limits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 24px;
}
.limits li {
  display: flex;
  gap: 14px;
  border-top: 1px solid var(--hair);
  padding-top: 18px;
}
.limits svg { flex: none; margin-top: 4px; }
.limits p { font-size: 14px; line-height: 1.7; color: var(--muted-strong); margin: 0; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.facts > div { border-top: 1px solid var(--hair); padding-top: 18px; }
.facts .eyebrow { margin-bottom: 10px; }
.facts p { font-size: 15px; line-height: 1.7; color: var(--muted-strong); margin: 0; }

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

/* ------------------------------------------------------------- estimate --- */

.result-strip {
  border: 1px solid var(--hair);
  border-top: 2px solid var(--rule);
  background: var(--screen);
  aspect-ratio: 5.79;
  overflow: hidden;
  position: relative;
  margin-top: clamp(20px, 3vw, 28px);
}

.pull {
  margin: clamp(48px, 6vw, 80px) 0 0;
  border-top: 2px solid var(--rule);
  padding-top: clamp(32px, 4vw, 48px);
}
.pull p {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 30ch;
}

.mark { color: var(--paper); }
.code {
  font-family: var(--mono);
  font-size: 15px;
  background: var(--light-chip);
  padding: 1px 5px;
}

.callout {
  flex: 1 1 340px;
  min-width: 0;
  border-left: 3px solid var(--paper);
  padding: 18px 0 18px 22px;
  background: var(--surface);
}
.callout .eyebrow { color: var(--paper); margin-bottom: 12px; }
.callout p { font-size: 15px; line-height: 1.7; color: var(--muted-strong); margin: 0 0 10px; }
.callout p:last-child { font-size: 13px; color: var(--muted); margin: 0; }

.stance__pair {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: flex-start;
  margin-top: clamp(32px, 4vw, 48px);
}
.stance__pair > p { flex: 1 1 380px; min-width: 0; max-width: 60ch; }
.stance__limits-head {
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding-top: 20px;
  border-top: 2px solid var(--rule);
}

/* ------------------------------------------------------------------ form -- */

.form {
  margin-top: clamp(36px, 5vw, 48px);
  border-top: 2px solid var(--rule);
  padding-top: clamp(28px, 4vw, 40px);
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px 32px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--accent); }
.field .hint { font-size: 12px; line-height: 1.6; color: var(--muted); }

.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--paper);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 11px 12px;
  width: 100%;
  transition: border-color 100ms, background 100ms;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
  background: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: #6f6a67; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea { border-color: var(--accent); }
.field .error {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { display: flex; gap: 12px; align-items: flex-start; grid-column: 1 / -1; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 3px; accent-color: var(--accent); }
.consent label {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted-strong);
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.form__status { margin: 0; flex: 1 1 280px; }
.form__alt { margin: 16px 0 0; }
.form__status[data-state="error"] { color: var(--accent); }
.form__status[data-state="ok"] { color: var(--paper); }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.45; pointer-events: none; }

.form__done {
  border-top: 2px solid var(--rule);
  margin-top: clamp(36px, 5vw, 48px);
  padding-top: clamp(28px, 4vw, 40px);
}
.form__done h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}
[hidden] { display: none !important; }

/* ------------------------------------------------------------------- faq -- */

.faq { margin-top: clamp(64px, 9vw, 112px); }
.faq__head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.faq__list { border-top: 2px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__item h3 { margin: 0; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: 0;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--paper);
  transition: color 100ms;
}
.faq__q:hover { color: var(--accent); }
.faq__sign {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.5;
  flex: none;
  width: 16px;
  text-align: center;
}
/* The button sits inside an h3, so the open state is carried on .faq__item
   rather than matched as a sibling of the button. */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}
.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a > div {
  overflow: hidden;
  min-height: 0;
  visibility: hidden;
  transition: visibility 0s linear 220ms;
}
.faq__item[data-open="true"] .faq__a > div {
  visibility: visible;
  transition-delay: 0s;
}
.faq__a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  padding: 0 clamp(0px, 6vw, 60px) 22px 0;
  max-width: 78ch;
}

/* ---------------------------------------------------------------- footer -- */

.site-footer { padding: clamp(48px, 6vw, 72px) var(--gutter) 24px; }
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 44px);
}
.site-footer__top img { height: 30px; width: auto; }
.site-footer__top .meta { max-width: 44ch; }
.site-footer__scope {
  margin: 0 0 clamp(32px, 4vw, 44px);
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  max-width: 96ch;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 32px 24px;
}
.site-footer__cols .eyebrow { margin-bottom: 16px; }
.site-footer__cols ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer__cols a {
  font-size: 13px;
  text-decoration: none;
  color: var(--muted-strong);
  width: fit-content;
}
.site-footer__cols a:hover { color: var(--paper); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.site-footer__bottom a { color: var(--muted); text-decoration: none; }
.site-footer__bottom a:hover { color: var(--paper); }

/* ---------------------------------------------------------------- motion -- */

[data-reveal] { transition: opacity 240ms ease-out, transform 240ms ease-out; }
.js [data-reveal]:not([data-revealed]) { opacity: 0; transform: translateY(8px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0ms !important; animation-duration: 0ms !important; }
  .js [data-reveal]:not([data-revealed]) { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------- print -- */

@media print {
  .site-header, .mobile-menu, .burger, .skip-link, .form__foot { display: none !important; }
  .page { padding-top: 0; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section, .hero { border-bottom: 1px solid #000; padding: 18pt 0; break-inside: avoid; }
  .faq__a { grid-template-rows: 1fr !important; }
  a { text-decoration: none; }
}
