/* ==========================================================================
   Anoop Sangha Consulting LLC
   Palette: "Editorial Advisory" / navy / ivory / copper
   ========================================================================== */

:root {
  /* Brand */
  --navy:         #1B2A41;
  --navy-deep:    #14202F;
  --navy-soft:    #2E4159;
  --ivory:        #F7F5F0;
  --ivory-warm:   #FCFBF8;
  --copper:       #B5651D;
  --copper-lift:  #C87A2C;
  --charcoal:     #2A2E35;
  --muted:        #6C6862;
  --rule:         rgba(27, 42, 65, 0.14);
  --rule-soft:    rgba(27, 42, 65, 0.08);

  /* Type */
  --serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Space */
  --wrap:      1140px;
  --wrap-narrow: 720px;
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  --shadow-card: 0 1px 2px rgba(27, 42, 65, .04), 0 8px 24px rgba(27, 42, 65, .05);
}

/* ─────────────────────────────  RESET  ───────────────────────────── */

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

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -0.015em; color: var(--navy); line-height: 1.15; }
p  { margin: 0 0 1.15em; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--navy); text-decoration-color: rgba(181, 101, 29, .45); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--copper); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: var(--ivory);
  padding: .75rem 1.25rem; text-decoration: none; font-size: .9rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ─────────────────────────────  LAYOUT  ──────────────────────────── */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap.narrow { max-width: var(--wrap-narrow); }

.section { padding: var(--section-y) 0; }
.section-alt { background: var(--ivory-warm); border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }

.section-eyebrow, .eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  max-width: 24ch;
  margin-bottom: 2.5rem;
}
.section-title + .prose, .contact-intro .section-title { margin-bottom: 1.75rem; }

.prose { max-width: 66ch; font-size: 1.09rem; color: #3A3E45; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }

.fine { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ─────────────────────────────  HEADER  ──────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 240, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 1px 12px rgba(27, 42, 65, .05);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1.5rem; }

.wordmark { text-decoration: none; display: flex; align-items: baseline; gap: .5rem; flex-shrink: 0; }
.wordmark-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
.wordmark-sub {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; padding-bottom: .1rem;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: .93rem; font-weight: 500; color: var(--charcoal);
  text-decoration: none; position: relative; padding: .25rem 0;
  transition: color .18s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--copper); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--navy); font-weight: 600; }

.nav a.nav-cta {
  background: var(--navy); color: var(--ivory);
  padding: .55rem 1.1rem; border-radius: 2px;
}
.nav a.nav-cta::after { display: none; }
.nav a.nav-cta:hover { background: var(--navy-soft); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: none; border: 1px solid var(--rule); border-radius: 2px; cursor: pointer;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--navy); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ──────────────────────────────  HERO  ───────────────────────────── */

.hero { padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(3.5rem, 7vw, 6rem); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.lede {
  font-size: clamp(1.06rem, 1.45vw, 1.2rem);
  line-height: 1.6;
  color: #3D424A;
  max-width: 54ch;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Portrait: editorial frame with offset copper block */
.hero-portrait { margin: 0; }

.portrait-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: #EDE9E1;
  aspect-ratio: 4 / 5;
  box-shadow: 0 2px 4px rgba(27,42,65,.06), 0 18px 48px rgba(27,42,65,.10);
}
.portrait-frame::after {
  /* hairline inset so the light photo background doesn't dissolve into the ivory page */
  content: ""; position: absolute; inset: 0; border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(27,42,65,.10);
  pointer-events: none;
}
.hero-portrait { position: relative; isolation: isolate; }
.hero-portrait::before {
  content: ""; position: absolute; z-index: -1;
  bottom: -20px; left: -20px; width: 46%; height: 46%;
  border-radius: 3px;
  background: rgba(181, 101, 29, .16);
  border-left: 2px solid rgba(181, 101, 29, .55);
  border-bottom: 2px solid rgba(181, 101, 29, .55);
}

.portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;   /* keeps the face in frame across crops */
}

/* Graceful state before the real photo is dropped in */
.portrait-placeholder {
  position: absolute; inset: 0; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  background: repeating-linear-gradient(45deg, #EDE9E1, #EDE9E1 12px, #E6E1D8 12px, #E6E1D8 24px);
  color: var(--muted); font-size: .95rem; letter-spacing: .04em;
}
.portrait-placeholder small { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; opacity: .8; }
.no-photo .portrait-frame img { display: none; }
.no-photo .portrait-placeholder { display: flex; }

/* ─────────────────────────────  BUTTONS  ─────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  padding: .85rem 1.6rem; border-radius: 2px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary { background: var(--copper); color: #FFF; border-color: var(--copper); }
.btn-primary:hover { background: var(--copper-lift); border-color: var(--copper-lift); }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(27,42,65,.28); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(27,42,65,.04); }

.btn-block { width: 100%; padding: 1rem 1.5rem; font-size: 1rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

.link-arrow {
  font-size: .95rem; font-weight: 500; color: var(--navy);
  text-decoration: none; border-bottom: 1px solid rgba(181,101,29,.4);
  padding-bottom: 1px; transition: border-color .18s ease;
}
.link-arrow::after { content: " \2192"; color: var(--copper); }
.link-arrow:hover { border-bottom-color: var(--copper); }

/* ──────────────────────────  STATS STRIP  ────────────────────────── */

.stats { background: var(--navy); color: rgba(247,245,240,.82); padding: clamp(2.5rem, 4.5vw, 3.5rem) 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3.5vw, 3rem); }

.stat { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; }
.stat + .stat { position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: calc(clamp(1.5rem, 3.5vw, 3rem) / -2);
  top: .2rem; bottom: .2rem; width: 1px; background: rgba(247,245,240,.16);
}
.stat-figure {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #E8A867; line-height: 1; letter-spacing: -.01em;
}
.stat-label { font-size: .875rem; line-height: 1.5; }

/* ──────────────────────────  EXPERTISE CARDS  ────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.card {
  background: #FFF; border: 1px solid var(--rule-soft); border-radius: 3px;
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow-card);
}
.card h3 { font-size: 1.2rem; margin-bottom: 1.1rem; line-height: 1.25; }
.card ul { list-style: none; }
.card li {
  position: relative; padding-left: 1.05rem; margin-bottom: .55rem;
  font-size: .95rem; line-height: 1.5; color: #454A52;
}
.card li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 5px; height: 1.5px; background: var(--copper);
}
.card li:last-child { margin-bottom: 0; }

.card-quiet { background: var(--navy); border-color: var(--navy); }
.card-quiet h3 { color: var(--ivory); }
.card-quiet p { color: rgba(247,245,240,.78); font-size: .95rem; }
.card-quiet .link-arrow { color: #E8A867; border-bottom-color: rgba(232,168,103,.4); }
.card-quiet .link-arrow::after { color: #E8A867; }
.card-quiet .link-arrow:hover { border-bottom-color: #E8A867; }

/* ────────────────────────────  SERVICES  ─────────────────────────── */

.services { border-top: 1px solid var(--rule); }

.service {
  display: grid; grid-template-columns: 5rem 1fr; gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--rule);
}
.service-num {
  font-family: var(--serif); font-size: 1.6rem; color: var(--copper);
  opacity: .55; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.service h3 { font-size: 1.4rem; margin-bottom: .7rem; }
.service p { max-width: 66ch; margin-bottom: 0; color: #454A52; }

.engagement-note {
  margin-top: 2.5rem; padding: 1.75rem 1.85rem;
  background: rgba(181,101,29,.055); border-left: 2px solid var(--copper);
  border-radius: 0 3px 3px 0;
}
.engagement-note p { max-width: 74ch; }
.engagement-note p:last-child { margin-bottom: 0; }

/* ────────────────────────  WHO I WORK WITH  ──────────────────────── */

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.audience {
  background: #FFF; border: 1px solid var(--rule-soft); border-radius: 3px;
  padding: 2rem 1.9rem; box-shadow: var(--shadow-card);
}
.audience h3 { font-size: 1.3rem; margin-bottom: .85rem; }
.audience p { font-size: .97rem; color: #454A52; margin-bottom: 0; }

.audience-q {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem !important;
  color: var(--navy) !important; margin-bottom: 1rem !important;
  padding-left: .9rem; border-left: 2px solid var(--copper);
  line-height: 1.4;
}

/* Health systems card sits full-width and visually quieter */
.audience-secondary {
  grid-column: 1 / -1;
  background: transparent; box-shadow: none;
  border: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1.3fr; gap: .9rem 2.5rem; align-items: start;
}
.audience-secondary h3      { grid-column: 1; grid-row: 1; margin-bottom: 0; }
.audience-secondary .audience-q { grid-column: 1; grid-row: 2; margin-bottom: 0 !important; }
.audience-secondary p:not(.audience-q) { grid-column: 2; grid-row: 1 / span 2; align-self: center; }

/* ────────────────────────────  TIMELINE  ─────────────────────────── */

.timeline { list-style: none; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 9.5rem; top: .5rem; bottom: .5rem;
  width: 1px; background: var(--rule);
}

.timeline li {
  display: grid; grid-template-columns: 8rem 1fr; gap: 3rem;
  padding-bottom: 2.5rem; position: relative;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: calc(9.5rem - 3.5px); top: .55rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ivory); border: 1.5px solid var(--copper);
}

.tl-when {
  font-size: .82rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); padding-top: .2rem; text-align: right;
}
.tl-what h3 { font-size: 1.22rem; margin-bottom: .2rem; }
.tl-org { font-size: .95rem; font-weight: 500; color: var(--copper); margin-bottom: .7rem; }
.tl-what p:last-child { margin-bottom: 0; font-size: .97rem; color: #454A52; max-width: 62ch; }

.education { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }
.edu-title {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--copper);
  margin-bottom: 1.5rem;
}
.edu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem 2.5rem; margin: 0; }
.edu-list > div { padding-bottom: .9rem; border-bottom: 1px solid var(--rule-soft); }
.edu-list dt { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: .15rem; }
.edu-list dd { margin: 0; font-size: .92rem; color: var(--muted); }

/* ─────────────────────────────  CONTACT  ─────────────────────────── */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-direct { margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--rule); }
.contact-direct p { margin-bottom: .8rem; }
.contact-direct p:last-child { margin-bottom: 0; }
.contact-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem !important;
}

.contact-form {
  background: #FFF; border: 1px solid var(--rule-soft); border-radius: 3px;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-card);
}

.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--navy);
  margin-bottom: .4rem; letter-spacing: .01em;
}
.req { color: var(--copper); font-weight: 400; }

.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .97rem; color: var(--charcoal);
  padding: .72rem .85rem; background: #FDFCFA;
  border: 1px solid rgba(27,42,65,.18); border-radius: 2px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236C6862' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.25rem; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #FFF;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(181,101,29,.12);
}
.field input.invalid, .field textarea.invalid { border-color: #B3261E; box-shadow: 0 0 0 3px rgba(179,38,30,.1); }

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

.form-status {
  margin: 1rem 0 0; font-size: .93rem; line-height: 1.5;
  padding: 0; min-height: 0;
}
.form-status.is-error   { color: #B3261E; }
.form-status.is-success { color: #1E6E42; font-weight: 500; }
.contact-form .fine { margin: 1rem 0 0; }

/* Shown only when automatic delivery fails, so the visitor is never stranded. */
.form-fallback {
  margin-top: 1.25rem; padding: 1.25rem;
  background: rgba(181, 101, 29, .06);
  border: 1px solid rgba(181, 101, 29, .3);
  border-radius: 3px;
}
.form-fallback-lead {
  margin: 0 0 .4rem; font-size: .9rem; font-weight: 600; color: var(--navy);
}
.form-fallback-addr { margin: 0 0 .9rem; font-size: 1rem; word-break: break-all; }
.form-fallback-addr a { color: var(--copper); font-weight: 600; text-decoration: underline; }

.form-fallback-text {
  width: 100%; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .82rem; line-height: 1.5; color: var(--charcoal);
  padding: .7rem .8rem; background: #FFF;
  border: 1px solid rgba(27, 42, 65, .18); border-radius: 2px;
  resize: vertical;
}
.form-fallback-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; }
.form-fallback-actions .btn { padding: .65rem 1.1rem; font-size: .88rem; }

@media (max-width: 600px) {
  .form-fallback-actions .btn { width: 100%; }
}

/* ─────────────────────────────  FOOTER  ──────────────────────────── */

.site-footer { background: var(--navy-deep); color: rgba(247,245,240,.62); padding: clamp(3rem, 5vw, 4rem) 0 2.5rem; }

.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem 3rem; align-items: start; }

.footer-name { font-family: var(--serif); font-size: 1.2rem; color: var(--ivory); margin-bottom: .2rem; }
.footer-llc { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,245,240,.48); margin: 0; }

.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; }
.footer-nav a { font-size: .92rem; color: rgba(247,245,240,.72); text-decoration: none; transition: color .18s ease; }
.footer-nav a:hover { color: var(--ivory); text-decoration: underline; text-decoration-color: var(--copper); }

.footer-legal {
  grid-column: 1 / -1; margin-top: 1rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(247,245,240,.12);
}
.footer-legal p { font-size: .85rem; margin-bottom: .6rem; }
.footer-legal .fine { color: rgba(247,245,240,.45); max-width: 88ch; margin-bottom: 0; }

/* ────────────────────────  REVEAL ON SCROLL  ─────────────────────── */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════  RESPONSIVE  ════════════════════════ */

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat:nth-child(3)::before { display: none; }
  .timeline::before { left: 7.5rem; }
  .timeline li { grid-template-columns: 6rem 1fr; gap: 2.5rem; }
  .timeline li::before { left: calc(7.5rem - 3.5px); }
}

@media (max-width: 860px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory-warm);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 12px 28px rgba(27,42,65,.09);
    padding: .5rem var(--gutter) 1.25rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--rule-soft); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav a.nav-cta { margin-top: 1rem; border-bottom: none; text-align: center; padding: .85rem 1.1rem; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }

  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-portrait { order: -1; max-width: 300px; }
  .hero-portrait::before { display: none; }  /* offset block would bleed past the gutter */
  .portrait-frame { aspect-ratio: 1 / 1; }
  .portrait-frame img { object-position: 50% 14%; }
  .hero h1 { max-width: 22ch; }

  .contact-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-secondary { grid-template-columns: 1fr; gap: .85rem; }
  .audience-secondary h3,
  .audience-secondary .audience-q,
  .audience-secondary p:not(.audience-q) { grid-column: 1; grid-row: auto; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .wordmark-sub { display: none; }

  /* Keep the headline near the fold rather than below a full-width photo */
  .hero { padding-top: 2rem; }
  .hero-portrait { max-width: 208px; }

  .stats-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .stat + .stat::before { display: none; }

  .service { grid-template-columns: 1fr; gap: .5rem; padding: 1.85rem 0; }
  .service-num { font-size: 1.1rem; }

  .timeline::before { display: none; }
  .timeline li { grid-template-columns: 1fr; gap: .5rem; }
  .timeline li::before { display: none; }
  .tl-when { text-align: left; padding-top: 0; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: .6rem; }
}

/* ──────────────────────────────  PRINT  ─────────────────────────── */

@media print {
  .site-header, .nav-toggle, .contact-form, .hero-actions, .btn { display: none !important; }
  body { background: #FFF; color: #000; font-size: 11pt; }
  .section { padding: 1.5rem 0; }
  .stats { background: #FFF; color: #000; }
  .stat-figure, .section-eyebrow, .eyebrow { color: #000; }
  .site-footer { background: #FFF; color: #000; }
  .card, .audience, .service { break-inside: avoid; box-shadow: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
