/* ============================================================
   BOOTH MEMORIAL CO. — core design system
   "Enduring dignity" — slate, granite, muted gold
   Cormorant Garamond display · Inter Tight body
   ============================================================ */

:root {
  --paper: #F3F0EC;
  --paper-warm: #EBE7DF;
  --paper-deep: #E0DAD0;
  --ink: #1B1D21;
  --ink-soft: #363A40;
  --ink-mute: #686D76;
  --slate: #454C5C;
  --slate-deep: #2A2F3A;
  --slate-pale: #9BA3AF;
  --granite: #787D84;
  --granite-pale: #C4C8CE;
  --gold: #B5905A;
  --gold-deep: #8A6A30;
  --gold-pale: #D4B87C;
  --rule: rgba(27, 29, 33, 0.10);
  --rule-gold: rgba(181, 144, 90, 0.22);

  --font-serif: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

  --max-w: 1240px;
  --max-w-read: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---------- 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;
}
/* film grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .032;
  pointer-events: none;
  z-index: 9999;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-deep); }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--gold);
  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: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink-mute);
}
/* Eyebrow — gold rule, uppercase Inter Tight */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.40em;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

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.02;
  letter-spacing: -0.02em;
  font-weight: 400;
}
h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  font-weight: 400;
}
h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 400; }
h4 { font-size: 19px; font-weight: 500; }

p { margin: 0 0 1em; }
.lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.58;
  color: var(--ink-soft);
  font-weight: 300;
  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(80px, 11vw, 152px); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--paper-warm { background: var(--paper-warm); }
.section--slate {
  background: var(--slate-deep);
  color: var(--paper);
}
.section--slate h1,
.section--slate h2,
.section--slate h3 { color: var(--paper); }
.section--slate .eyebrow { color: var(--gold-pale); }
.section--slate .eyebrow::before { background: var(--gold-pale); }
.section--slate .mono-label { color: var(--slate-pale); }
.section--slate a { color: var(--gold-pale); }
.section--slate a:hover { color: var(--paper); }

/* ---------- decorative rule divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: clamp(56px, 8vw, 96px) auto;
  max-width: 320px;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-gold);
}
.divider__mark {
  width: 10px; height: 10px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

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

/* ---------- site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 240, 236, 0.93);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  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: 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-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  font-weight: 500;
}
.nav a:hover { color: var(--slate-deep); border-bottom-color: var(--gold); }
.nav a.is-active { color: var(--slate-deep); border-bottom-color: var(--gold); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate-deep);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .2s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.header-cta:hover { background: var(--slate); 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-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(640px, 88vh, 920px);
  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(--slate-deep);
  transform: scale(1.06);
  animation: kenburns 24s ease-out forwards;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(42, 47, 58, .12) 0%,
      rgba(42, 47, 58, .28) 40%,
      rgba(42, 47, 58, .88) 100%);
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media { animation: none; transform: none; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(72px, 9vw, 108px);
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 30px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--paper);
  font-weight: 300;
  max-width: 15ch;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 23px);
  color: var(--paper);
  opacity: .9;
  max-width: 46ch;
  line-height: 1.52;
  margin-bottom: 40px;
  font-weight: 300;
}
.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(--slate-deep);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s var(--ease), background .2s var(--ease);
}
.hero__cta-primary:hover {
  background: var(--gold-pale);
  color: var(--slate-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: 14px;
  border-bottom: 1px solid rgba(243, 240, 236, .38);
  padding-bottom: 2px;
}
.hero__cta-secondary:hover {
  color: var(--gold-pale);
  border-bottom-color: var(--gold-pale);
}

/* ---------- CTA band (request/visit) ---------- */
.request-band {
  background: var(--slate);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0;
}
.request-band__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) {
  .request-band__inner { grid-template-columns: 1.3fr 1fr; gap: 56px; }
}
.request-band h2 {
  color: var(--paper);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
  margin-bottom: 16px;
}
.request-band p {
  font-size: 16px;
  color: var(--slate-pale);
  margin-bottom: 0;
  max-width: 48ch;
}
.request-band__action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 880px) {
  .request-band__action { align-items: flex-end; text-align: right; }
}
.request-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: var(--slate-deep);
  padding: 22px 36px;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  transition: transform .15s var(--ease), background .2s var(--ease);
  text-decoration: none;
  min-height: 64px;
}
.request-band__phone:hover {
  background: var(--gold-pale);
  color: var(--slate-deep);
  transform: translateY(-1px);
}
.request-band__phone svg { width: 24px; height: 24px; }
.request-band__note {
  color: var(--slate-pale);
  font-size: 13px;
  font-style: italic;
}

/* ---------- two-column 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); }

/* ---------- services grid ---------- */
.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 var(--ease);
}
.service-card:hover { background: var(--paper-warm); }
.service-card__num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.service-card h3 { font-size: clamp(22px, 2.2vw, 26px); }
.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: 11px;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ---------- process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 880px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
.process-step {
  padding: 40px 32px;
  border: 1px solid var(--rule);
  border-top: 3px solid transparent;
  position: relative;
}
.process-step:hover { border-top-color: var(--gold); }
.process-step__num {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--granite-pale);
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}
.process-step h3 { font-size: 22px; margin-bottom: 14px; }
.process-step p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ---------- gallery/recent memorials ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.memorial-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--granite-pale);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-top-color .25s var(--ease), box-shadow .25s var(--ease);
}
.memorial-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.memorial-card__initials {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--granite-pale);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 300;
}
.memorial-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
}
.memorial-card__dates {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.memorial-card__cemetery {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}
.memorial-card__type {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

/* ---------- 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(--gold);
  padding: 28px 28px 28px 32px;
}
.voice p {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.52;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 300;
}
.voice cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.10em;
  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, 46px);
  line-height: 1.28;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}
.big-quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--slate-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.4fr 1fr 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(--slate-pale); }
.site-footer__brand p { color: var(--slate-pale); font-size: 14px; line-height: 1.7; max-width: 34ch; margin: 0; }

.site-footer__col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-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(--gold-pale); }
.site-footer__col address {
  font-style: normal;
  color: var(--slate-pale);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.site-footer__col .ftr-phone {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  display: block;
}
.site-footer__col .ftr-phone:hover { color: var(--gold-pale); }

.site-footer__base {
  border-top: 1px solid rgba(243, 240, 236, .10);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--slate-pale);
}
.site-footer__base a { color: var(--slate-pale); }
.site-footer__base a:hover { color: var(--paper); }
.site-footer__credit a {
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(212, 184, 124, .3);
  padding-bottom: 1px;
  font-weight: 500;
}
.site-footer__credit a:hover { border-bottom-color: var(--gold-pale); }

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

/* ---------- 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(48px, 6vw, 72px);
  line-height: 1;
  color: var(--slate-deep);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
  font-weight: 300;
}
.stat-cell__label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  line-height: 1.45;
  max-width: 22ch;
  margin: 0 auto;
}

/* ---------- reveal animation (fallback-safe) ---------- */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--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;
  }
}

/* ---------- inline SVG monogram logo ---------- */
.brand-logo { height: 44px; width: auto; display: block; }
.brand-logo--footer { height: 50px; filter: brightness(0) invert(1); opacity: .9; }

/* ---------- final CTA band ---------- */
.cta-band {
  background: var(--slate-deep);
  color: var(--paper);
  padding: clamp(80px, 11vw, 152px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--paper); font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 20px; }
.cta-band p { color: var(--slate-pale); font-size: 17px; max-width: 52ch; margin: 0 auto 36px; line-height: 1.6; }
.cta-band .cta-band__btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

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