/* ─────────────────────────────────────────────────────────────────────
   Total Development Roofing — site.css
   Pittsburgh Industrial · cool palette · Big Shoulders Display + Hanken Grotesk + Plex Mono
   ───────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bone: #F4F4F2;
  --graphite: #0F1418;
  --steel-90: #1C2128;
  --steel-80: #272D36;
  --steel-60: #5A626D;
  --steel-40: #9098A2;
  --steel-20: #D3D6DA;
  --steel-10: #E8EAEC;
  --storm: #3B5266;
  --storm-tint: #E5EAF0;
  --storm-ink: #28384A;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background-color: var(--bone);
  color: var(--graphite);
  font-feature-settings: 'ss01';
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  line-height: 1.65;
}

img, video { display: block; max-width: 100%; height: auto; }

/* ── Type primitives ─────────────────────────────────────────────────── */
.display {
  font-family: 'Big Shoulders Display', sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.96;
  font-weight: 900;
}
.display-md { font-weight: 800; line-height: 1.0; }
.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums lining-nums;
}
.num { font-variant-numeric: tabular-nums lining-nums; }
.eyebrow {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--storm);
}
.eyebrow-mute {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-40);
}
.lede {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--steel-80);
}

/* ── Rules ───────────────────────────────────────────────────────────── */
.hairline { border-top: 1px solid var(--steel-20); }
.hairline-storm { border-top: 1px solid var(--storm); }
.hairline-bone { border-top: 1px solid rgba(244,244,242,0.18); }

/* ── Paper-grain (subtle) ────────────────────────────────────────────── */
.grain::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
  z-index: 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 1.875rem;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: background-color 200ms cubic-bezier(0.4,0,0.2,1),
              border-color 200ms cubic-bezier(0.4,0,0.2,1),
              color 200ms cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--storm); border-color: var(--storm); color: var(--bone); }
.btn-primary:hover { background: var(--storm-ink); border-color: var(--storm-ink); }
.btn-primary:focus-visible { outline: 2px solid var(--storm); outline-offset: 2px; }

.btn-ghost-dark { background: transparent; border-color: var(--graphite); color: var(--graphite); }
.btn-ghost-dark:hover { background: var(--graphite); color: var(--bone); }

.btn-ghost-light { background: transparent; border-color: rgba(244,244,242,0.6); color: var(--bone); }
.btn-ghost-light:hover { border-color: var(--bone); background: rgba(244,244,242,0.08); }

.inline-link {
  color: var(--graphite);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 200ms cubic-bezier(0.4,0,0.2,1), text-decoration-color 200ms cubic-bezier(0.4,0,0.2,1);
}
.inline-link:hover { color: var(--storm); text-decoration-color: var(--storm); }
.inline-link-light {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(244,244,242,0.5);
  transition: text-decoration-color 200ms cubic-bezier(0.4,0,0.2,1);
}
.inline-link-light:hover { text-decoration-color: var(--bone); }

/* ── Forms ───────────────────────────────────────────────────────────── */
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--steel-20);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--graphite);
  transition: border-color 200ms cubic-bezier(0.4,0,0.2,1), box-shadow 200ms cubic-bezier(0.4,0,0.2,1);
}
.form-textarea { min-height: 9rem; resize: vertical; line-height: 1.6; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--storm);
  box-shadow: 0 0 0 3px rgba(59,82,102,0.18);
}
/* Autofill suppression (mobile-Safari safe) — per Brown-family rule */
.form-input:-webkit-autofill, .form-textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--graphite) !important;
  transition: background-color 99999s ease-in-out 0s, color 99999s ease-in-out 0s;
}
.form-label {
  display: block;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--storm);
  margin-bottom: 0.5rem;
}
/* Honeypot — visually hidden but in the DOM */
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ── Cards ───────────────────────────────────────────────────────────── */
.card-base { background: var(--bone); border-top: 1px solid var(--steel-20); padding: 2rem 1.5rem; }
.card-elev {
  background: var(--steel-10);
  border: 1px solid var(--steel-20);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 2px rgba(15,20,24,0.04), 0 8px 24px -8px rgba(59,82,102,0.18);
}
/* Service tile — photo card */
.service-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bone);
  border: 1px solid var(--steel-20);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1), box-shadow 200ms cubic-bezier(0.4,0,0.2,1), border-color 200ms cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.service-tile:hover {
  transform: translateY(-4px);
  border-color: var(--storm);
  box-shadow: 0 1px 2px rgba(15,20,24,0.04), 0 18px 36px -12px rgba(59,82,102,0.28);
}
.service-tile .tile-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--steel-90);
}
.service-tile .tile-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.service-tile .tile-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(15,20,24,0.45) 0%, rgba(15,20,24,0.0) 50%),
    rgba(28,33,40,0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.service-tile .tile-body { padding: 1.5rem 1.5rem 1.75rem; }
.service-tile .tile-eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--storm);
  display: block;
  margin-bottom: 0.5rem;
}
.service-tile .tile-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--graphite);
  margin: 0 0 0.5rem;
}
.service-tile .tile-scope {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel-60);
  margin: 0;
}
.service-tile .tile-arrow {
  display: inline-block;
  margin-top: 0.875rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--storm);
  transition: transform 200ms cubic-bezier(0.4,0,0.2,1);
}
.service-tile:hover .tile-arrow { transform: translateX(4px); }

/* ── Manifesto pull-quote ────────────────────────────────────────────── */
.manifesto {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.5;
  color: var(--graphite);
  max-width: 56ch;
}
.manifesto strong { font-style: normal; font-weight: 700; color: var(--graphite); }

/* ── Photo treatment frame ───────────────────────────────────────────── */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--steel-90);
}
.photo-frame img, .photo-frame video {
  display: block; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.0) 55%),
    rgba(28,33,40,0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ── Logo on dark surface ────────────────────────────────────────────── */
/* Logo file is a pre-built light-on-transparent variant (white wordmark +
   white mountains + black roof on transparent). No CSS filter needed. */
.logo-on-dark { filter: none; }

/* ── Layout primitives ───────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .wrap { padding-left: 2.5rem; padding-right: 2.5rem; } }
.section { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.section-tight { padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }

/* ── Nav (sticky top bar) ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28,33,40,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(244,244,242,0.08);
  color: var(--bone);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0.875rem 2.5rem; } }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: none;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4,0,0.2,1);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--bone); border-bottom-color: var(--bone); }
.nav-links .nav-phone {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.nav-links .nav-cta {
  padding: 0.625rem 1.25rem;
  border: 1.5px solid var(--bone);
  border-radius: 2px;
  transition: background-color 200ms cubic-bezier(0.4,0,0.2,1), color 200ms cubic-bezier(0.4,0,0.2,1);
}
.nav-links .nav-cta:hover { background: var(--bone); color: var(--steel-90); border-bottom-color: var(--bone); }

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(244,244,242,0.4);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--bone); transition: transform 200ms, opacity 200ms; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
/* Mobile menu open state */
.nav-links.is-open {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--steel-90);
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(244,244,242,0.08);
}
.nav-links.is-open li { width: 100%; }
.nav-links.is-open a {
  display: block;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(244,244,242,0.08);
  font-size: 0.875rem;
}
.nav-links.is-open .nav-cta {
  margin-top: 1rem;
  text-align: center;
  border: 1.5px solid var(--bone);
}

/* ── Marquee accent strip ────────────────────────────────────────────── */
.marquee {
  background: var(--storm);
  color: var(--bone);
  padding: 0.875rem 0;
  border-top: 1px solid var(--storm-ink);
  border-bottom: 1px solid var(--storm-ink);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track .dot { color: rgba(244,244,242,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  background: var(--steel-90);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) contrast(1.08) brightness(0.85);
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,24,0.55) 0%, rgba(15,20,24,0.25) 35%, rgba(15,20,24,0.85) 100%),
    rgba(28,33,40,0.30);
  mix-blend-mode: multiply;
  z-index: -1;
}
.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero h1.display {
  font-size: clamp(3rem, 9vw, 7.5rem);
  color: var(--bone);
  margin: 0 0 1.25rem;
}
.hero .lede { color: rgba(244,244,242,0.85); max-width: 50ch; }
.hero .eyebrow { color: rgba(244,244,242,0.7); margin-bottom: 1.25rem; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* ── Numbers + Manifesto split ───────────────────────────────────────── */
.stats-block { background: var(--steel-10); border-top: 1px solid var(--steel-20); border-bottom: 1px solid var(--steel-20); }

/* ── Process strip (dark inversion) ──────────────────────────────────── */
.process { background: var(--steel-90); color: var(--bone); }
.process .eyebrow { color: var(--storm); }
.process .step-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  color: var(--storm);
  display: block;
  margin-bottom: 0.875rem;
}
.process .step-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 0.5rem;
  line-height: 1.05;
}
.process .step-body {
  color: rgba(244,244,242,0.7);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Financing strip ─────────────────────────────────────────────────── */
.financing-strip {
  background: var(--steel-90);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.financing-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/photos/photo-roofing-v2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: saturate(0.6) contrast(1.1);
  z-index: -1;
}
.financing-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,33,40,0.95) 0%, rgba(28,33,40,0.75) 100%);
  z-index: -1;
}

/* ── Page hero (interior route hero, shorter than home) ──────────────── */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  background: var(--steel-90);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) contrast(1.08) brightness(0.6);
}
.page-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,24,0.5) 0%, rgba(15,20,24,0.2) 30%, rgba(15,20,24,0.85) 100%),
    rgba(28,33,40,0.30);
  mix-blend-mode: multiply;
  z-index: -1;
}
.page-hero-inner {
  position: relative;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.page-hero h1.display {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--bone);
  margin: 0 0 1.25rem;
}
.page-hero .lede { color: rgba(244,244,242,0.85); max-width: 56ch; }
.page-hero .eyebrow { color: rgba(244,244,242,0.7); margin-bottom: 1.25rem; }
.page-hero-back {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.6);
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4,0,0.2,1);
}
.page-hero-back:hover { color: var(--bone); }

/* ── Spec-sheet material entry (used on service pages) ───────────────── */
.spec-entry { padding-top: 3rem; padding-bottom: 3rem; }
.spec-entry + .spec-entry { border-top: 1px solid var(--steel-20); }
.spec-id {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--storm);
  margin-bottom: 0.5rem;
}
.spec-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.0;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--graphite);
  margin: 0 0 0.5rem;
}
.spec-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--steel-80);
  margin: 0;
}
.spec-meta {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
}
@media (min-width: 768px) { .spec-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.spec-meta .lbl { color: var(--steel-40); display: block; margin-bottom: 0.125rem; letter-spacing: 0.12em; text-transform: uppercase; }
.spec-meta .val { color: var(--graphite); }

/* ── Photo strip break (between sections, full-bleed) ────────────────── */
.photo-break {
  position: relative;
  height: clamp(220px, 30vh, 360px);
  overflow: hidden;
  isolation: isolate;
  background: var(--steel-90);
}
.photo-break img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.75) contrast(1.05) brightness(0.85);
}
.photo-break::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,33,40,0.30);
  mix-blend-mode: multiply;
}
.photo-break-quote {
  position: absolute;
  inset: 0;
  display: flex; align-items: center;
  z-index: 1;
}
.photo-break-quote .wrap {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--bone);
  text-shadow: 0 2px 16px rgba(15,20,24,0.4);
}

/* ── Mini CTA (smaller than home's contact-cta split) ────────────────── */
.mini-cta { background: var(--bone); border-top: 1px solid var(--steel-20); }
.mini-cta .wrap {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) { .mini-cta .wrap { flex-direction: row; align-items: center; justify-content: space-between; } }
.mini-cta .display {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--graphite);
  margin: 0;
}
.mini-cta .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer { background: var(--steel-90); color: var(--bone); }
.site-footer .footer-link {
  color: rgba(244,244,242,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 200ms cubic-bezier(0.4,0,0.2,1);
}
.site-footer .footer-link:hover { color: var(--bone); }
.site-footer .footer-fine {
  font-size: 0.75rem;
  color: var(--steel-40);
  letter-spacing: 0.02em;
}

/* ── Utility ─────────────────────────────────────────────────────────── */
.text-graphite { color: var(--graphite); }
.text-steel-60 { color: var(--steel-60); }
.text-steel-80 { color: var(--steel-80); }
.text-storm { color: var(--storm); }
.text-bone { color: var(--bone); }
.bg-bone { background: var(--bone); }
.bg-steel-10 { background: var(--steel-10); }
.bg-steel-90 { background: var(--steel-90); color: var(--bone); }
.bg-storm { background: var(--storm); color: var(--bone); }
