/* ============================================
   GUIDESTONE HEALTHCARE CONSULTING
   Stylesheet v-navy13 · Bain-inspired layout
   Dark navy canvas · teal accents · bold sans
   ============================================ */

/* ---- Tokens -------------------------------- */
:root {
  --navy: #0B3D5C;
  --navy-2: #0E4870;
  --navy-3: #072E46;
  --ink: #072E46;
  --deep: #041E2E;
  --cream: #F7F4EC;
  --teal: #0FA3A3;
  --teal-light: #4FC2C2;
  --teal-bright: #16C7C7;
  --teal-deep: #0C8585;
  --rule: rgba(247,244,236,0.12);
  --rule-2: rgba(247,244,236,0.24);
  --rule-3: rgba(247,244,236,0.45);
  --text: #E8EEF2;
  --text-bright: #FFFFFF;
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.50);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1280px;
  --wide: 1440px;
  --radius: 0;
  --pad-section: clamp(80px, 10vw, 140px);
}

/* ---- Reset & Base -------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--navy); }

body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ---- Typography (Bain-style bold sans) ----- */
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--text-bright);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

p { color: var(--text); }

.serif-em {
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: inline-block;
}
.eyebrow--center { text-align: center; }

/* ---- Layout -------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.wide { max-width: var(--wide); margin: 0 auto; padding: 0 32px; }

.section { padding: var(--pad-section) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--paper { background: var(--navy-2); }
.section--ink { background: var(--deep); color: var(--text-bright); }
.section--ink h2, .section--ink h3 { color: var(--text-bright); }

/* ---- Header / Nav -------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,61,92,0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 36px; width: auto; filter: brightness(0) invert(1); }

.nav ul { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-bright);
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a:hover { color: var(--teal-light); }
.nav a.btn { padding: 10px 22px; }
.nav a.btn::after { display: none; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text-bright); }

/* ---- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; }

.btn--primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-bright); border-color: var(--teal-bright); color: var(--deep); }

.btn--copper { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--copper:hover { background: var(--teal-bright); border-color: var(--teal-bright); color: var(--deep); }

.btn--ghost { background: transparent; color: var(--text-bright); border-color: var(--text-bright); }
.btn--ghost:hover { background: var(--text-bright); color: var(--navy); }

.btn--on-ink-ghost { background: transparent; color: var(--text-bright); border-color: var(--text-bright); }
.btn--on-ink-ghost:hover { background: var(--text-bright); color: var(--navy); }

.btn--quiet { background: transparent; color: var(--teal); border: 0; padding: 8px 0; font-weight: 600; }
.btn--quiet:hover { color: var(--teal-bright); }

/* ---- Hero (Bain-style photo-forward) ------- */
.hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 112px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  margin-bottom: 28px;
  color: var(--text-bright);
  letter-spacing: -0.028em;
  line-height: 1.03;
}
.hero__sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 40px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__video {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.hero__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Section head -------------------------- */
.s-head {
  max-width: 960px;
  margin-bottom: clamp(56px, 7vw, 88px);
}
.s-head h2 { margin-top: 8px; }
.s-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Split --------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__content h2 { margin-bottom: 24px; }
.split__list { margin-top: 32px; }
.split__list li {
  padding: 16px 0;
  position: relative;
  border-top: 1px solid var(--rule-2);
  color: var(--muted);
  font-size: 1.02rem;
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.split__list li:last-child { border-bottom: 1px solid var(--rule-2); }
.split__list li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--teal);
  flex-shrink: 0;
  transform: translateY(2px);
}

/* ---- Photo frame (ph) ---------------------- */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 5;
}
.ph__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.ph:hover .ph__img { transform: scale(1.03); }

/* ---- Services grid (homepage) -------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-2);
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}
.svc-cell {
  display: block;
  padding: 48px 36px;
  background: var(--navy);
  color: var(--text-bright);
  transition: background .25s ease;
  position: relative;
}
.svc-cell::after {
  content: "→";
  position: absolute;
  right: 36px;
  bottom: 48px;
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.svc-cell:hover { background: var(--navy-2); }
.svc-cell:hover::after { opacity: 1; transform: translateX(0); }
.svc-cell h3 { margin-bottom: 14px; color: var(--text-bright); }
.svc-cell p { color: var(--muted); font-size: 1rem; line-height: 1.55; padding-right: 40px; }

/* ---- Services row (services page) ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--rule-2);
}
.svc-row:last-child { border-bottom: 0; }
.svc-row--reverse .svc-row__media { order: 2; }
.svc-row__content h2 { margin-bottom: 20px; }
.svc-row__content ul { margin-top: 24px; }
.svc-row__content ul li {
  padding: 14px 0;
  position: relative;
  border-top: 1px solid var(--rule-2);
  color: var(--muted);
  font-size: 1.02rem;
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.svc-row__content ul li:last-child { border-bottom: 1px solid var(--rule-2); }
.svc-row__content ul li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--teal);
  flex-shrink: 0;
  transform: translateY(2px);
}

/* ---- Stats --------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.stat {
  padding: 0;
  border-top: 2px solid var(--teal);
  padding-top: 24px;
}
.stat__num {
  font-family: var(--sans);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--text-bright);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat__label {
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 400;
}

/* ---- Steps --------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.step {
  padding-top: 28px;
  border-top: 2px solid var(--teal);
}
.step__num {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 12px; font-size: 1.5rem; font-weight: 600; }
.step p { color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* ---- Values (about) ------------------------ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.value {
  padding-top: 28px;
  border-top: 2px solid var(--teal);
}
.value h3 { margin-bottom: 12px; font-size: 1.35rem; font-weight: 600; }
.value p { color: var(--muted); font-size: 1rem; line-height: 1.55; }

/* ---- Blog grid (photo-dominant, Bain-style)  */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 48px);
}
.blog-grid--feature { grid-template-columns: 2fr 1fr 1fr; align-items: start; }

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: inherit;
}
.blog-card__media {
  margin-bottom: 4px;
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.blog-card--feature .blog-card__media { aspect-ratio: 16 / 10; }
.blog-card__meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  align-items: center;
}
.blog-card__tag { color: var(--teal); }
.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 600;
  transition: color .2s ease;
  letter-spacing: -0.01em;
}
.blog-card--feature h3 { font-size: 2rem; line-height: 1.15; letter-spacing: -0.02em; }
.blog-card:hover h3 { color: var(--teal-light); }
.blog-card p { color: var(--muted); font-size: 1rem; line-height: 1.55; }
.blog-card__more { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }

/* ---- CTA ----------------------------------- */
.cta {
  background: var(--deep);
  color: var(--text-bright);
  padding: clamp(64px, 8vw, 112px) clamp(48px, 6vw, 96px);
  border-top: 4px solid var(--teal);
}
.cta h2 { color: var(--text-bright); max-width: 18ch; font-size: clamp(2rem, 4vw, 3.25rem); }
.cta p { color: var(--muted); margin-bottom: 32px; font-size: 1.1rem; }
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Page head ----------------------------- */
.page-head {
  padding: clamp(88px, 10vw, 140px) 0 clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--rule-2);
}
.page-head__crumb {
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 32px;
}
.page-head__crumb span + span::before {
  content: "/";
  margin-right: 12px;
  color: var(--muted-2);
  font-weight: 400;
}
.page-head__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.page-head__grid h1 { margin-bottom: 0; font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
.page-head__sub {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 52ch;
}

/* ---- FAQ ----------------------------------- */
.faq { max-width: 900px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--rule-2); }
.faq__item:last-child { border-bottom: 1px solid var(--rule-2); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-bright);
  text-align: left;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq__q:hover { color: var(--teal-light); }
.faq__icon {
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform .25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq__item.is-on .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__item.is-on .faq__a { max-height: 500px; }
.faq__a-inner { padding: 0 0 28px; color: var(--muted); line-height: 1.7; max-width: 70ch; font-size: 1.02rem; }
.faq__a-inner a { color: var(--teal); border-bottom: 1px solid currentColor; }

/* ---- Contact ------------------------------- */
.contact-center { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-center__head { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; font-weight: 700; }
.contact-center__lead { color: var(--muted); font-size: 1.2rem; margin-bottom: 56px; max-width: 54ch; margin-left: auto; margin-right: auto; }

.contact-center__primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 56px 24px;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  margin-bottom: 64px;
}
.contact-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-bright);
}
.contact-email__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.contact-email__addr {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-bright);
}
.contact-email:hover .contact-email__addr { color: var(--teal-light); }
.contact-email__cta {
  font-size: .92rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.contact-or { color: var(--muted); font-size: 1rem; }
.contact-or strong { color: var(--text-bright); font-weight: 600; }

.contact-center__rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 48px);
  text-align: left;
}
.contact-info__item {
  display: flex;
  gap: 20px;
  padding-top: 28px;
  border-top: 2px solid var(--teal);
  align-items: flex-start;
}
.contact-info__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  border: 1px solid var(--rule-2);
}
.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.contact-info__val { color: var(--text-bright); font-size: 1.02rem; line-height: 1.5; font-weight: 500; }

/* ---- Footer -------------------------------- */
.footer {
  background: var(--deep);
  color: var(--text-bright);
  padding: 96px 0 40px;
  border-top: 1px solid var(--rule);
}
.footer a { color: var(--muted); transition: color .2s ease; }
.footer a:hover { color: var(--teal-light); }
.footer h4 {
  color: var(--text-bright);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer li { color: var(--muted); font-size: .98rem; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-2);
}
.footer__brand .brand img { filter: brightness(0) invert(1); height: 36px; }
.footer__brand p { color: var(--muted); font-size: 1rem; line-height: 1.55; margin-top: 24px; max-width: 42ch; }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

/* ---- Report (blog post, Bain editorial) ---- */
.report { padding: clamp(72px, 9vw, 128px) 0 clamp(80px, 10vw, 140px); }
.report__container { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.report__masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule-2);
  gap: 24px;
  flex-wrap: wrap;
}
.report__wordmark {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}
.report__dateline {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  flex-wrap: wrap;
}
.report__category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.report__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 28px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.report__title em { color: var(--teal); font-style: normal; font-weight: 700; }
.report__deck {
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 48px;
  font-family: var(--sans);
  font-weight: 400;
  max-width: 60ch;
}
.report__byline {
  display: flex;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.report__byline-item { display: flex; flex-direction: column; gap: 4px; }
.report__byline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.report__byline-value { font-size: 1rem; color: var(--text-bright); font-weight: 500; }

.report__body {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text);
}
.report__body h2 { margin: 56px 0 20px; font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.report__body h3 { margin: 40px 0 16px; font-size: 1.35rem; font-weight: 600; }
.report__body p { margin-bottom: 28px; }
.report__body ul, .report__body ol { margin: 0 0 28px 24px; }
.report__body ul li, .report__body ol li { margin-bottom: 12px; list-style: disc; }
.report__body ol li { list-style: decimal; }
.report__body a { color: var(--teal); border-bottom: 1px solid currentColor; }
.report__body strong { color: var(--text-bright); font-weight: 600; }

.report__aside {
  padding: 32px;
  margin: 40px 0;
  background: var(--navy-2);
  border-left: 4px solid var(--teal);
}
.report__aside-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.report__figure { margin: 48px 0; }
.report__figure-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.report__figure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}
.report__figure-stat {
  padding-top: 20px;
  border-top: 2px solid var(--teal);
}
.report__figure-stat-num {
  font-family: var(--sans);
  font-size: 2.5rem;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.report__figure-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.report__pullquote {
  padding: 32px 0 32px 32px;
  margin: 48px 0;
  border-left: 4px solid var(--teal);
  font-family: var(--sans);
  font-size: 1.85rem;
  line-height: 1.25;
  color: var(--text-bright);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.report__pullquote-mark { color: var(--teal); font-weight: 700; font-size: inherit; }

.report__signoff {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--rule-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.report__signoff-mark { width: 40px; height: 3px; background: var(--teal); }
.report__signoff-mono {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---- Responsive --------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__video { aspect-ratio: 16 / 10; max-width: 640px; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .svc-row, .svc-row--reverse { grid-template-columns: 1fr; }
  .svc-row--reverse .svc-row__media { order: 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .blog-grid--feature { grid-template-columns: 1fr; }
  .cta__grid { grid-template-columns: 1fr; }
  .page-head__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-center__rows { grid-template-columns: 1fr; }

  .nav__toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--rule-2);
    padding: 24px 32px 32px;
    display: none;
  }
  .nav.active { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 20px; }
  .nav a { padding: 8px 0; }
  .nav a::after { display: none; }
}

@media (max-width: 640px) {
  .container, .wide { padding: 0 20px; }
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .header__inner { padding: 16px 20px; }
}
