/* AS Enterprise AI Advisory — site styles
   Navy, ivory and bronze. Cormorant Garamond for display, Manrope for text.
   Light and dark palettes follow the system preference. */

:root {
  --ivory: #f5f0e6;
  --ivory-2: #ede6d8;
  --navy: #0e1f38;
  --navy-2: #14284a;
  --ink: #1a1d24;
  --gold: #b08d57;
  --gold-soft: #d6c39e;
  --bronze: #7f6130;
  --cream: #f5f0e6;
  --cream-muted: #b7b0a3;

  --bg: var(--ivory);
  --bg-alt: var(--ivory-2);
  --text: var(--ink);
  --muted: #6a665f;
  --rule: rgba(14, 31, 56, 0.16);
  --rule-navy: rgba(245, 240, 230, 0.18);

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --measure: 64ch;
  --container: 76rem;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section: clamp(4.5rem, 9vw, 8rem);
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1526;
    --bg-alt: #0f1b30;
    --navy: #12213d;
    --navy-2: #182c4f;
    --text: #ede7da;
    --muted: #a8a196;
    --gold: #c9a96e;
    --bronze: #c9a96e;
    --cream: #ede7da;
    --cream-muted: #a8a196;
    --rule: rgba(237, 231, 218, 0.14);
    --rule-navy: rgba(237, 231, 218, 0.16);
  }
}

/* ---------- Reset and base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); font-weight: 500; line-height: 1.02; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
h4 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze);
  margin: 0 0 1rem;
}

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--gold); color: var(--navy); padding: 0.6rem 1rem;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ---------- Bands ---------- */
.band-navy { background: var(--navy); color: var(--cream); }
.band-navy .eyebrow, .band-navy h4 { color: var(--gold); }
.band-navy .muted { color: var(--cream-muted); }
.band-alt { background: var(--bg-alt); }

/* ---------- Header and navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); color: var(--cream);
  border-bottom: 1px solid var(--rule-navy);
}
.site-header .container {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 4.5rem;
}
.wordmark {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--cream); text-decoration: none; white-space: nowrap;
}
.wordmark:hover { color: var(--gold-soft); text-decoration: none; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2rem; }
.site-nav a {
  color: var(--cream-muted); text-decoration: none; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--cream); border-bottom-color: var(--gold); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--gold); color: var(--cream);
  font: inherit; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; cursor: pointer;
}
@media (max-width: 59.99rem) {
  .js .nav-toggle { display: inline-block; }
  .js .site-header .container { position: static; }
  .js .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy); border-bottom: 1px solid var(--rule-navy);
  }
  .js .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.5rem var(--gutter) 1rem; }
  .site-nav li + li { border-top: 1px solid var(--rule-navy); }
  .site-nav a { display: block; padding: 0.9rem 0; font-size: 0.85rem; border-bottom: 0; }
  html:not(.js) .site-header .container { flex-wrap: wrap; padding-block: 0.75rem; }
  html:not(.js) .site-nav ul { flex-direction: row; flex-wrap: wrap; gap: 0.6rem 1.2rem; padding: 0; }
  html:not(.js) .site-nav a { padding: 0; }
  html:not(.js) .site-nav li + li { border: 0; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section-head { margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze);
  margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 2.25rem; height: 1px; background: var(--gold); flex: none; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.25rem); line-height: 1.6; }
.muted { color: var(--muted); }

/* ---------- Media ---------- */
.media { position: relative; }
/* The tint keeps a frame reading as a deliberate panel while its image loads. */
.media img { width: 100%; height: 100%; object-fit: cover; background: rgba(176, 141, 87, 0.08); }
.media.framed::after {
  content: ""; position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold); opacity: 0.75; pointer-events: none;
}
.media.framed { margin-right: 1.1rem; margin-bottom: 1.1rem; }
.media.landscape img { aspect-ratio: 3 / 2; }
.media.portrait img { aspect-ratio: 4 / 5; }
.media.tall img { aspect-ratio: 2 / 3; }
.art { position: absolute; pointer-events: none; user-select: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); }
.hero .art { left: -16rem; top: -12rem; width: 54rem; opacity: 0.16; }
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 60rem) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: clamp(3rem, 6vw, 6rem); } }
.hero h1 { max-width: 19ch; margin: 1.3rem 0 1.6rem; }
.hero .lede { color: var(--cream-muted); max-width: 50ch; }
.hero .cta-row { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; }
.hero-meta { color: var(--cream-muted); font-size: 0.9rem; margin: 0; letter-spacing: 0.02em; }
.hero-media img { aspect-ratio: 4 / 5; max-height: 40rem; }
@media (max-width: 59.99rem) { .hero-media img { aspect-ratio: 3 / 2; max-height: none; } }

.button {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 1.7rem; border: 1px solid var(--gold);
}
.button:hover { background: var(--gold-soft); border-color: var(--gold-soft); text-decoration: none; }
.button.ghost { background: transparent; color: var(--cream); }
.button.ghost:hover { background: var(--gold); color: var(--navy); }

/* ---------- What I do ---------- */
.services { list-style: none; margin: 0; padding: 0; display: grid; counter-reset: svc; border-top: 1px solid var(--rule); }
.services li { counter-increment: svc; padding: 2.4rem 0; border-bottom: 1px solid var(--rule); }
.services li::before {
  content: counter(svc, upper-roman);
  display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.14em; color: var(--bronze); margin-bottom: 0.9rem;
}
.services h3 { margin-bottom: 0.5em; }
.services p { max-width: 50ch; }
@media (min-width: 48rem) {
  .services { grid-template-columns: 1fr 1fr; }
  .services li:nth-child(odd) { padding-right: clamp(2rem, 4vw, 4rem); border-right: 1px solid var(--rule); }
  .services li:nth-child(even) { padding-left: clamp(2rem, 4vw, 4rem); }
}

/* ---------- How I work ---------- */
.pullquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.25;
  max-width: 24ch; margin: 0 0 1.2rem;
}
.pullquote::before { content: ""; display: block; width: 3rem; height: 1px; background: var(--gold); margin-bottom: 1.4rem; }
.pullquote-attrib { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2.5rem; }

.method-diagram { margin: 0 0 clamp(3rem, 6vw, 5rem); }
.method-diagram svg { width: 100%; height: auto; font-family: var(--sans); }
.method-diagram .line { stroke: var(--gold); stroke-width: 1; opacity: 0.7; }
.method-diagram .node { fill: var(--bg-alt); stroke: var(--gold); stroke-width: 1.5; }
.method-diagram .node.final { fill: var(--navy); stroke: var(--navy); }
.method-diagram .num { fill: var(--bronze); font-family: var(--serif); font-size: 24px; font-weight: 600; }
.method-diagram .num.final { fill: var(--gold); }
.method-diagram .label { fill: var(--text); font-size: 17px; font-weight: 600; }
.method-diagram .sublabel { fill: var(--muted); font-size: 13.5px; }
@media (max-width: 47.99rem) { .method-diagram { display: none; } }

.method-grid { display: grid; gap: 3rem; }
@media (min-width: 64rem) {
  .method-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr); gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .method-aside { position: sticky; top: 6.5rem; }
}
.method-aside .media { max-width: 24rem; margin-top: 1rem; }
/* A tall image is too big a block before the steps on a narrow screen. */
@media (max-width: 63.99rem) {
  .method-aside .media { max-width: 34rem; }
  .method-aside .media.tall img { aspect-ratio: 3 / 2; }
}

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 0 1rem;
  padding: 2rem 0; border-top: 1px solid var(--rule);
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 2.2rem; font-weight: 500; line-height: 1; color: var(--bronze);
  grid-row: 1 / span 2; padding-top: 0.2rem;
}
.steps h3 { margin-bottom: 0.4em; font-size: clamp(1.35rem, 2vw, 1.65rem); }
.steps p { max-width: 58ch; }
@media (max-width: 40rem) {
  .steps li { grid-template-columns: 3rem 1fr; }
  .steps li::before { font-size: 1.7rem; }
}
.method-close { margin-top: 2.5rem; }

/* ---------- Track record ---------- */
.record-intro { padding-block: var(--section) clamp(3rem, 6vw, 5rem); }
.figure-band { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 6rem); }
.figure-band .art { right: -6%; bottom: -8%; width: 72%; opacity: 0.28; }
.figure-band .container { position: relative; }

.headline-figure { display: grid; gap: 0.4rem; margin-bottom: 3rem; }
.headline-figure .value {
  font-family: var(--serif); font-weight: 500; font-size: clamp(4rem, 10vw, 7.5rem); line-height: 0.95;
  letter-spacing: -0.02em; color: var(--gold); font-variant-numeric: lining-nums tabular-nums;
}
.headline-figure .label { font-size: 1.05rem; font-weight: 600; color: var(--cream); }
.headline-figure .note { color: var(--cream-muted); max-width: 60ch; margin: 0; }

.figures { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.5rem 0; }
.figures li { flex: 1 1 10rem; padding: 0.3rem 1.5rem 0.3rem 1.25rem; border-left: 1px solid var(--rule-navy); }
.figures .value {
  display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  line-height: 1; letter-spacing: -0.01em; font-variant-numeric: lining-nums tabular-nums; color: var(--cream);
}
.figures .label { display: block; color: var(--cream-muted); font-size: 0.85rem; margin-top: 0.4rem; line-height: 1.35; letter-spacing: 0.02em; }
.figures.on-light li { border-left-color: var(--rule); }
.figures.on-light .value { color: var(--text); }
.figures.on-light .label { color: var(--muted); }

.record-detail { padding-block: clamp(3.5rem, 7vw, 6rem) var(--section); }
.record-block + .record-block { margin-top: clamp(3.5rem, 7vw, 5.5rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--rule); }
.record-block h3 { margin-bottom: 0.8em; }

.outcomes, .workflows { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.8rem; }
.outcomes li, .workflows li { padding-left: 1.5rem; position: relative; max-width: 66ch; }
.outcomes li::before, .workflows li::before {
  content: ""; position: absolute; left: 0; top: 0.8em; width: 0.6rem; height: 1px; background: var(--gold);
}
.two-col { display: grid; gap: 2.5rem 4rem; }
@media (min-width: 56rem) { .two-col { grid-template-columns: 1fr 1fr; } }

.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 60rem) {
  .split { grid-template-columns: 1.2fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
  .split.media-first { grid-template-columns: 1fr 1.2fr; }
}

/* ---------- Credentials ---------- */
.creds { list-style: none; margin: 0; padding: 0; display: grid; border-top: 1px solid var(--rule); }
.creds li {
  display: grid; grid-template-columns: minmax(9rem, 15rem) 1fr; gap: 0.4rem 1.5rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--rule); align-items: baseline;
}
.creds .cred { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
.creds .cred-note { color: var(--muted); }
@media (min-width: 56rem) {
  .creds { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 4rem); }
}
@media (max-width: 30rem) { .creds li { grid-template-columns: 1fr; gap: 0.15rem; } }

/* ---------- Background ---------- */
.bio { display: flex; flex-wrap: wrap; gap: clamp(2.5rem, 5vw, 5rem); align-items: flex-start; }
.portrait { flex: 0 1 20rem; margin: 0; }
.portrait img { aspect-ratio: 4 / 5; }
.portrait figcaption { margin-top: 1.6rem; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.02em; }
.bio-text { flex: 1 1 30rem; min-width: 0; }
.timeline { list-style: none; margin: 2rem 0 0; padding: 0; }
.timeline li {
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 0.2rem 1.5rem;
  padding: 1.05rem 0; border-top: 1px solid var(--rule);
}
.timeline li:last-child { border-bottom: 1px solid var(--rule); }
.timeline .years { color: var(--bronze); font-variant-numeric: tabular-nums; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; padding-top: 0.3rem; }
.timeline .role { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1.25; }
.timeline .org { color: var(--muted); grid-column: 2; }
@media (max-width: 40rem) {
  .timeline li { grid-template-columns: 1fr; gap: 0.1rem; }
  .timeline .org { grid-column: 1; }
}

/* ---------- Banner ---------- */
.banner { position: relative; overflow: hidden; background: var(--navy); }
.banner img { width: 100%; height: auto; aspect-ratio: 21 / 8; object-fit: cover; display: block; }
@media (max-width: 47.99rem) { .banner img { aspect-ratio: 4 / 3; } }
.banner .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(to top, rgba(8, 18, 34, 0.85), rgba(8, 18, 34, 0));
  color: var(--ivory);
}
.banner .caption p { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem); max-width: 30ch; margin: 0; line-height: 1.25; }

/* ---------- Contact ---------- */
.contact-list { list-style: none; margin: 0 0 2.4rem; padding: 0; display: grid; gap: 0.75rem; font-size: 1.1rem; }
.contact-list .k { display: inline-block; min-width: 6.5rem; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.contact-list a { color: var(--cream); }
.contact-list a:hover { color: var(--gold-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--cream-muted); border-top: 1px solid var(--rule-navy); padding: 2.5rem 0 3rem; font-size: 0.85rem; letter-spacing: 0.02em; }
.site-footer p { margin: 0 0 0.4rem; max-width: none; }
.site-footer .wordmark { display: inline-block; margin-bottom: 1rem; }

/* ---------- Live assistant panel ---------- */
.assistant-panel {
  border: 1px solid var(--rule); border-left: 2px solid var(--gold);
  background: var(--bg-alt);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid; gap: 2.5rem;
}
@media (min-width: 60rem) {
  .assistant-panel { grid-template-columns: 1.25fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
}
.assistant-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.assistant-copy p { max-width: 54ch; }
.assistant-asks-title {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze);
  margin: 0 0 1rem;
}
.assistant-asks ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.assistant-asks .ask {
  display: block; width: 100%; text-align: left; cursor: pointer;
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.3; color: var(--text);
  background: var(--bg); border: 1px solid var(--rule);
  padding: 0.85rem 2.4rem 0.85rem 1rem;
  position: relative;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.assistant-asks .ask::after {
  content: "→"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-family: var(--sans); font-size: 0.95rem;
}
.assistant-asks .ask:hover { border-color: var(--gold); color: var(--bronze); }
.assistant-note { margin-top: 1.2rem; font-size: 0.9rem; }

/* ---------- Reference document page ---------- */
.doc { padding-block: clamp(3rem, 7vw, 5.5rem) var(--section); }
.doc .container { max-width: 52rem; }
.doc-head { padding-bottom: 2.5rem; border-bottom: 1px solid var(--rule); margin-bottom: 1rem; }
.doc-head h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 0.5em; }
.doc section { padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.doc section + section { border-top: 1px solid var(--rule); }
.doc h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 0.7em; }
.doc h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin: 2rem 0 0.4em; }
.doc h3:first-of-type { margin-top: 1.4rem; }
.doc .pullquote { margin: 1.8rem 0; }
.doc .creds, .doc .timeline { margin-top: 1.5rem; }
.doc .outcomes, .doc .workflows { margin: 1rem 0 1.4rem; }
.doc-back { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }

.facts { margin: 2rem 0 0; display: grid; gap: 0.15rem 1.5rem; }
.facts dt {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze);
  padding-top: 0.55rem;
}
.facts dd { margin: 0 0 0.55rem; }
@media (min-width: 40rem) {
  .facts { grid-template-columns: 9rem 1fr; }
  .facts dt { padding-top: 0.1rem; }
  .facts dd { margin-bottom: 0.35rem; }
}

.doc-steps { list-style: none; margin: 0; padding: 0; counter-reset: dstep; }
.doc-steps li {
  counter-increment: dstep;
  display: grid; grid-template-columns: 3.5rem 1fr; gap: 0 1rem;
  padding: 1.5rem 0; border-top: 1px solid var(--rule);
}
.doc-steps li:last-child { border-bottom: 1px solid var(--rule); }
.doc-steps li::before {
  content: counter(dstep, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500; line-height: 1;
  color: var(--bronze); grid-row: 1 / span 2; padding-top: 0.3rem;
}
.doc-steps h3 { margin: 0 0 0.35em; }
@media (max-width: 34rem) {
  .doc-steps li { grid-template-columns: 2.5rem 1fr; }
  .doc-steps li::before { font-size: 1.3rem; }
}

.doc-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; display: block; overflow-x: auto; }
.doc-table caption {
  text-align: left; font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); padding-bottom: 0.8rem;
}
.doc-table th, .doc-table td { text-align: left; padding: 0.7rem 1rem 0.7rem 0; border-top: 1px solid var(--rule); vertical-align: baseline; }
.doc-table th { font-weight: 600; white-space: nowrap; padding-right: 2rem; }
.doc-table tr:last-child th, .doc-table tr:last-child td { border-bottom: 1px solid var(--rule); }

.faq { margin: 1.5rem 0 0; }
.faq dt { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; padding-top: 1.4rem; border-top: 1px solid var(--rule); }
.faq dd { margin: 0.5rem 0 1.4rem; max-width: var(--measure); }
.faq dd:last-child { margin-bottom: 0; padding-bottom: 1.4rem; border-bottom: 1px solid var(--rule); }

/* ---------- Motion (quiet reveal on scroll) ---------- */
.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Print: one-page profile ---------- */
@media print {
  @page { size: Letter; margin: 0.5in 0.6in; }
  :root { --bg: #fff; --bg-alt: #fff; --navy: #fff; --navy-2: #fff; --text: #111; --muted: #444; --gold: #7f6130; --bronze: #7f6130; --cream: #111; --cream-muted: #444; --rule: #bbb; --rule-navy: #bbb; }
  html { font-size: 8.3pt; }
  body { background: #fff; color: #111; line-height: 1.3; }
  .band-navy, .site-footer { background: #fff; color: #111; }
  .site-header, .skip-link, .nav-toggle, .cta-row, .method-diagram, .method-close, .print-hide,
  #assistant, .art, .media, .hero-media, .portrait, .banner, .section-head h2, .services p, .steps p,
  .pullquote-attrib, .pullquote::before, .creds .cred-note, .site-footer .wordmark, .site-footer p:last-child { display: none !important; }
  .container { width: 100%; }
  .section, .hero, .record-intro, .figure-band, .record-detail { padding-block: 0.25rem 0.35rem; border-top: 1px solid var(--rule); }
  .hero { border-top: 0; padding-top: 0; }
  .hero-grid, .method-grid, .split, .bio { display: block; }
  p, li, .hero h1, .hero .lede, .outcomes li, .workflows li, .headline-figure .note, .pullquote, .services p { max-width: none; }
  h1 { font-size: 15pt; margin-bottom: 0.25em; }
  h3 { font-size: 10pt; margin-bottom: 0.2em; }
  h4 { font-size: 8pt; margin-bottom: 0.2em; }
  .section-head { margin-bottom: 0.25rem; }
  .eyebrow { margin: 0; font-size: 7.5pt; letter-spacing: 0.14em; }
  .eyebrow::before { display: none; }
  .lede { font-size: 9.2pt; }
  .hero .lede { color: #111; }
  .services { display: flex; flex-wrap: wrap; gap: 0 0.5rem; border: 0; }
  .services li { border: 0 !important; padding: 0; }
  .services li::before { display: none; }
  .services h3 { margin: 0; font-size: 9.2pt; }
  .services li + li h3::before { content: "\00b7"; margin-right: 0.5rem; color: #999; }
  .pullquote { font-size: 10.5pt; margin: 0 0 0.3rem; }
  .steps { display: flex; flex-wrap: wrap; gap: 0.05rem 0.7rem; }
  .steps li, .steps li:last-child { display: block; padding: 0; border: 0; }
  .steps li::before { content: counter(step) " "; font-size: 9.2pt; padding: 0; }
  .steps h3 { display: inline; margin: 0; font-size: 9.2pt; }
  .record-intro, .record-detail { border-top: 0; padding-top: 0; }
  .figure-band { border-top: 0; padding: 0; }
  .record-block + .record-block { margin-top: 0.35rem; padding-top: 0.35rem; }
  .record-block h3 { margin-bottom: 0.2em; }
  .headline-figure { margin: 0.3rem 0 0.35rem; grid-template-columns: auto 1fr; align-items: baseline; gap: 0 0.7rem; }
  .headline-figure .value { font-size: 20pt; }
  .headline-figure .label { font-size: 9pt; }
  .headline-figure .note { grid-column: 1 / -1; }
  .figures { margin-bottom: 0.4rem; gap: 0.25rem 0; }
  .figures li { padding: 0 0.8rem 0 0.55rem; }
  .figures .value { font-size: 12.5pt; }
  .figures .label { font-size: 7.6pt; margin-top: 0.05rem; }
  .two-col { grid-template-columns: 1fr; gap: 0.3rem; }
  .outcomes { gap: 0.05rem; }
  .creds { display: flex; flex-wrap: wrap; gap: 0 0.5rem; border: 0; }
  .creds li { display: block; padding: 0; border: 0 !important; }
  .creds .cred { font-size: 9.2pt; }
  .creds li + li .cred::before { content: "\00b7"; margin-right: 0.5rem; color: #999; font-family: var(--sans); font-weight: 400; }
  .creds .cred-note.print-keep { display: inline !important; font-size: 9.2pt; }
  .creds .cred-note.print-keep::before { content: ", "; }
  .timeline { margin-top: 0.15rem; max-width: none; }
  .timeline li { padding: 0.1rem 0; grid-template-columns: 7rem 1fr auto; gap: 0 0.8rem; }
  .timeline .role { font-size: 9.6pt; }
  .timeline .years { font-size: 8pt; padding-top: 0.1rem; white-space: nowrap; }
  .timeline .org { grid-column: 3; text-align: right; }
  .contact-list { display: flex; flex-wrap: wrap; gap: 0.1rem 1.2rem; font-size: 9pt; margin-bottom: 0.2rem; }
  .contact-list .k { min-width: 0; margin-right: 0.35rem; }
  a, .contact-list a { color: #111; text-decoration: none; }
  .site-footer { padding: 0.35rem 0 0; font-size: 7.8pt; border-top: 1px solid #bbb; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
