/* ============================================================
   Atlas Plumbing & Heating Ltd. — atlasplumbingandheating.ca
   Royal blue / red / white — matches van wrap branding
   ============================================================ */

:root {
  --navy: #0d3b8f;
  --navy-deep: #082455;
  --blue: #1259c3;
  --blue-bright: #2f7de6;
  --blue-soft: #e8f0fc;
  --red: #d7282f;
  --red-dark: #b01e24;
  --ink: #172440;
  --muted: #56658a;
  --bg-soft: #f3f6fc;
  --line: #dbe4f3;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(13, 59, 143, 0.08), 0 4px 14px rgba(13, 59, 143, 0.06);
  --shadow-md: 0 4px 10px rgba(13, 59, 143, 0.10), 0 12px 32px rgba(13, 59, 143, 0.10);
  --radius: 14px;
  --font-head: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

.container { width: min(1160px, 92%); margin: 0 auto; }

section { padding: 72px 0; }

.section-soft { background: var(--bg-soft); }

.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.06rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-red { background: var(--red); color: var(--white) !important; box-shadow: 0 6px 18px rgba(215, 40, 47, 0.35); }
.btn-red:hover { background: var(--red-dark); }

.btn-blue { background: var(--blue); color: var(--white) !important; box-shadow: 0 6px 18px rgba(18, 89, 195, 0.30); }
.btn-blue:hover { background: var(--navy); }

.btn-outline-light { border-color: rgba(255,255,255,0.75); color: var(--white) !important; background: rgba(255,255,255,0.06); }
.btn-outline-light:hover { background: rgba(255,255,255,0.16); }

.btn-outline-blue { border-color: var(--blue); color: var(--blue) !important; background: var(--white); }
.btn-outline-blue:hover { background: var(--blue-soft); }

.btn-lg { font-size: 1.12rem; padding: 18px 34px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #cfe0fa;
  font-size: 0.88rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar strong { color: var(--white); font-weight: 700; }
.topbar a { color: var(--white); font-weight: 600; }
.topbar .dot { color: var(--red); margin: 0 6px; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #35d06b;
  display: inline-block;
  margin-right: 7px;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 208, 107, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(53, 208, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 208, 107, 0); }
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 1px 0 var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  width: min(1240px, 94%);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; flex: none; }
.brand-mark { width: 39px; height: 52px; flex: none; }
.brand-text { line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-sub {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  color: var(--red);
  text-transform: uppercase;
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 19px; list-style: none; }
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none !important;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); border-bottom-color: var(--red); }

.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone-info { text-align: right; line-height: 1.2; }
.header-phone-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--red); text-transform: uppercase; }
.header-phone-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.22rem;
  color: var(--navy);
  text-decoration: none !important;
  white-space: nowrap;
}
.header-phone-number:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(47, 125, 230, 0.55), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(215, 40, 47, 0.28), transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--blue) 100%);
  color: var(--white);
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 60 H40 V20 H80 V60 H120' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='10'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); margin: 18px 0 20px; }
.hero h1 .accent { color: #ffd7d9; }
.hero-lead { font-size: 1.18rem; color: #d6e4fb; max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-chip svg { width: 15px; height: 15px; color: #ffd7d9; }

/* hero card */
.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(4, 16, 42, 0.45);
}
.hero-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.hero-card > p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.hero-card .form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.hero-card-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.8rem; font-weight: 700;
  margin: 18px 0;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-card-divider::before, .hero-card-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.hero-card .btn { width: 100%; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.88rem; display: block; margin-bottom: 6px; color: var(--navy-deep); }
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 89, 195, 0.15);
}
textarea { resize: vertical; min-height: 110px; }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none !important;
  color: var(--ink);
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-bright);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 700; font-size: 0.9rem;
  margin-top: 14px;
}

/* ---------- Featured service card ---------- */
.featured-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 2px solid var(--blue);
  background: linear-gradient(100deg, var(--blue-soft) 0%, var(--white) 55%);
}
.featured-card .service-icon { margin-bottom: 0; flex: none; }
.featured-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.featured-btn { flex: none; }
@media (max-width: 820px) {
  .featured-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- How it works steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- Why Atlas / value props ---------- */
.props-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prop {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.prop-icon {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.prop-icon svg { width: 30px; height: 30px; }
.prop h3 { font-size: 1.08rem; margin-bottom: 8px; }
.prop p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 54px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
}
.stat-num .red { color: #ff8a8f; }
.stat-label { color: #b9cdf0; font-size: 0.92rem; font-weight: 600; margin-top: 4px; }

/* ---------- Emergency strip ---------- */
.emergency {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  color: var(--white);
  padding: 44px 0;
}
.emergency .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.emergency h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 2rem); }
.emergency p { color: #ffd9db; margin-top: 6px; }
.emergency .btn { background: var(--white); color: var(--red) !important; }
.emergency .btn:hover { background: #ffeaea; }

/* ---------- City chips ---------- */
.city-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.city-chip {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none !important;
  transition: 0.15s;
}
.city-chip:hover { border-color: var(--blue); background: var(--blue-soft); }

/* ---------- Trust / review section ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.trust-card .quote-mark { font-family: Georgia, serif; font-size: 3rem; color: var(--red); line-height: 0.6; margin-bottom: 14px; }
.trust-card p { color: var(--ink); }
.trust-card .who { margin-top: 16px; font-weight: 700; color: var(--navy); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--navy-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.4rem; color: var(--red); font-weight: 700; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--blue) 100%);
  color: var(--white);
  padding: 64px 0;
}
.page-hero h1 { color: var(--white); margin: 14px 0 12px; }
.page-hero p { color: #d6e4fb; font-size: 1.12rem; max-width: 42em; }
.page-hero .hero-ctas { margin-top: 26px; }

/* ---------- Service detail sections ---------- */
.service-detail { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: none; }
.service-detail .service-icon { margin-bottom: 0; }
.service-detail h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-detail p { color: var(--muted); max-width: 62em; }
.service-detail ul { margin: 12px 0 0 18px; color: var(--muted); }
.service-detail li { margin-bottom: 5px; }
.service-detail .btn { margin-top: 18px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.about-copy p { margin-bottom: 16px; color: var(--ink); }
.about-copy p.lead { font-size: 1.15rem; color: var(--navy-deep); font-weight: 500; }
.van-photo img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.van-photo figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 10px; text-align: center; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: 0.9rem;
}
.badge svg { width: 16px; height: 16px; color: var(--red); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .service-icon { width: 46px; height: 46px; flex: none; margin: 0; }
.contact-row .service-icon svg { width: 24px; height: 24px; }
.contact-row h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-row p, .contact-row a { font-size: 1.02rem; }
.contact-row .big { font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; color: var(--navy); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #b9cdf0;
  padding: 64px 0 0;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b9cdf0; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 35px; height: 46px; box-sizing: content-box; background: #fff; padding: 5px 8px; border-radius: 10px; }
.footer-brand-name { font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; color: var(--white); line-height: 1.1; }
.footer-brand-sub { font-size: 0.6rem; letter-spacing: 0.13em; color: #ff9a9e; font-weight: 700; text-transform: uppercase; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-badge {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #dce8fc;
}
.footer-phone {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white) !important;
}
.footer-cities { columns: 2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.84rem;
  color: #8fa9d8;
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(8, 36, 85, 0.18);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-callbar .btn { flex: 1; padding: 14px 10px; font-size: 1rem; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .header-phone .btn { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 18px 6%;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { display: block; padding: 12px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .props-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 52px 0; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-right { display: none; }
  .header-phone-info { display: none; }
  .cards-grid, .trust-grid, .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .hero-ctas .btn { width: 100%; }
  .emergency .container { flex-direction: column; text-align: center; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 74px; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .stats-grid { gap: 30px 14px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
