/* ============================================================
   WARMING US – SHARED STYLES
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --h1: 7rem;
  --h2: 3rem;
  --h3: 1.5rem;
  --body: 1rem;

  --bg: #0A0A0A;
  --bg-alt: #111111;
  --text: #F5F0EB;
  --text-muted: #7A736B;
  --accent: #7FB800;
  --accent-hover: #8FCC0C;
  --border: #1E1E1E;

  --radius: 4px;
  --container: 1280px;
  --section-padding: 120px 0;

  --nav-height: 132px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--h1); font-weight: 900; }
h2 { font-size: var(--h2); font-weight: 700; }
h3 { font-size: var(--h3); font-weight: 600; }

.accent-text { color: var(--accent); }

/* --- BUTTONS --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* --- FOCUS VISIBLE --- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}

.nav-logo-img {
  height: 122px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 90px; }
}

.footer-logo .nav-logo-img,
.footer-brand .nav-logo-img {
  height: 32px;
  filter: brightness(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"],
.nav-links a:hover { color: var(--accent); }

.nav-cta { margin-left: 16px; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(127, 184, 0, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
  border: 1px solid rgba(127, 184, 0, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius);
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, var(--h1));
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(245, 240, 235, 0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245, 240, 235, 0.6);
  letter-spacing: 0.04em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-section {
  background: var(--accent);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.marquee-track {
  display: flex;
  overflow: hidden;
  padding: 16px 0;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #000;
  padding: 0 24px;
}

.marquee-dot {
  color: rgba(0,0,0,0.35) !important;
  padding: 0 4px !important;
  font-size: 0.5rem !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px 40px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHARED ELEMENTS
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, var(--h2));
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.accent-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 20px auto 24px;
}

.section-intro {
  max-width: 560px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-cta-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.section-cta-link:hover { color: var(--accent); }

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-overview {
  padding: var(--section-padding);
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--bg-alt);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover { background: #161616; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  color: var(--accent);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(127, 184, 0, 0.12);
  border: 1px solid rgba(127, 184, 0, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  align-self: flex-start;
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}

.service-card--emergency { background: #0f1a05; }
.service-card--emergency:hover { background: #132207; }
.service-card--emergency .service-tag {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: letter-spacing var(--transition);
  text-decoration: none;
  margin-top: auto;
}

.service-link:hover { letter-spacing: 0.16em; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser {
  padding: var(--section-padding);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-content .section-title {
  text-align: left;
}

.about-teaser-content .accent-rule {
  margin-left: 0;
  margin-right: auto;
}

.about-teaser-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.about-teaser-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-image-wrap picture {
  display: block;
}

.about-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.about-img--van {
  object-position: center;
}

.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: #000;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(127, 184, 0, 0.4);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.badge-text {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 4px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 184, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band-title {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cta-band-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 400px;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.cta-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.04em;
}

.cta-email:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  padding-top: 28px;
  padding-bottom: 16px;
  align-items: center;
}

.footer-email-col {
  text-align: center;
}
.footer-email-col .footer-email {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.footer-email-col .footer-email:hover { color: var(--accent); }

.footer-logo { display: block; margin-bottom: 0; }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.footer-email:hover { color: var(--accent); }

.footer-nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--accent); }

.footer-contact-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-small {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============================================================
   SUBPAGE HEADER (shared across about, services, contact)
   ============================================================ */
.subpage-header {
  background: var(--bg-alt);
  padding: 180px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.subpage-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(127,184,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.subpage-header .container { position: relative; z-index: 1; }

.subpage-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.subpage-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, var(--h2));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.subpage-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.subpage-intro {
  max-width: 540px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-inner { gap: 48px; }
}

@media (max-width: 960px) {
  :root {
    --h1: 5rem;
    --h2: 2.4rem;
    --section-padding: 80px 0;
  }

  .stats-grid { gap: 0; }
  .stat-divider { height: 40px; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-image-badge { bottom: -20px; right: -12px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { align-items: flex-start; }
}

@media (max-width: 768px) {
  .container { padding-inline: 24px; }

  :root {
    --h1: 3.8rem;
    --h2: 2rem;
    --nav-height: 64px;
  }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100dvh;
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  /* Hero */
  .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-scroll-hint { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-cta,
  .hero-actions .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  /* Stats */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .stat-divider { display: none; }
  .stat-item { padding: 28px 20px; }
  .stat-number { font-size: 2.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  /* About */
  .about-teaser-inner { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .about-image-badge { width: 88px; height: 88px; bottom: -16px; right: -8px; }
  .badge-number { font-size: 1.1rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand { display: flex; justify-content: center; }
  .footer-nav-col { align-items: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding-inline: 24px; }

  /* Subpage */
  .subpage-header { padding: 140px 0 60px; }

  /* CTA Band */
  .cta-band { padding: 72px 0; }
}

@media (max-width: 480px) {
  :root { --h1: 3rem; }
  .hero-headline { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .stat-number { font-size: 2rem; }
}

/* ============================================================
   PRINT SAFE / UTILITY
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
