/* =====================================================================
   Levi Henry Group — editorial design system
   Palette drawn from the brand logo: deep navy + warm ivory + brass
   Type: Fraunces (display serif) + Archivo (grotesque sans, echoes logo)
   ===================================================================== */

:root {
  /* paper + ink */
  --ivory: #f4f1ea;
  --ivory-deep: #ebe5d8;
  --paper: #fbf9f4;
  --ink: #212c38;
  --ink-soft: #515b66;
  --ink-faint: #8b93a0;

  /* brand navy (from logo) */
  --navy: #14273f;
  --navy-deep: #0e1c2e;
  --navy-600: #26476f;
  --navy-tint: #e6e9ef;

  /* accent — steel navy drawn from the logo's blue (no gold) */
  --brass: #2f5079;
  --brass-deep: #16273f;
  --brass-soft: #accbe6;

  /* structure */
  --line: #ddd6c6;
  --line-strong: #ccc2ab;
  --line-navy: rgba(255, 255, 255, 0.14);

  /* type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* rhythm */
  --measure: 1180px;
  --measure-text: 64ch;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 24px 60px -34px rgba(20, 39, 63, 0.55);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* contain the fixed off-canvas mobile nav (clipped by root, not body) */
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* contain the off-canvas mobile nav; keeps sticky header working */
}

/* skip link (a11y) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 470;
  line-height: 1.07;
  letter-spacing: -0.012em;
  margin: 0 0 0.6em;
  color: var(--navy);
}
h1 { font-size: clamp(2.55rem, 6vw, 4.7rem); }
h2 { font-size: clamp(1.95rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.6rem); font-weight: 560; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--sans); }

p { margin: 0 0 1.15rem; }
a { color: var(--brass-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
strong { font-weight: 700; color: var(--ink); }

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.kicker::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  background: var(--brass);
}
.kicker--light { color: var(--brass-soft); }
.kicker--light::before { background: var(--brass-soft); }
.kicker--center { justify-content: center; }

.lead {
  font-size: clamp(1.15rem, 1.9vw, 1.38rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 840px; }
section { padding-block: var(--section-y); }
.divider { border-top: 1px solid var(--line); }
.measure { max-width: var(--measure-text); }
.section-head { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.7rem;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--navy); color: #fff; }
.btn--solid:hover { background: var(--navy-deep); }
.btn--brass { background: #fff; color: var(--navy); }
.btn--brass:hover { background: var(--ivory); color: var(--navy); }
.btn--ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--on-navy { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--on-navy:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn .arrow, .textlink .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow, .textlink:hover .arrow { transform: translateX(4px); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--brass-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- brand mark (inline SVG logo) ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
}
.brand svg { width: 30px; height: 30px; flex: none; display: block; }
.brand .wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
}
.brand .wordmark b { font-weight: 800; }
.brand .wordmark span { display: block; font-weight: 500; letter-spacing: 0.22em; font-size: 0.66rem; color: var(--brass-deep); margin-top: 3px; }
.brand--light { color: #fff; }
.brand--light .wordmark span { color: var(--brass-soft); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ivory) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.95rem;
}
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); }
.nav a[aria-current="page"] { position: relative; }
.nav a.btn { text-transform: none; letter-spacing: 0; padding: 0.62rem 1.3rem; font-size: 0.85rem; font-weight: 700; }
.nav a.btn--solid { color: #fff; box-shadow: 0 8px 18px -8px rgba(20, 39, 63, 0.6); }
.nav a.btn--solid:hover { color: #fff; background: var(--navy-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.7rem;
    padding: 2rem var(--gutter);
    background: var(--paper);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav a { font-size: 1rem; }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
}

/* ---------- hero ---------- */
.hero { padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: var(--section-y); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 0.5rem; }
.hero .lead { margin-top: 1.5rem; max-width: 42ch; }
.hero-figure {
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.hero-figure img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.hero-badge {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.9rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-top-right-radius: 6px;
}
.hero-badge b { color: var(--brass-soft); font-weight: 700; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 460px; }
}

/* stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.stat .num { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--navy); line-height: 1; }
.stat .lbl { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.5rem; display: block; }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; gap: 1rem; } .stat { display: flex; align-items: baseline; gap: 0.8rem; } .stat .lbl { margin-top: 0; } }

/* ---------- story columns ---------- */
.story { columns: 2; column-gap: 3rem; color: var(--ink-soft); font-size: 1.02rem; }
.story p:first-child { margin-top: 0; }
@media (max-width: 720px) { .story { columns: 1; } }

/* ---------- audience fork ---------- */
.fork { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
.fork-card {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fork-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.fork-card .num { font-family: var(--sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: auto; opacity: 0.75; }
.fork-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.15rem); }
.fork-card p { font-size: 1rem; }
.fork-card--navy { background: var(--navy); color: #fff; }
.fork-card--navy h3, .fork-card--navy .num { color: #fff; }
.fork-card--navy p { color: rgba(255,255,255,0.78); }
.fork-card--navy .textlink { color: var(--brass-soft); }
.fork-card--brass { background: var(--brass); color: #fff; }
.fork-card--brass h3, .fork-card--brass .num { color: #fff; }
.fork-card--brass p { color: rgba(255,255,255,0.9); }
.fork-card--brass .textlink { color: #fff; }
@media (max-width: 680px) { .fork { grid-template-columns: 1fr; } }

/* ---------- pillars (editorial numbered rows) ---------- */
.pillars { display: grid; gap: 0; }
.pillar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding-block: 2.15rem;
  border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar .idx { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.3rem); color: var(--brass); font-weight: 500; line-height: 1; }
.pillar h3 { margin-bottom: 0.5rem; color: var(--navy); }
.pillar p { color: var(--ink-soft); margin: 0; max-width: 54ch; }
.pillar .aside { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; padding-top: 0.5rem; }
@media (max-width: 720px) { .pillar { grid-template-columns: auto 1fr; } .pillar .aside { display: none; } }

/* ---------- image band / feature figure ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.feature--reverse .feature-media { order: 2; }
.feature-media { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.feature-media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature-media { order: -1; }
  .feature-media { max-width: 460px; }
}

/* ---------- split (offer lists) ---------- */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.checklist li::before { content: ""; width: 0.6rem; height: 0.6rem; margin-top: 0.55rem; background: var(--brass); border-radius: 50%; }
.checklist li strong { display: block; font-weight: 700; color: var(--navy); }
.checklist li span { color: var(--ink-soft); font-size: 0.98rem; }

.who { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--brass); padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: 4px; }
.who h4 { color: var(--brass-deep); letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.8rem; }

.note { font-size: 0.85rem; color: var(--ink-faint); font-style: italic; }
.tbd { color: var(--ink-faint); font-style: italic; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 48ch; margin-inline: auto; }
.cta-band .btn { margin-top: 1.75rem; }

/* ---------- portfolio grid + filter ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.15rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 100px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter:hover { border-color: var(--brass); color: var(--brass-deep); }
.filter[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.work { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 0.3s var(--ease); }
.work.hidden { display: none; }
.work:hover { transform: translateY(-4px); }
.work .cover { position: relative; aspect-ratio: 4 / 3; border-radius: 5px; overflow: hidden; background: var(--navy); }
.work .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.work:hover .cover img { transform: scale(1.04); }
.work .cover.label { display: flex; align-items: flex-end; padding: 1.25rem; color: #fff; font-family: var(--serif); font-size: 1.4rem; }
.work h3 { margin: 1rem 0 0.35rem; color: var(--navy); }
.work .cat { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-deep); font-weight: 700; }
.work p { color: var(--ink-soft); font-size: 0.95rem; margin: 0.5rem 0 0.75rem; }

/* ---------- testimonials (video) ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
@media (max-width: 720px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 12;
}
.testi video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--navy-deep); }
.testi .poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(14,28,46,0.05) 0%, rgba(14,28,46,0.32) 52%, rgba(14,28,46,0.88) 100%);
  cursor: pointer;
  border: none;
  text-align: left;
  color: #fff;
  transition: opacity 0.3s var(--ease);
}
.testi .poster .play {
  align-self: flex-start;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(14, 28, 46, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
  margin-bottom: auto;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.testi .poster:hover .play { background: var(--navy); border-color: #fff; transform: scale(1.06); }
.testi .poster .play svg { width: 22px; height: 22px; margin-left: 3px; fill: #fff; }
.testi .poster .name { font-family: var(--serif); font-size: 1.3rem; margin-top: 1rem; }
.testi .poster .role { font-size: 0.82rem; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; }
.testi.playing .poster { opacity: 0; pointer-events: none; }

.quote-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 760px) { .quote-strip { grid-template-columns: 1fr; } }
.quote { border-left: 2px solid var(--brass); padding-left: 1.1rem; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--navy); margin: 0 0 0.6rem; }
.quote cite { font-style: normal; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }

/* book / resource card */
.resource { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.5rem, 4vw, 3rem); }
.resource img { width: 100%; max-width: 280px; border-radius: 4px; box-shadow: var(--shadow); justify-self: center; }
@media (max-width: 700px) { .resource { grid-template-columns: 1fr; text-align: center; } .resource img { max-width: 200px; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.25rem; }
.field label { font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brass) 20%, transparent);
}
.field textarea { resize: vertical; min-height: 140px; }

.contact-detail { display: grid; gap: 1.4rem; }
.contact-detail .row { padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.contact-detail .row span { display: block; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.3rem; }
.contact-detail .row a, .contact-detail .row strong { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); text-decoration: none; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line-navy); background: var(--navy-deep); color: rgba(255,255,255,0.72); }
.site-footer .wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.site-footer .tag { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-top: 1rem; max-width: 34ch; }
.site-footer h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: #fff; }
.footer-base { border-top: 1px solid var(--line-navy); font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-base .wrap { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.25rem; flex-wrap: wrap; }
@media (max-width: 680px) { .site-footer .wrap { grid-template-columns: 1fr 1fr; } .site-footer .about-col { grid-column: 1 / -1; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .work .cover img, .hero-figure img { transition: none; }
}

/* ---------- interior page hero ---------- */
.page-hero { padding-top: clamp(3rem, 6vw, 4.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 56ch; margin-top: 1rem; }

/* prose (about) */
.prose p { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); max-width: var(--measure-text); }
.prose p strong { color: var(--ink); }
.prose .pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  line-height: 1.3;
  color: var(--navy);
  border-left: 3px solid var(--brass);
  padding-left: 1.4rem;
  margin: 2.5rem 0;
  max-width: 24ch;
}
img { max-width: 100%; }
