/* ============================================================
   Co. Defined — Site 2026-07 Fable
   Concept: "The Record, Surfacing."
   The page behaves like the thing the work produces — a private
   record being set down. Redactions lift. An index rail tracks
   the case. Documents read as documents. A seal gets pressed.
   No stock imagery carries the design; light and type do.
   ============================================================ */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--cd-gold-45); color: var(--cd-deep-ink); }

/* ---------- grain — the whole site sits on paper ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ---------- stage ---------- */
.stage      { max-width: var(--stage); margin: 0 auto; padding-inline: var(--gutter); }
.stage-text { max-width: var(--stage-text); }
.sect       { padding-block: var(--sect-y); position: relative; }

.label {
  font-family: var(--mono);
  font-size: var(--fs-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.label-on-deep { color: var(--accent-on-deep); }

.sect-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-sect);
  line-height: var(--lh-heading);
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.sect-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.on-deep .sect-title em, .sect-title.on-deep em { color: var(--accent-on-deep); }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-lede);
  line-height: 1.6;
  max-width: 34em;
}
.prose p + p { margin-top: 1.2em; }
.gold-em { color: var(--accent); font-style: italic; font-family: var(--serif); }

.sect-head { margin-bottom: clamp(3rem, 7vw, 5.5rem); }

/* ---------- reveal primitives (JS adds .is-in) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); }
.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
              padding 0.5s var(--ease-out);
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--cd-warm-cream) 88%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rule-soft);
  padding-block: 0.8rem;
}

.nav-mark { text-decoration: none; display: flex; align-items: baseline; gap: 0.4em;
  color: var(--fg-on-deep); transition: color 0.5s var(--ease-out); }
.nav.is-scrolled .nav-mark { color: var(--fg); }

/* the CO. DEFINED wordmark — always Poppins, spaced caps (the known logo) */
.nav-mark-co, .nav-mark-defined {
  font-family: var(--wordmark);
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-links { display: none; gap: 2.4rem; }
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.02em; text-decoration: none;
  color: var(--fg-on-deep-muted); transition: color 0.35s;
}
.nav.is-scrolled .nav-links a { color: var(--fg-muted); }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  font-size: 0.82rem; letter-spacing: 0.03em; text-decoration: none;
  color: var(--cd-warm-cream);
  background: var(--cd-coral-pop);
  padding: 0.62em 1.3em; border-radius: 100px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,129,74,0.35); }

@media (min-width: 900px) { .nav-links { display: flex; } }

/* ============================================================
   INDEX RAIL — the case index tracking the reader
   ============================================================ */
.rail {
  position: fixed; left: clamp(0.8rem, 2vw, 1.8rem); top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: none;
  flex-direction: column; gap: 0.55rem;
  opacity: 0; transition: opacity 0.8s var(--ease-out);
}
.rail.is-visible { opacity: 1; }
.rail a {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em;
  color: var(--fg-muted); opacity: 0.45;
  transition: opacity 0.4s, color 0.4s;
}
.rail a::before {
  content: ""; width: 14px; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}
.rail a.is-active { color: var(--accent); opacity: 1; }
.rail a.is-active::before { width: 26px; }
.rail.on-dark a { color: var(--fg-on-deep-muted); }
.rail.on-dark a.is-active { color: var(--accent-on-deep); }
.rail a span { opacity: 0; transform: translateX(-4px); transition: opacity 0.4s, transform 0.4s var(--ease-out); }
.rail a:hover span, .rail a.is-active span { opacity: 1; transform: none; }

@media (min-width: 1240px) { .rail { display: flex; } }

/* ============================================================
   HERO — living light, the first line of the record
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(178deg, var(--cd-forest-deep) 0%, var(--cd-deep-forest) 55%, var(--cd-forest-deeper) 100%);
  color: var(--fg-on-deep);
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
/* the drifting field - editorial plates moving under the veil */
.hero-field { position: absolute; inset: 0; overflow: hidden; }
.stream { position: absolute; left: 0; right: 0; }
.stream-1 { top: clamp(2.5rem, 7vh, 4.5rem); }
.stream-2 { bottom: clamp(1.5rem, 6vh, 4rem); }
.stream-track { display: flex; width: max-content; will-change: transform; }
.stream-set { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); padding-right: clamp(1rem, 2vw, 2rem); }
.stream-1 .stream-track { animation: drift-left 95s linear infinite; }
.stream-2 .stream-track { animation: drift-right 130s linear infinite; }
@keyframes drift-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes drift-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .stream-track { animation: none !important; } }

.hplate {
  border-radius: var(--radius-plate);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}
.hplate img { height: 100%; width: auto; display: block; filter: saturate(0.8) brightness(0.85); }
.hp-s { height: clamp(90px, 14vh, 130px); }
.hp-m { height: clamp(120px, 19vh, 175px); }
.hp-l { height: clamp(150px, 24vh, 220px); }
@media (max-width: 700px) {
  .stream-2 { display: none; }
  .stream-1 { top: 4.5rem; }
}

/* the veil - the forest holds the room; type stays sovereign */
.hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(96deg,
    rgba(38, 47, 37, 0.96) 0%,
    rgba(38, 47, 37, 0.86) 42%,
    rgba(38, 47, 37, 0.68) 72%,
    rgba(38, 47, 37, 0.84) 100%);
}

/* static fallback glow if WebGL is unavailable */
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 42% at 68% 30%, rgba(201,171,124,0.13), transparent 70%),
    radial-gradient(38% 30% at 22% 74%, rgba(122,142,160,0.10), transparent 70%);
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(30,38,32,0.55) 100%);
}

.hero-fileline {
  position: absolute; top: calc(1.1rem + 3.4rem); left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding-inline: var(--gutter);
  font-family: var(--mono); font-size: var(--fs-label);
  letter-spacing: var(--track-label); text-transform: uppercase;
  color: var(--fg-on-deep-muted);
}
.hero-fileline::before {
  content: ""; position: absolute; left: var(--gutter); right: var(--gutter);
  top: -0.9rem; height: 1px; background: var(--rule-on-deep);
}
@media (max-width: 700px) { .hero-fileline span + span { display: none; } }

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding-bottom: clamp(5.5rem, 12vh, 9rem);
  padding-top: 9rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  max-width: 13ch;
}
.hero h1 .h1-line {
  display: block; overflow: hidden;
  /* the mask window must include italic descenders (y, g) */
  padding-bottom: 0.16em; margin-bottom: -0.16em;
}
.hero h1 .h1-line > span { display: block; }
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--accent-on-deep);
  position: relative; white-space: nowrap;
}
.hero h1 em .em-rule {
  position: absolute; left: 0.02em; right: 0.06em; bottom: 0.02em;
  height: 1px; background: var(--cd-gold-60);
  transform: scaleX(0); transform-origin: left center;
}
.js .hero h1 .h1-line > span { transform: translateY(110%); }

.hero-lede {
  margin-top: 2.2rem;
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-lede); line-height: 1.62;
  color: var(--fg-on-deep-muted);
  max-width: 33em;
}
.hero-cta-row {
  margin-top: 2.8rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2rem;
}
.js .hero-lede, .js .hero-cta-row { opacity: 0; transform: translateY(22px); }

.cta {
  display: inline-flex; align-items: center; gap: 0.7em;
  text-decoration: none;
  font-size: 0.95rem; letter-spacing: 0.02em; font-weight: 500;
  color: var(--cd-warm-cream);
  background: var(--cd-coral-pop);
  padding: 1em 1.9em; border-radius: 100px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(232,129,74,0.38); }
.cta .cta-arrow { transition: transform 0.4s var(--ease-out); }
.cta:hover .cta-arrow { transform: translateX(4px); }
.cta-note { font-size: var(--fs-small); color: var(--fg-on-deep-muted); max-width: 24em; line-height: 1.5; }

.hero-cue {
  position: absolute; bottom: 1.6rem; right: var(--gutter);
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--fg-on-deep-muted);
  z-index: 2;
}
.hero-cue-line { width: 44px; height: 1px; background: var(--cd-cream-20); position: relative; overflow: hidden; }
.hero-cue-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--accent-on-deep);
  transform: translateX(-100%);
  animation: cue-sweep 2.6s var(--ease-out) infinite;
}
@keyframes cue-sweep { 0% { transform: translateX(-100%);} 55% { transform: translateX(0);} 100% { transform: translateX(100%);} }
@media (prefers-reduced-motion: reduce) { .hero-cue-line::after { animation: none; } }

/* ============================================================
   §01 — THE RECORD — redactions lift
   ============================================================ */
.decided-grid { display: grid; gap: 3rem; }
@media (min-width: 980px) {
  .decided-grid { grid-template-columns: 5fr 6fr; gap: clamp(3rem, 6vw, 6rem); }
  .decided-sticky { position: sticky; top: 9rem; align-self: start; }
}

.redact-list { list-style: none; margin-top: 2.6rem; }
.redact-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 3.2rem;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-h3); line-height: 1.35;
}
.redact-list li:last-child { border-bottom: 1px solid var(--rule-soft); }
.redact-list .r-index {
  position: absolute; left: 0; top: 1.45rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em;
  color: var(--accent);
}
.redact-list .r-text { position: relative; display: inline-block; }
/* Redaction bars removed - the lines now read plainly and simply fade in. */
.redact-list .r-bar { display: none; }
.js .redact-list .r-text > span { opacity: 0; }
.js .redact-list .is-in .r-text > span {
  opacity: 1;
  transition: opacity 0.8s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .js .redact-list .r-text > span { opacity: 1 !important; }
}

.decided-closer { margin-top: 2.6rem; max-width: 34em; }

/* ============================================================
   §02 — THE DOCKET — six numbered moments
   ============================================================ */
.docket { list-style: none; counter-reset: docket; }
.docket li {
  counter-increment: docket;
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  align-items: baseline;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-top: 1px solid var(--rule);
  transition: background 0.5s var(--ease-out);
}
.docket li:last-child { border-bottom: 1px solid var(--rule); }
.docket .d-no {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em;
  color: var(--fg-muted);
  transition: color 0.4s;
  min-width: 4.2em;
}
.docket .d-no::before { content: "No. " counter(docket, decimal-leading-zero); }
.docket p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem); line-height: 1.38;
  max-width: 28em;
  transition: transform 0.5s var(--ease-out);
}
.docket li:hover .d-no { color: var(--accent); }
.docket li:hover p { transform: translateX(0.4em); }
.docket li::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.7s var(--ease-out);
}
.docket li:hover::after { width: 100%; }

/* ============================================================
   BREATHERS - full-bleed photo moments between sections
   ============================================================ */
.breather {
  position: relative;
  height: clamp(340px, 62vh, 620px);
  overflow: hidden;
}
.breather-short { height: clamp(260px, 46vh, 480px); }
.breather img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  filter: saturate(0.88);
}
.breather-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(38,47,37,0.34) 0%, rgba(38,47,37,0.06) 30%,
                    rgba(38,47,37,0.06) 65%, rgba(38,47,37,0.38) 100%);
}

/* Laurie's band - lighter veil (the photo is bright), name clearly marked */
.breather-laurie img { object-position: 62% 30%; filter: none; }
.breather-laurie .breather-veil {
  background: linear-gradient(180deg, rgba(38,47,37,0.14) 0%, transparent 30%,
              transparent 60%, rgba(38,47,37,0.30) 100%);
}
.breather-caption {
  position: absolute; left: var(--gutter); bottom: clamp(1.2rem, 3vw, 2.2rem);
  color: var(--cd-warm-cream);
  text-shadow: 0 1px 12px rgba(30,38,32,0.5);
}
.breather-caption .bc-name {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}
.breather-caption .bc-role {
  display: block; margin-top: 0.35rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.85;
}
@media (max-width: 700px) { .breather-laurie img { object-position: 68% 25%; } }

/* ============================================================
   CLIENT PROOF - the standalone quote band + the fee pull-quote
   ============================================================ */
.quote-band {
  background: linear-gradient(180deg, var(--cd-forest-deep), var(--cd-deep-forest));
  color: var(--fg-on-deep);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.qb-quote { max-width: 42em; margin-inline: auto; text-align: center; }
.qb-quote p {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2.1rem); line-height: 1.45;
  color: var(--cd-warm-cream);
}
.qb-quote p::before {
  content: "\201C";
  display: block;
  font-size: 2.2em; line-height: 0.6;
  color: var(--accent-on-deep);
  margin-bottom: 0.35em;
  font-style: normal;
}
.qb-quote cite {
  display: block; margin-top: 1.6rem;
  font-family: var(--mono); font-style: normal;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-on-deep);
}

.pull-quote {
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  max-width: 30em;
  padding-top: 1.8rem;
  border-top: 1px solid var(--cd-gold-45);
}
.pull-quote p {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem); line-height: 1.55;
  color: color-mix(in srgb, var(--fg) 88%, transparent);
}
.pull-quote cite {
  display: block; margin-top: 1rem;
  font-family: var(--mono); font-style: normal;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}

/* the references block */
.refs { background: var(--bg-soft); }
.refs-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 900px) { .refs-grid { grid-template-columns: repeat(3, 1fr); } }
.ref-card {
  background: var(--bg);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex; flex-direction: column;
}
.ref-card p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.6;
}
.ref-card p::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem; line-height: 0.5;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.ref-card cite {
  margin-top: auto; padding-top: 1.4rem;
  font-family: var(--mono); font-style: normal;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted);
}
.refs-cta { margin-top: clamp(2.8rem, 5vw, 4rem); text-align: center; }

.engagement-cta { margin-top: clamp(3rem, 6vw, 4.5rem); text-align: center; }

/* ============================================================
   §03 - THE ENGAGEMENT - dark panel, two documents
   ============================================================ */
.engagement {
  background: linear-gradient(180deg, var(--cd-forest-deep) 0%, var(--cd-deep-forest) 30%, var(--cd-deep-forest) 78%, var(--cd-forest-deeper) 100%);
  color: var(--fg-on-deep);
}
.engagement .sect-title em { color: var(--accent-on-deep); }

.spec-band {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-on-deep);
  border-block: 1px solid var(--rule-on-deep);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.spec-band > div {
  background: var(--cd-deep-forest);
  padding: clamp(1.6rem, 3vw, 2.6rem) 1rem;
  text-align: center;
}
.spec-value {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  white-space: nowrap;
}
.spec-value em { font-style: italic; font-weight: 400; color: var(--accent-on-deep); }
.spec-num { font-size: 1.45em; font-weight: 400; color: var(--accent-on-deep); line-height: 1; }
.js [data-spec] .spec-value { opacity: 0; transform: scale(1.06); filter: blur(6px); }
.js [data-spec].is-in .spec-value {
  opacity: 1; transform: none; filter: blur(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}
.js [data-spec].is-in > div:nth-child(2) .spec-value { transition-delay: 0.12s; }
.js [data-spec].is-in > div:nth-child(3) .spec-value { transition-delay: 0.24s; }
.js [data-spec].is-in > div:nth-child(4) .spec-value { transition-delay: 0.36s; }
@media (min-width: 760px) { .spec-band { grid-template-columns: repeat(4, 1fr); } }

.documents { display: grid; gap: clamp(1.6rem, 3vw, 2.5rem); }
@media (min-width: 900px) { .documents { grid-template-columns: 1fr 1fr; } }

/* document covers — cream paper on the dark table */
.doc-card {
  background: var(--cd-warm-cream);
  color: var(--fg);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.doc-card:hover { transform: translateY(-6px); box-shadow: 0 44px 80px -34px rgba(0,0,0,0.6); }
.doc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.6rem;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fg-muted);
}
.doc-head .doc-index { color: var(--accent); }
.doc-body { padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 3vw, 2.4rem) clamp(1.8rem, 3vw, 2.6rem); }
.doc-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); line-height: 1.2;
}
.doc-sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  color: var(--accent); margin-top: 0.3rem;
  font-size: 1.02rem;
}
.doc-list { list-style: none; margin-top: 1.6rem; }
.doc-list li {
  position: relative;
  padding: 0.85em 0 0.85em 1.6em;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.98rem; line-height: 1.55;
  color: color-mix(in srgb, var(--fg) 88%, transparent);
}
.doc-list li::before {
  content: ""; position: absolute; left: 0; top: 1.5em;
  width: 0.7em; height: 1px; background: var(--accent);
}

.method-line {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--cd-gold-25);
  border-radius: var(--radius-card);
  background: linear-gradient(120deg, var(--cd-gold-12), transparent 55%);
}
.method-line p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.55;
  max-width: 44em;
}

/* the ten days — a thread that draws itself */
.timeline { margin-top: clamp(3.5rem, 7vw, 6rem); }
.timeline-head { margin-bottom: 2.4rem; }
.timeline-track { list-style: none; position: relative; padding-left: 2rem; }
.tl-rail {
  position: absolute; left: 5px; top: 0.5rem; bottom: 0.5rem; width: 1px;
  background: var(--cd-cream-14);
}
.tl-rail::after {
  content: ""; position: absolute; inset: 0;
  background: var(--accent-on-deep);
  transform: scaleY(var(--tl-draw, 0)); transform-origin: top center;
}
.timeline-track li { position: relative; padding-bottom: 2rem; }
.timeline-track li:last-child { padding-bottom: 0; }
.timeline-track li::before {
  content: ""; position: absolute; left: calc(-2rem + 2px); top: 0.52em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cd-deep-forest);
  border: 1px solid var(--cd-cream-20);
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}
.timeline-track li.is-lit::before {
  background: var(--accent-on-deep); border-color: var(--accent-on-deep);
  box-shadow: 0 0 12px rgba(201,171,124,0.5);
}
.tl-day {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-on-deep);
  margin-bottom: 0.25rem;
}
.tl-what { font-family: var(--serif); font-weight: 300; font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--fg-on-deep); max-width: 30em; }

@media (min-width: 980px) {
  .timeline-track { display: grid; grid-template-columns: repeat(5, 1fr); padding-left: 0; padding-top: 2.2rem; gap: 1.4rem; }
  .tl-rail { left: 0.25rem; right: 0.25rem; top: 3px; bottom: auto; width: auto; height: 1px; }
  .tl-rail::after { transform: scaleX(var(--tl-draw, 0)); transform-origin: left center; }
  .timeline-track li { padding-bottom: 0; }
  .timeline-track li::before { left: 0; top: -2.2rem; }
}

.doc-note {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--rule-on-deep);
  max-width: 46em;
}
.doc-note p { color: var(--fg-on-deep-muted); font-size: 0.98rem; }

/* ============================================================
   §04 — WHAT YOU WALK IN WITH — the handover
   ============================================================ */
.walk-list { list-style: none; }
.walk-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: baseline;
  padding: clamp(0.8rem, 1.8vw, 1.2rem) 0;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.3rem, 2.8vw, 2rem); line-height: 1.3; letter-spacing: -0.01em;
}
.walk-list .w-no {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em;
  color: var(--accent); min-width: 2.4em;
}
@media (min-width: 900px) {
  .walk-list li:nth-child(2) { padding-left: 4vw; }
  .walk-list li:nth-child(3) { padding-left: 8vw; }
  .walk-list li:nth-child(4) { padding-left: 12vw; }
  .walk-list li:nth-child(5) { padding-left: 16vw; }
  .walk-list li:nth-child(6) { padding-left: 20vw; }
}

/* ============================================================
   §05 — THE FIT — split panel
   ============================================================ */
.audience-grid { display: grid; }
@media (min-width: 980px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
.audience-for  { background: var(--bg-soft); }
.audience-not  { background: var(--cd-deep-navy); color: var(--fg-on-deep); }
.audience-for > div, .audience-not > div {
  padding: var(--sect-y) var(--gutter);
  max-width: calc(var(--stage) / 2);
}
.audience-for  > div { margin-left: auto; padding-right: clamp(2rem, 5vw, 5rem); }
.audience-not  > div { margin-right: auto; padding-left: clamp(2rem, 5vw, 5rem); }
.audience-grid h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.2;
  margin-bottom: 1.6rem;
}
.audience-not .prose p { color: var(--fg-on-deep-muted); }

/* ============================================================
   §06 — THE FEE — one monumental line
   ============================================================ */
.fee-frame { text-align: center; max-width: 46em; margin-inline: auto; }
.fee-line {
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: -0.01em;
}
.fee-line em { font-style: italic; font-weight: 400; color: var(--accent); }
.fee-prose { margin-top: 2.2rem; max-width: 36em; margin-inline: auto; }
.fee-prose p { color: color-mix(in srgb, var(--fg) 82%, transparent); }
.fee-cta { margin-top: 2.8rem; }

/* ============================================================
   §07 — WHO I AM
   ============================================================ */
.who { background: var(--bg-soft); }
.who-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 980px) { .who-grid { grid-template-columns: 5fr 7fr; gap: clamp(3rem, 6vw, 6rem); } }

.who-portrait { position: relative; }
.who-portrait img {
  border-radius: var(--radius-plate);
  filter: saturate(0.92);
  width: 100%;
}
.who-frame {
  position: absolute; inset: clamp(-14px, -1.4vw, -10px); pointer-events: none;
  border-radius: calc(var(--radius-plate) + 8px);
}
.who-frame::before, .who-frame::after {
  content: ""; position: absolute; background: var(--cd-gold-45);
}
.who-frame::before { left: 0; right: 0; top: 0; height: 1px; transform: scaleX(var(--frame-draw, 0)); transform-origin: left; }
.who-frame::after  { left: 0; top: 0; bottom: 0; width: 1px; transform: scaleY(var(--frame-draw, 0)); transform-origin: top; }
.who-portrait figcaption {
  margin-top: 1.1rem;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fg-muted);
}
.who-closer {
  margin-top: 2.4rem;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--accent);
}

/* ============================================================
   §08 — SEALED — the pressed seal
   ============================================================ */
.sealed {
  background: linear-gradient(180deg, var(--cd-navy-deep), var(--cd-deep-navy));
  color: var(--fg-on-deep);
}
.sealed .sect-title em { color: var(--accent-on-deep); }
.sealed-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 980px) { .sealed-grid { grid-template-columns: 6fr 5fr; gap: clamp(3rem, 6vw, 6rem); } }

.seal-wrap { display: flex; justify-content: center; order: -1; }
@media (min-width: 980px) { .seal-wrap { order: 0; } }
.seal {
  width: clamp(150px, 20vw, 220px); height: auto;
  transform: scale(1.5); opacity: 0;
}
.seal.is-pressed {
  transform: scale(1); opacity: 1;
  transition: transform 0.8s var(--ease-press), opacity 0.5s ease-out;
}
.seal .seal-ring-text { animation: seal-turn 60s linear infinite; transform-origin: 50% 50%; }
@media (prefers-reduced-motion: reduce) {
  .seal { transform: none; opacity: 1; }
  .seal .seal-ring-text { animation: none; }
}

.sealed-terms { list-style: none; }
.sealed-terms li {
  position: relative;
  padding: 1.2em 0 1.2em 1.8em;
  border-top: 1px solid var(--rule-on-deep);
  color: var(--fg-on-deep-muted); line-height: 1.65; font-size: 0.98rem;
}
.sealed-terms li:last-child { border-bottom: 1px solid var(--rule-on-deep); }
.sealed-terms li::before {
  content: ""; position: absolute; left: 0; top: 1.95em;
  width: 0.8em; height: 1px; background: var(--accent-on-deep);
}
.sealed-close {
  margin-top: 2rem;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5;
}
.sealed-close .gold-em { color: var(--accent-on-deep); }

@keyframes seal-turn { to { transform: rotate(360deg); } }

/* ============================================================
   §09 - THE WINDOW - the anaphora, under the veil
   ============================================================ */
.window-sect {
  position: relative;
  padding-block: clamp(6rem, 16vw, 12rem);
  color: var(--fg-on-deep);
  overflow: hidden;
}
.window-bg { position: absolute; inset: 0; }
.window-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: saturate(0.8);
}
.window-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(38, 47, 37, 0.90) 0%,
    rgba(38, 47, 37, 0.82) 45%,
    rgba(38, 47, 37, 0.88) 100%);
}
.window-content { position: relative; z-index: 1; }
.window-sect .sect-title { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.window-sect .sect-title em { color: var(--accent-on-deep); }

.before-list { list-style: none; }
.before-list li {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.25rem, 2.8vw, 1.9rem); line-height: 1.4;
  padding: clamp(0.5rem, 1.2vw, 0.8rem) 0;
  color: var(--fg-on-deep);
}
.before-list li em { font-style: italic; font-weight: 400; color: var(--accent-on-deep); }

/* the payoff - the sixth and loudest beat of the anaphora */
.before-closer { margin-top: clamp(2.8rem, 6vw, 4.5rem); }
.before-closer .bc-after {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-lede); line-height: 1.6;
  color: var(--fg-on-deep-muted);
  max-width: 30em;
}
.before-closer .bc-lever {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--accent-on-deep);
}

/* ============================================================
   §10 — FINAL
   ============================================================ */
.final {
  position: relative;
  background: linear-gradient(180deg, var(--cd-forest-deeper), var(--cd-deep-forest) 45%, var(--cd-forest-deep));
  color: var(--fg-on-deep);
  padding-block: var(--sect-y);
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46% 40% at 50% 34%, rgba(201,171,124,0.10), transparent 72%);
  animation: final-breathe 9s ease-in-out infinite alternate;
}
@keyframes final-breathe { from { opacity: 0.5; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .final::before { animation: none; } }
.final h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-h2); line-height: var(--lh-heading);
  max-width: 16ch; margin-inline: auto;
}
.final h2 em { font-style: italic; font-weight: 400; color: var(--accent-on-deep); }
.final-prose { margin-top: 2.2rem; max-width: 36em; margin-inline: auto; }
.final-prose p { color: var(--fg-on-deep-muted); }
.final-prose p + p { margin-top: 1.1em; }
.final-cta { margin-top: 3rem; position: relative; z-index: 1; }

/* ============================================================
   RECRUITER PAGE (/before-you-sign) - compact hero + ghost CTA
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(178deg, var(--cd-forest-deep) 0%, var(--cd-deep-forest) 60%, var(--cd-forest-deeper) 100%);
  color: var(--fg-on-deep);
  padding-top: clamp(9rem, 18vh, 12rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(52% 42% at 70% 20%, rgba(201,171,124,0.12), transparent 70%);
}
.page-hero .hero-fileline { top: calc(1.1rem + 3.4rem); }
.page-hero-content { position: relative; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: var(--lh-tight); letter-spacing: -0.015em;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-on-deep); }
.page-hero .hero-lede { margin-top: 1.8rem; }
.referral-line {
  margin-top: 1.6rem;
  max-width: 44em;
  font-size: 0.98rem; line-height: 1.7;
  color: var(--fg-on-deep-muted);
  border-left: 2px solid var(--cd-gold-45);
  padding-left: 1.2rem;
}
.inline-link { color: var(--accent-on-deep); text-decoration: underline; text-underline-offset: 3px; }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 0.7em;
  text-decoration: none;
  font-size: 0.95rem; letter-spacing: 0.02em; font-weight: 500;
  color: var(--cd-warm-cream);
  border: 1px solid var(--cd-cream-20);
  padding: 1em 1.9em; border-radius: 100px;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.cta-ghost:hover { border-color: var(--accent-on-deep); transform: translateY(-2px); }
.cta-ghost .cta-arrow { transition: transform 0.4s var(--ease-out); }
.cta-ghost:hover .cta-arrow { transform: translateX(4px); }

/* what this is not - the lanes, held as rows */
.not-list { list-style: none; }
.not-list li {
  padding: clamp(1.3rem, 2.8vw, 2rem) 0;
  border-top: 1px solid var(--rule-soft);
}
.not-list li:last-child { border-bottom: 1px solid var(--rule-soft); }
.nl-lead {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.35rem, 2.8vw, 2rem); line-height: 1.3;
  letter-spacing: -0.01em;
}
.nl-tail {
  display: block; margin-top: 0.5rem;
  font-size: 0.98rem; line-height: 1.65;
  color: var(--fg-muted);
  max-width: 40em;
}

.final-fine {
  margin-top: 1.4rem;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em;
  color: var(--fg-on-deep-muted);
  max-width: 40em; margin-inline: auto;
}
.footer-tagline-long { max-width: 46em; margin-inline: auto; font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   LEGAL PAGES (/terms, /privacy)
   ============================================================ */
.nav-solid {
  background: color-mix(in srgb, var(--cd-warm-cream) 88%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rule-soft);
}
.nav-solid .nav-mark { color: var(--fg); }
.nav-solid .nav-links a { color: var(--fg-muted); }

.legal-hero {
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule-soft);
}
.legal-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: var(--lh-heading); letter-spacing: -0.015em;
}
.legal-date {
  margin-top: 0.9rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--fg-muted);
}

.legal-body { padding-block: clamp(3rem, 6vw, 5rem) var(--sect-y-sm); }
.legal-content { max-width: 46em; }
.legal-content h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.25;
  margin-top: 2.8rem; margin-bottom: 1rem;
}
.legal-content h3 {
  font-family: var(--sans); font-weight: 500;
  font-size: 0.95rem;
  margin-top: 1.8rem; margin-bottom: 0.6rem;
}
.legal-content p, .legal-content li {
  font-size: 0.94rem; line-height: 1.75;
  color: color-mix(in srgb, var(--fg) 76%, transparent);
  margin-bottom: 0.8rem;
}
.legal-content strong { font-weight: 500; color: var(--fg); }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.35rem; }
.legal-content hr { border: none; border-top: 1px solid var(--rule-soft); margin: 2.4rem 0; }
.legal-content table {
  width: 100%; border-collapse: collapse;
  margin: 1.2rem 0 1.6rem;
  font-size: 0.85rem;
}
.legal-content th, .legal-content td {
  text-align: left; vertical-align: top;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--rule-soft);
  line-height: 1.55;
  color: color-mix(in srgb, var(--fg) 76%, transparent);
}
.legal-content th {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  background: var(--bg-soft);
}
@media (max-width: 700px) {
  .legal-content table { display: block; overflow-x: auto; }
}

/* ============================================================
   FOOTER — the lockup, at scale
   ============================================================ */
.footer { background: var(--bg); padding: clamp(4rem, 8vw, 6.5rem) 0 2.2rem; }
.footer-lockup { text-align: center; color: var(--fg); }
/* the stacked CO. DEFINED lockup — Poppins spaced caps, as the logo */
.footer-lockup .lk-co {
  display: block;
  font-family: var(--wordmark); font-weight: 200;
  font-size: clamp(0.8rem, 1.6vw, 1.1rem);
  letter-spacing: 0.55em; text-indent: 0.55em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.footer-lockup .lk-defined {
  display: block;
  font-family: var(--wordmark); font-weight: 200;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  letter-spacing: 0.32em; text-indent: 0.32em;
  text-transform: uppercase;
  line-height: 1;
}
.footer-tagline {
  text-align: center; margin-top: 1.6rem;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  color: var(--fg-muted);
}
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem 2.4rem;
  margin-top: 2.6rem;
}
.footer-links a {
  font-size: 0.88rem; text-decoration: none; color: var(--fg-muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.35s, border-color 0.35s;
}
.footer-links a:hover { color: var(--accent); border-color: var(--accent); }
.footer-fine {
  margin-top: 3.5rem; padding-top: 1.4rem;
  border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted);
}
/* Mobile: keep the spaced wordmark and links inside the viewport */
@media (max-width: 480px) {
  .footer-lockup .lk-defined { letter-spacing: 0.2em; text-indent: 0.2em; }
  .footer-links { gap: 0.9rem 1.6rem; }
  .footer-links a { font-size: 0.82rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-body { padding-block: clamp(2.5rem, 5vw, 4rem) var(--sect-y-sm); }

.contact-grid { display: grid; gap: 3.5rem; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 5.5rem; }
}

.contact-form .field { margin-bottom: 1.6rem; }
.field-row { display: grid; gap: 1.6rem; margin-bottom: 1.6rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } .field-row .field { margin-bottom: 0; } }

.field label {
  display: block;
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 0.55rem;
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-card);
  padding: 0.9em 1.05em;
  font-family: var(--sans); font-size: 1rem; color: var(--fg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cd-gold-60);
  box-shadow: 0 0 0 3px var(--cd-gold-12);
}
.field ::placeholder { color: var(--cd-cool-neutral); opacity: 0.75; }

.hp-field { position: absolute; left: -9999px; }

.contact-submit {
  display: inline-flex; align-items: center;
  margin-top: 0.4rem;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--cd-warm-cream);
  background: var(--cd-deep-forest);
  border: none; border-radius: 100px; cursor: pointer;
  padding: 1em 1.9em;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s;
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(47, 58, 46, 0.28); }
.contact-submit:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }

.contact-success h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--fs-sect); line-height: var(--lh-heading);
  margin: 0.8rem 0 0.9rem;
}
.contact-success p { font-size: var(--fs-lede); color: var(--fg-muted); line-height: var(--lh-body); max-width: 30em; }

.contact-error {
  margin-top: 1.4rem; padding: 1.1rem 1.3rem;
  border: 1px solid var(--cd-gold-45); border-radius: var(--radius-card);
  background: var(--cd-gold-12);
}
.contact-error p { font-size: var(--fs-small); line-height: 1.6; }
.contact-error a { color: var(--accent); }

.contact-aside .aside-block { margin-bottom: 2.1rem; }
.aside-label {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 0.45rem;
}
.aside-value { font-size: var(--fs-body); color: var(--fg); text-decoration: none; margin: 0; }
a.aside-value { border-bottom: 1px solid var(--cd-gold-45); transition: border-color 0.3s, color 0.3s; }
a.aside-value:hover { color: var(--accent); border-color: var(--accent); }

.contact-note {
  border-top: 1px solid var(--rule-soft);
  padding-top: 1.6rem; margin-top: 2.4rem;
}
.contact-note p { font-size: var(--fs-small); color: var(--fg-muted); line-height: var(--lh-body); max-width: 26em; }

.contact-lede {
  margin-top: 1.1rem;
  font-size: var(--fs-lede); color: var(--fg-muted);
  line-height: var(--lh-body); max-width: 32em;
}
