:root {
  --navy:       #1b2a41;
  --navy-deep:  #0d1623;
  --blue:       #08088d;
  --white:      #ffffff;
  --red:        #e31010;
  --red-dark:   #c40e0e;
  --steel:      #3d5a80;
  --paper:      #f5f3ef;
  --ink:        #1a1f27;
  --muted:      #5d6670;
  --line:       #e2ddd4;
  --display:    "Oswald", system-ui, sans-serif;
  --body:       "Source Sans 3", system-ui, sans-serif;
  --wrap:       1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
img { max-width: 100%; display: block; }
a { color: var(--steel); }
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 640px; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s, transform 0.12s, color 0.12s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--ghost-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost-dark:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-deep);
  border-bottom: 2px solid rgba(255,255,255,0.04);
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0 1.25rem;
  height: 64px;
}
.nav__brand {
  display: flex; align-items: center; gap: 0.65rem;
  color: #fff; text-decoration: none;
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__brand img { height: 38px; border-radius: 3px; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a {
  color: #b8c6d8; text-decoration: none; font-family: var(--display);
  text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.06em;
  transition: color 0.12s;
}
.nav__links a:hover { color: #fff; }
.nav__links a.nav__link--challenge { color: var(--red); }
.nav__links a.nav__link--challenge:hover { color: #ff4040; }
.nav__contact { display: flex; align-items: center; gap: 0.9rem; }
.nav__social {
  width: 28px; height: 28px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; color: #b8c6d8;
  text-decoration: none; font-size: 0.78rem; transition: border-color 0.12s, color 0.12s;
}
.nav__social:hover { border-color: var(--red); color: #fff; }
.nav__phone {
  color: #fff; text-decoration: none; font-family: var(--display);
  font-weight: 700; font-size: 1rem; letter-spacing: 0.02em;
  transition: color 0.12s;
}
.nav__phone:hover { color: var(--red); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 82vh;
  display: grid; place-items: center; text-align: center;
  color: #fff; overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(170deg, rgba(13,22,35,0.60) 0%, rgba(13,22,35,0.82) 100%);
}
.hero__content { padding: 5rem 1.25rem 4rem; max-width: 780px; }
.hero__logo { margin: 0 auto 1.5rem; width: 220px; height: auto; }
.hero__eyebrow {
  font-family: var(--display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin: 0 0 1rem;
}
.hero__tagline {
  font-size: clamp(2.4rem, 5.5vw, 4rem); text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin-bottom: 0.5rem;
}
.hero__rule { width: 48px; height: 4px; background: var(--red); margin: 1.25rem auto 1.5rem; }
.hero__sub {
  font-size: 1.15rem; max-width: 560px; margin: 0 auto 2rem;
  color: #c9d5e3; line-height: 1.7;
}
.hero__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero__secondary {
  font-family: var(--display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #8ba0b8; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem; transition: color 0.12s;
}
.hero__secondary:hover { color: var(--red); }
.hero__secondary::after { content: "→"; }

/* ── Trust strip ──────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  flex: 1; min-width: 180px; max-width: 280px;
  text-align: center; padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block; font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700;
  color: var(--red); line-height: 1;
}
.trust-item span {
  display: block; font-family: var(--display);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #7a90a8; margin-top: 0.35rem;
}

/* ── Intro ────────────────────────────────────────────────────────────────── */
.intro { padding: 5rem 0 3rem; text-align: center; }
.intro__rule { width: 48px; height: 4px; background: var(--red); margin: 0 auto 1.5rem; }
.intro h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 1rem; }
.intro p { max-width: 680px; margin: 0 auto; font-size: 1.1rem; color: var(--muted); line-height: 1.7; }

/* ── Why / Cards ──────────────────────────────────────────────────────────── */
.why { padding: 2rem 0 5rem; }
.why__heading {
  text-align: center; color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 2.5rem;
}
.cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: #fff; overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,42,65,0.08);
  border-top: 4px solid var(--red);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 36px rgba(27,42,65,0.14); transform: translateY(-3px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card__body { padding: 1.5rem; }
.card h3 {
  color: var(--navy); margin: 0 0 0.5rem;
  text-transform: uppercase; font-size: 1.2rem; letter-spacing: 0.03em;
}
.card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 0.97rem; }

/* ── About ────────────────────────────────────────────────────────────────── */
.about { padding: 5rem 0; background: #fff; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about__text h2 { color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.about__text p { color: var(--muted); max-width: 560px; line-height: 1.7; }
.about__text h3 { color: var(--navy); margin-top: 2rem; font-size: 1.15rem; }
.concerns { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; }
.concerns li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
}
.concerns li:last-child { border-bottom: none; }
.concerns li span {
  flex: none; width: 34px; height: 34px; border-radius: 0;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 0.9rem;
  margin-top: 0.1rem;
}
.concerns li p { margin: 0; color: var(--ink); line-height: 1.55; }
.about__proof {
  background: var(--navy-deep);
  padding: 2.5rem;
  color: #fff;
}
.about__proof h3 {
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin: 0 0 1.5rem;
}
.proof-stat {
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: baseline; gap: 1rem;
}
.proof-stat:last-child { border-bottom: none; }
.proof-stat strong {
  font-family: var(--display); font-size: 2.4rem;
  font-weight: 700; color: var(--red); line-height: 1; white-space: nowrap;
}
.proof-stat span { font-size: 0.9rem; color: #8ba0b8; line-height: 1.45; }

/* ── Challenge strip ──────────────────────────────────────────────────────── */
.challenge-strip {
  background: var(--red);
  padding: 4rem 1.25rem;
  text-align: center;
}
.challenge-strip__inner { max-width: 720px; margin: 0 auto; }
.challenge-strip h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff; text-transform: uppercase; margin-bottom: 0.75rem;
}
.challenge-strip p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 1.75rem; }
.btn--challenge {
  background: #fff; color: var(--red); border-color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 1rem 2.25rem; text-decoration: none; display: inline-block;
  transition: background 0.15s, transform 0.12s;
}
.btn--challenge:hover { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); transform: translateY(-2px); }

/* ── Atlas Warranty ──────────────────────────────────────────────────────── */
.atlas-section {
  padding: 5rem 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.atlas_container { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.atlas-section__header { max-width: 720px; margin-bottom: 2rem; }
.atlas-section__header h2 { color: var(--navy); font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin-bottom: 0.4rem; }
.atlas-section__header p { color: var(--muted); margin: 0; }
.atlas-card { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.atlas-frame { display: block; width: 100%; min-height: 1200px; border: none; }

/* ── Contact CTA ──────────────────────────────────────────────────────────── */
.contact-section {
  padding: 6rem 1.25rem;
  background: var(--navy-deep);
  text-align: center;
}
.contact-section__inner { max-width: 640px; margin: 0 auto; }
.contact-section__rule { width: 48px; height: 4px; background: var(--red); margin: 0 auto 1.5rem; }
.contact-section h2 {
  color: #fff; font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.contact-section p { color: #8ba0b8; font-size: 1.1rem; margin-bottom: 2rem; }
.form-success {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 2rem; text-align: center;
}
.form-success h2 { color: #fff; margin-bottom: 0.5rem; }
.form-success p { color: #8ba0b8; margin: 0; }
.form-success a { color: var(--red); }

/* ── Contact form (modal) ────────────────────────────────────────────────── */
.contact-form { display: grid; gap: 1rem; margin-top: 1.5rem; text-align: left; }
.contact-form label {
  display: grid; gap: 0.35rem; font-family: var(--display);
  font-weight: 600; color: var(--navy); text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 0.06em;
}
.contact-form input, .contact-form textarea {
  font-family: var(--body); font-size: 1rem; padding: 0.7rem 0.85rem;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--red); border-color: var(--red);
}
.contact-form button { width: 100%; margin-top: 0.25rem; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--navy-deep); color: #7a90a8; padding: 3rem 0 1rem; }
.footer__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem;
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}
.footer__brand strong { color: #fff; font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.02em; }
.footer address { font-style: normal; margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.65; }
.footer__phone {
  color: #fff; font-family: var(--display); font-weight: 700;
  font-size: 1.35rem; text-decoration: none; transition: color 0.12s;
}
.footer__phone:hover { color: var(--red); }
.footer__social { margin-top: 0.75rem; display: flex; gap: 1rem; }
.footer__social a { color: #7a90a8; text-decoration: none; font-size: 0.9rem; transition: color 0.12s; }
.footer__social a:hover { color: var(--red); }
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a { color: #7a90a8; text-decoration: none; font-size: 0.9rem; transition: color 0.12s; }
.footer__nav a:hover { color: #fff; }
.footer__badges { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.footer__badges img { background: #fff; padding: 4px; border-radius: 3px; }
.footer__copy {
  text-align: center; margin: 2rem 0 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06); color: #4a5568; font-size: 0.85rem;
}

/* ── Modal ────────────────────────────────────────────────────────────────── */
.modal {
  border: none; padding: 0;
  max-width: 540px; width: calc(100% - 2rem);
  box-shadow: 0 24px 64px rgba(13,22,35,0.5);
}
.modal::backdrop {
  background: rgba(13,22,35,0.72);
  backdrop-filter: blur(4px);
}
.modal__inner { padding: 0; position: relative; }
.modal__head {
  background: var(--navy-deep);
  padding: 1.5rem 2rem;
}
.modal__head h2 { color: #fff; margin: 0 2rem 0 0; font-size: 1.4rem; text-transform: uppercase; }
.modal__head p { color: #7a90a8; margin: 0.25rem 0 0; font-size: 0.9rem; }
.modal__body { padding: 1.5rem 2rem 2rem; background: #fff; }
.modal__close {
  position: absolute; top: 1.1rem; right: 1.25rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; line-height: 1; color: #5a6980; padding: 0;
  transition: color 0.12s;
}
.modal__close:hover { color: #fff; }

/* ── Free Roof Challenge ──────────────────────────────────────────────────── */

.ch-hero {
  position: relative; background: #0b131e;
  color: #fff; text-align: center; padding: 6.5rem 1.25rem 9rem;
}
.ch-hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.ch-hero__eyebrow {
  font-family: var(--display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: #8ba0b8; margin: 0 0 1.5rem;
}
.ch-hero__heading {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.01em; margin: 0; text-wrap: balance;
}
.ch-hero__line1 { display: block; font-size: clamp(3.8rem, 10vw, 7rem); color: #fff; }
.ch-hero__line2 { display: block; font-size: clamp(3.8rem, 10vw, 7rem); color: var(--red); }
.ch-hero__rule { width: 48px; height: 4px; background: var(--red); margin: 1.75rem auto; }
.ch-hero__dare {
  font-family: var(--display); font-size: clamp(1rem, 2.2vw, 1.35rem); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: #c9d5e3;
  margin: 0 0 1rem; text-wrap: balance;
}
.ch-hero__sub {
  font-size: 1.1rem; color: #8ba0b8; max-width: 600px;
  margin: 0 auto 2.5rem; line-height: 1.72;
}
.ch-hero__sub strong { color: #dce8f0; font-weight: 600; }
.ch-cta {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 1rem 2.5rem; background: var(--red); color: #fff;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.ch-cta:hover { background: var(--red-dark); transform: translateY(-2px); color: #fff; }
.ch-hero__cut {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 72px;
  background: var(--navy); clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.ch-stats {
  background: var(--navy); display: flex; justify-content: center;
  border-bottom: 3px solid var(--red);
}
.ch-stat {
  flex: 1; max-width: 300px; text-align: center; padding: 1.6rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ch-stat:last-child { border-right: none; }
.ch-stat strong {
  display: block; font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 700; color: var(--red); line-height: 1;
}
.ch-stat span {
  display: block; font-family: var(--display); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #8ba0b8; margin-top: 0.4rem;
}
.ch-main { padding: 4.5rem 0 6rem; background: var(--paper); }
.ch-layout { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }
.ch-proof__heading {
  font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  text-transform: uppercase; color: var(--navy); margin: 0 0 1.75rem; letter-spacing: 0.01em;
}
.ch-proof__list { list-style: none; padding: 0; margin: 0 0 2.25rem; display: grid; gap: 1.5rem; }
.ch-proof__item { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; align-items: start; }
.ch-check {
  display: grid; place-items: center; width: 2rem; height: 2rem;
  background: var(--navy); color: #fff; font-family: var(--display);
  font-size: 0.9rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem;
}
.ch-proof__item strong {
  display: block; font-family: var(--display); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 0.3rem;
}
.ch-proof__item p { margin: 0; font-size: 0.97rem; color: var(--muted); line-height: 1.6; }
.ch-quote { margin: 0; padding: 1rem 1.25rem; border-left: 4px solid var(--red); background: #fff; }
.ch-quote p { margin: 0 0 0.5rem; font-size: 1rem; color: var(--ink); line-height: 1.55; font-style: italic; }
.ch-quote cite {
  font-style: normal; font-family: var(--display); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.ch-form-col { position: sticky; top: 5.5rem; }
.ch-card { background: #fff; box-shadow: 0 12px 48px rgba(11,19,30,0.14); overflow: hidden; }
.ch-card__head { background: var(--navy-deep); padding: 1.5rem 1.75rem; }
.ch-card__head h2 {
  font-family: var(--display); font-size: 1.45rem; font-weight: 700;
  color: #fff; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.02em;
}
.ch-card__head p { color: #7a90a8; margin: 0; font-size: 0.9rem; }
.ch-form { display: grid; gap: 1rem; padding: 1.5rem 1.75rem 1.25rem; }
.ch-field {
  display: grid; gap: 0.3rem; font-family: var(--display); font-size: 0.78rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy);
}
.ch-field em { font-style: normal; text-transform: none; color: var(--muted); font-family: var(--body); letter-spacing: 0; font-weight: 400; font-size: 0.85em; }
.ch-field input, .ch-field textarea {
  font-family: var(--body); font-size: 1rem; padding: 0.65rem 0.8rem;
  border: 1px solid var(--line); background: #fff; color: var(--ink); width: 100%;
  transition: border-color 0.12s, outline 0.12s;
}
.ch-field input:focus, .ch-field textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.ch-submit {
  font-family: var(--display); font-weight: 700; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.95rem 1rem; background: var(--red); color: #fff;
  border: none; cursor: pointer; width: 100%; margin-top: 0.25rem;
  transition: background 0.15s, transform 0.12s;
}
.ch-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.ch-card__fine { padding: 0 1.75rem 1.25rem; margin: 0; font-size: 0.78rem; color: #9aa5b4; line-height: 1.5; }
.ch-success {
  text-align: center; padding: 4rem 1.5rem; background: #fff;
  box-shadow: 0 12px 48px rgba(11,19,30,0.14);
}
.ch-success__icon {
  width: 64px; height: 64px; background: #15803d; color: #fff;
  display: grid; place-items: center; font-family: var(--display);
  font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.25rem;
}
.ch-success h2 { font-size: 1.75rem; color: var(--navy); margin-bottom: 0.75rem; text-transform: uppercase; }
.ch-success p { color: var(--muted); font-size: 1rem; margin-bottom: 1.75rem; line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ch-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ch-form-col { position: static; order: -1; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .trust-strip { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .hero__logo { width: 160px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .ch-hero { padding: 5rem 1.25rem 7rem; }
  .ch-stats { flex-direction: column; }
  .ch-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .ch-stat:last-child { border-bottom: none; }
}

/* ── A11y / Motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__video { display: none; }
  .hero { background: var(--navy-deep); }
  .btn:hover, .card:hover { transform: none; }
}
