/* ============================================================
   INFINITY FUNERAL HOME — core design system
   Palette: deep-pine #1B3A2D + muted-gold #B5943A + warm-ivory #F5EFE1
   Fonts: Cormorant Garamond (display) · Source Serif 4 (body) · Inter Tight (labels/nav)
   ============================================================ */

:root {
  --paper: #F5EFE1;
  --paper-warm: #ECE3CF;
  --paper-deep: #E2D5BC;
  --ink: #1C1F1D;
  --ink-soft: #3B4240;
  --ink-mute: #6A6860;
  --sage: #8CA882;
  --sage-deep: #6E8A72;
  --sage-pale: #D4BA7D;
  --forest: #1B3A2D;
  --forest-deep: #0F2318;
  --rust: #B5943A;
  --rust-deep: #9A7A28;
  --rule: rgba(28, 31, 29, 0.12);
  --rule-warm: rgba(181, 148, 58, 0.22);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 1px 2px rgba(28, 31, 29, 0.04), 0 12px 32px -16px rgba(28, 31, 29, 0.12);
  --shadow-lift: 0 2px 4px rgba(28, 31, 29, 0.06), 0 24px 48px -20px rgba(28, 31, 29, 0.18);
  --radius: 4px;

  --max-w: 1240px;
  --max-w-read: 720px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rust); }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- typography ---------- */
.serif { font-family: var(--font-serif); }
.mono-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink-mute);
}
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--rust-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--rust-deep);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0;
}
h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h3 { font-size: clamp(24px, 2.6vw, 32px); }
h4 { font-size: 20px; }

p { margin: 0 0 1em; }
.lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
}
em, i { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

/* ---------- layout primitives ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-read {
  max-width: var(--max-w-read);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-block: clamp(72px, 10vw, 140px); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--paper-warm { background: var(--paper-warm); }
.section--forest { background: var(--forest); color: var(--paper); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--paper); }
.section--forest .eyebrow { color: var(--sage-pale); }
.section--forest .eyebrow::before { background: var(--sage-pale); }
.section--forest .mono-label { color: var(--sage-pale); }
.section--forest a { color: var(--sage-pale); }
.section--forest a:hover { color: var(--paper); }
.section--forest-deep { background: var(--forest-deep); color: var(--paper); }
.section--forest-deep h1, .section--forest-deep h2, .section--forest-deep h3 { color: var(--paper); }

/* ---------- botanical divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: clamp(56px, 8vw, 96px) auto;
  max-width: 320px;
  color: var(--rust);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.divider svg { width: 60px; height: 28px; display: block; }

/* ---------- monogram ---------- */
.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0;
  font-style: italic;
  background: transparent;
  flex-shrink: 0;
}
.monogram--paper { border-color: var(--paper); color: var(--paper); }
.monogram--lg { width: 88px; height: 88px; font-size: 44px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 225, 0.93);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.brand-lockup__name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-lockup__tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav a:hover { color: var(--forest); border-bottom-color: var(--sage-pale); }
.nav a.is-active { color: var(--forest); border-bottom-color: var(--forest); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .2s ease, transform .15s ease;
  white-space: nowrap;
}
.header-cta:hover { background: var(--forest-deep); color: var(--paper); transform: translateY(-1px); }
.header-cta svg { width: 15px; height: 15px; }
.header-cta__label { display: none; }
.header-cta__num { font-variant-numeric: tabular-nums; }

@media (min-width: 880px) {
  .header-cta__label { display: inline; opacity: .8; font-weight: 500; }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
}

@media (max-width: 860px) {
  .nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 20px var(--gutter);
    gap: 4px;
  }
  .nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .nav.is-open a:last-child { border-bottom: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 880px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--forest-deep);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 35, 24, .12) 0%, rgba(15, 35, 24, .28) 40%, rgba(15, 35, 24, .88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 8vw, 96px);
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-pale);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--sage-pale);
}
.hero h1 {
  color: var(--paper);
  font-weight: 400;
  max-width: 16ch;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--sage-pale); font-weight: 300; }
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--paper);
  opacity: .92;
  max-width: 46ch;
  line-height: 1.55;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: var(--forest);
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .15s ease, background .2s ease;
}
.hero__cta-primary:hover { background: var(--sage-pale); color: var(--forest-deep); transform: translateY(-1px); }
.hero__cta-primary svg { width: 18px; height: 18px; }
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(245, 239, 225, .4);
  padding-bottom: 2px;
}
.hero__cta-secondary:hover { color: var(--sage-pale); border-bottom-color: var(--sage-pale); }

/* ---------- IMMEDIATE NEED band ---------- */
.immediate {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0;
  border-block: 1px solid var(--forest-deep);
}
.immediate__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .immediate__inner { grid-template-columns: 1.3fr 1fr; gap: 56px; }
}
.immediate__copy h2 {
  color: var(--paper);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  margin-bottom: 16px;
}
.immediate__copy p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--sage-pale);
  margin-bottom: 0;
  max-width: 46ch;
}
.immediate__action { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (min-width: 880px) { .immediate__action { align-items: flex-end; text-align: right; } }
.immediate__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: var(--forest-deep);
  padding: 22px 36px;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  transition: transform .15s ease, background .2s ease;
  text-decoration: none;
  min-height: 64px;
}
.immediate__phone:hover { background: var(--sage-pale); color: var(--forest-deep); transform: translateY(-1px); }
.immediate__phone svg { width: 26px; height: 26px; }
.immediate__note {
  color: var(--sage-pale);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
}

/* ---------- two-column story split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--narrow-left { grid-template-columns: 1fr 1.3fr; }
  .split--narrow-right { grid-template-columns: 1.3fr 1fr; }
}
.split__media {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
  border-radius: var(--radius);
}
.split__media--wide { aspect-ratio: 5 / 4; }
.split__copy h2 { margin-bottom: 24px; }
.split__copy .lede { margin-bottom: 24px; max-width: 50ch; }
.split__copy p { max-width: 50ch; color: var(--ink-soft); font-family: var(--font-body); }

/* ---------- LOCATION CARDS ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
.loc-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.loc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.loc-card__media {
  aspect-ratio: 5 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
  position: relative;
}
.loc-card__flag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--rust);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  font-weight: 600;
}
.loc-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.loc-card__opened { font-family: var(--font-sans); text-transform: uppercase; font-size: 11px; letter-spacing: 0.18em; color: var(--ink-mute); }
.loc-card h3 { font-size: 28px; }
.loc-card__addr { font-style: normal; font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.loc-card__hours { font-family: var(--font-body); font-size: 14px; color: var(--ink-mute); }
.loc-card__manager { font-family: var(--font-body); font-size: 13px; color: var(--ink-mute); font-style: italic; }
.loc-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--forest);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.loc-card__phone:hover { color: var(--rust); }
.loc-card__phone svg { width: 18px; height: 18px; }

/* ---------- SERVICE CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--paper);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s ease;
}
.service-card:hover { background: var(--paper-warm); }
.service-card__num { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rust); font-weight: 600; }
.service-card h3 { font-size: 28px; }
.service-card p { font-family: var(--font-body); font-size: 15px; color: var(--ink-soft); margin: 0; }
.service-card ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.service-card li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--rust);
}

/* ---------- VOICES ---------- */
.voices { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 880px) { .voices { grid-template-columns: repeat(3, 1fr); } }
.voice {
  background: var(--paper);
  border-left: 2px solid var(--rust);
  padding: 28px 28px 28px 32px;
}
.voice p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
}
.voice cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ---------- BIG QUOTE ---------- */
.big-quote {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.big-quote p {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.25;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 28px;
}
.big-quote cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-pale);
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--paper);
  padding: clamp(64px, 8vw, 96px) 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1080px) { .site-footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr); } }
.site-footer__brand { display: flex; flex-direction: column; gap: 20px; }
.site-footer__brand .brand-lockup__name { color: var(--paper); font-size: 22px; }
.site-footer__brand .brand-lockup__tag { color: var(--sage-pale); }
.site-footer__brand .monogram { border-color: var(--paper); color: var(--paper); }
.site-footer__brand p { color: var(--sage-pale); font-family: var(--font-body); font-size: 14px; line-height: 1.7; max-width: 32ch; margin: 0; }
.site-footer__col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--sage-pale);
  font-weight: 600;
  margin-bottom: 20px;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: var(--paper); font-family: var(--font-body); font-size: 14px; line-height: 1.6; }
.site-footer__col a:hover { color: var(--sage-pale); }
.site-footer__col address { font-style: normal; font-family: var(--font-body); color: var(--sage-pale); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.site-footer__col .ftr-phone { font-family: var(--font-serif); font-size: 22px; color: var(--paper); font-variant-numeric: tabular-nums; display: block; }
.site-footer__col .ftr-phone:hover { color: var(--sage-pale); }
.site-footer__base {
  border-top: 1px solid rgba(245, 239, 225, .12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--sage-pale);
}
.site-footer__base a { color: var(--sage-pale); }
.site-footer__base a:hover { color: var(--paper); }
.site-footer__credit { color: var(--sage-pale); }
.site-footer__credit a { color: var(--paper); border-bottom: 1px solid rgba(245,239,225,.3); padding-bottom: 1px; font-weight: 500; }
.site-footer__credit a:hover { border-bottom-color: var(--sage-pale); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
  min-height: 48px;
}
.btn--forest { background: var(--forest); color: var(--paper); }
.btn--forest:hover { background: var(--forest-deep); color: var(--paper); transform: translateY(-1px); }
.btn--paper { background: var(--paper); color: var(--forest); }
.btn--paper:hover { background: var(--sage-pale); color: var(--forest-deep); }
.btn--ghost { background: transparent; border: 1px solid var(--rule); color: var(--ink); }
.btn--ghost:hover { border-color: var(--forest); color: var(--forest); }

/* ---------- reveal (FALLBACK-SAFE) ---------- */
.reveal { transition: opacity .8s ease, transform .8s ease; }
.reveal--hidden { opacity: 0; transform: translateY(20px); }
.reveal--shown { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--hidden, .reveal--shown { transition: none; opacity: 1 !important; transform: none !important; }
}

/* ---------- count-up stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
@media (min-width: 760px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { background: var(--paper); padding: clamp(32px, 4vw, 48px) 24px; text-align: center; }
.stat-cell__value {
  font-family: var(--font-serif);
  font-size: clamp(46px, 5.5vw, 72px);
  line-height: 1;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.stat-cell__label { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.05em; color: var(--ink-mute); line-height: 1.45; max-width: 22ch; margin: 0 auto; }
.section--forest .stat-cell { background: var(--forest); }
.section--forest .stat-cell__value { color: var(--paper); }
.section--forest .stat-cell__label { color: var(--sage-pale); }
.section--forest .stats-band { background: rgba(245,239,225,.14); border-color: rgba(245,239,225,.14); }

/* ---------- hero ken-burns ---------- */
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.14); } }
.hero__media { transform: scale(1.06); animation: kenburns 22s ease-out forwards; }
@media (prefers-reduced-motion: reduce) { .hero__media { animation: none; transform: none; } }

/* ---------- brand logo / badge ---------- */
.brand-logo { height: 42px; width: auto; display: block; }
.brand-logo--footer { height: 50px; filter: brightness(0) invert(1); opacity: .95; }
.ftr-badge { width: 140px; height: auto; filter: brightness(0) invert(1); opacity: .7; }
@media (max-width: 600px) { .brand-logo { height: 36px; } }

/* ---------- staff portraits ---------- */
.leaders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 720px) { .leaders-grid { grid-template-columns: repeat(4, 1fr); } }
.leader-card { text-align: left; }
.leader-card__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; background: var(--paper-deep); margin-bottom: 14px; }
.leader-card__name { font-family: var(--font-serif); font-size: 20px; color: var(--ink); display: block; margin-bottom: 4px; }
.leader-card__title { font-family: var(--font-body); font-size: 13px; color: var(--ink-mute); line-height: 1.45; }

/* ---------- accessibility ---------- */
@media (max-width: 600px) {
  body { font-size: 17px; }
  .nav a { font-size: 16px; min-height: 44px; display: inline-flex; align-items: center; }
  .loc-card__phone { font-size: 24px; min-height: 44px; }
}
