/* ============================================================
   MEMORIAL FUNERAL HOME & CREMATION — core design system
   Muted sage + ivory — calm dignity, warm Texas earth
   ============================================================ */

:root {
  --paper: #F5F1E6;
  --paper-warm: #ECE7D4;
  --paper-deep: #E2DACC;
  --ink: #1E2320;
  --ink-soft: #3A4038;
  --ink-mute: #6B6860;
  --sage: #8FA88A;
  --sage-deep: #5F7A5E;
  --sage-pale: #C4D1C0;
  --forest: #3B5C3A;
  --forest-deep: #253B25;
  --rust: #8B6B4E;
  --rust-deep: #6E5038;
  --rule: rgba(30, 35, 32, 0.12);
  --rule-warm: rgba(139, 107, 78, 0.25);

  --font-serif: "Tenor Sans", Georgia, "Times New Roman", serif;
  --font-sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-soft: 0 1px 2px rgba(31, 38, 34, 0.04), 0 12px 32px -16px rgba(31, 38, 34, 0.12);
  --shadow-lift: 0 2px 4px rgba(31, 38, 34, 0.06), 0 24px 48px -20px rgba(31, 38, 34, 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-sans);
  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: 12px;
  letter-spacing: 0.22em;
  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;
  font-variation-settings: "wght" 500;
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.012em;
}
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: 18px; }

p { margin: 0 0 1em; }
.lede {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.6;
  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); }

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

/* ---------- monogram (custom M-in-ring) ---------- */
.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: 22px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0;
  font-style: italic;
  background: transparent;
}
.monogram--paper {
  border-color: var(--paper);
  color: var(--paper);
}
.monogram--lg { width: 88px; height: 88px; font-size: 40px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 231, 0.92);
  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: 16px 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: 19px;
  color: var(--ink);
  font-weight: 500;
}
.brand-lockup__tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav a {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  font-weight: 500;
}
.nav a:hover { color: var(--forest); border-bottom-color: var(--sage); }
.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-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  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: 16px; height: 16px; }
.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-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(26, 46, 34, .15) 0%, rgba(26, 46, 34, .25) 40%, rgba(26, 46, 34, .85) 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: 12px;
  letter-spacing: 0.22em;
  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: 14ch;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-pale);
  font-weight: 400;
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--paper);
  opacity: .92;
  max-width: 44ch;
  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-weight: 600;
  font-size: 16px;
  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-size: 15px;
  border-bottom: 1px solid rgba(246, 241, 231, .4);
  padding-bottom: 2px;
}
.hero__cta-secondary:hover { color: var(--sage-pale); border-bottom-color: var(--sage-pale); }

/* ---------- IMMEDIATE NEED band — most important block on the page ---------- */
.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, 40px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.immediate__copy p {
  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(26px, 3.2vw, 36px);
  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-size: 14px;
  font-style: italic;
}

/* ---------- generic 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);
  position: relative;
}
.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); }

/* ---------- 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-size: 11px;
  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: 26px; }
.loc-card__addr {
  font-style: normal;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.loc-card__hours { font-size: 14px; color: var(--ink-mute); }
.loc-card__manager { 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: 22px;
  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: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}
.service-card h3 { font-size: 24px; }
.service-card p { 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-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(--sage-deep);
}

/* ---------- VOICES (testimonials) ---------- */
.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: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
}
.voice cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  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(28px, 3.2vw, 40px);
  line-height: 1.3;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 28px;
}
.big-quote cite {
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.18em;
  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 p { color: var(--sage-pale); 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: 11px;
  letter-spacing: 0.18em;
  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-size: 14px; line-height: 1.6; }
.site-footer__col a:hover { color: var(--sage-pale); }
.site-footer__col address {
  font-style: normal;
  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: 18px;
  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(246, 241, 231, .12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  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(246,241,231,.3);
  padding-bottom: 1px;
  font-weight: 500;
}
.site-footer__credit a:hover { border-bottom-color: var(--sage-pale); }

/* ---------- buttons / CTAs (generic) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  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 animation (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; }
}

/* ---------- real logo ---------- */
.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; }
}

/* ---------- 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(44px, 5.5vw, 68px);
  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: 13px;
  letter-spacing: 0.04em;
  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(246,241,231,.14); border-color: rgba(246,241,231,.14); }

/* ---------- hero ken-burns (slow, calm) ---------- */
@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; }
}

/* ---------- staff portraits ---------- */
.staff-item--photo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.staff-item__avatar {
  width: 64px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--paper-deep);
  flex-shrink: 0;
}
.staff-item--photo .staff-item__name { margin-bottom: 2px; }

/* leadership feature row with larger 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: 19px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.leader-card__title {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* dog cards */
.dogs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .dogs-grid { grid-template-columns: repeat(3, 1fr); } }
.dog-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 18px;
}
.dog-card__photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-deep);
  flex-shrink: 0;
}
.dog-card__name { font-family: var(--font-serif); font-size: 20px; color: var(--ink); display:block; }
.dog-card__meta { font-size: 13px; color: var(--ink-mute); line-height: 1.4; }

/* photo caption for scenic stand-in images */
.photo-note {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 8px;
}

/* ---------- accessibility: large tap targets ---------- */
@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; }
}
