/* ============================================================
   Progressive Windows & Doors — Conversion LP
   Brand tokens locked from brand-extract.json
   ============================================================ */

:root {
  --c-primary:        #01ADEE;       /* brand cyan — used on dark bg + large buttons */
  --c-primary-ink:    #00729F;       /* WCAG AA on white (5.5:1) + off-white (5.2:1) — use for small text on light bg */
  --c-primary-deep:   #005A7E;       /* WCAG AAA fallback */
  --c-dark:           #23100F;       /* warm near-black */
  --c-dark-2:         #2e1715;       /* slight lift */
  --c-offwhite:       #F9F4F2;       /* hero off-white */
  --c-bg:             #FFFFFF;
  --c-text:           #333333;
  --c-muted:          #6e6260;
  --c-line:           #e8e2df;
  --c-line-dark:      rgba(255,255,255,.18);

  --ff-display: "Red Rose", Georgia, serif;
  --ff-body:    "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-btn:     "Montserrat", system-ui, -apple-system, sans-serif;

  --radius-btn: 50px;
  --radius-card: 18px;

  --shadow-card: 0 14px 38px rgba(35, 16, 15, 0.10);
  --shadow-lift: 0 22px 60px rgba(35, 16, 15, 0.18);

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.hidden { display: none !important; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--ff-btn);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--c-primary-ink);    /* accessible on light bg */
  margin: 0 0 14px;
}
.eyebrow--light { color: var(--c-primary); }   /* on dark bg — bright cyan passes */
.eyebrow--center { text-align: center; }
.section-h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--c-dark);
  margin: 0 0 16px;
}
.section-h2--center { text-align: center; }
.section-h2--light { color: var(--c-offwhite); }
.section-lead {
  font-size: 18px;
  color: var(--c-muted);
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-lead--center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: none;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--xl { padding: 18px 36px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--c-primary-ink);   /* accessible cyan (4.6:1 on white) */
  color: #fff;
}
.btn--primary:hover { background: var(--c-primary-deep); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline-light:hover { background: #fff; color: var(--c-dark); }

.btn--outline-dark {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn--outline-dark:hover { background: var(--c-dark); color: #fff; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 12px var(--gutter);
}
.topbar__logo {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}
.topbar__logo img { height: 44px; width: auto; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding-inline: 4px;
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-dark);
}
.topbar__phone:hover { color: var(--c-primary); }
.topbar__cta { padding: 11px 22px; font-size: 14px; }

@media (max-width: 600px) {
  .topbar__logo img { height: 36px; }
  .topbar__phone span { display: none; }
  .topbar__phone {
    width: 48px; height: 48px;
    background: var(--c-dark); color: #fff;
    border-radius: 999px; justify-content: center;
  }
  .topbar__cta { padding: 10px 16px; font-size: 13px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--c-dark) url("/images/progressive-hero-video-poster.jpg") center / cover no-repeat;
  color: var(--c-offwhite);
  padding: clamp(56px, 7vw, 92px) 0 clamp(56px, 6vw, 82px);
  overflow: hidden;
}
.hero__video,
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .78;
  filter: saturate(1.04) contrast(1.06) brightness(1.04);
}
.hero__scrim {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(35,16,15,.18) 0%, rgba(35,16,15,.48) 62%, rgba(35,16,15,.72) 100%),
    linear-gradient(180deg, rgba(35,16,15,.50), rgba(35,16,15,.68)),
    linear-gradient(90deg, rgba(35,16,15,.78), rgba(35,16,15,.34) 54%, rgba(35,16,15,.58));
}
.hero::before {
  /* subtle architectural grid — NOT generic gradient blob */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(249,244,242,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,244,242,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 35%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.hero__eyebrow {
  font-family: var(--ff-btn);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: rgba(249,244,242,.78);
  margin: 0 0 22px;
  text-shadow: 0 2px 18px rgba(0,0,0,.42);
}
.hero__h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0 0 22px;
  color: var(--c-offwhite);
  text-shadow: 0 4px 30px rgba(0,0,0,.58);
}
.hero__accent {
  color: var(--c-primary);
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(249,244,242,.84);
  max-width: 720px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 18px rgba(0,0,0,.52);
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(249,244,242,.86);
  text-shadow: 0 2px 16px rgba(0,0,0,.42);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust-mark { color: var(--c-primary); font-size: 14px; }
.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 44px;
  font-family: var(--ff-btn);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(249,244,242,.7);
}
.hero__scroll svg { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (max-width: 560px) {
  .hero {
    padding: 48px 0 42px;
    background-position: center top;
  }
  .hero__video {
    opacity: .68;
    object-position: center top;
  }
  .hero__scrim {
    background:
      radial-gradient(ellipse at 50% 32%, rgba(35,16,15,.24) 0%, rgba(35,16,15,.52) 58%, rgba(35,16,15,.78) 100%),
      linear-gradient(180deg, rgba(35,16,15,.52), rgba(35,16,15,.70));
  }
  .hero__eyebrow {
    font-size: 10.5px;
    letter-spacing: .14em;
    margin-bottom: 16px;
  }
  .hero__h1 {
    font-size: clamp(34px, 10.3vw, 40px);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .hero__sub {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { width: 100%; }
  .hero__cta-row a[href^="tel:"] { display: none; }
  .hero__cta-row { margin-bottom: 22px; }
  .hero__phone-reassure {
    font-size: 11px;
    margin-bottom: 0;
  }
  .hero__trust { display: none; }
  .hero__scroll { display: none; }
}

/* ---------- Savings ---------- */
.savings {
  background: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
}
.savings__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.savings__copy h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--c-dark);
  margin: 0 0 18px;
}
.savings__copy .lead { font-size: 18px; color: var(--c-text); margin-bottom: 28px; }
.savings__list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 18px; }
.savings__list li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.savings__num {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--c-primary-ink);
  line-height: 1;
  padding-top: 4px;
}
.savings__list strong {
  display: block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.savings__list p { margin: 0; color: var(--c-muted); font-size: 15.5px; }
.savings__visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
  background: var(--c-dark);
}
.savings__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.savings__stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--c-dark);
  color: var(--c-offwhite);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  max-width: 260px;
}
.savings__stat-num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 54px;
  line-height: 1;
  color: var(--c-primary);
}
.savings__stat-label {
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .savings__grid { grid-template-columns: 1fr; }
  .savings__visual { aspect-ratio: 3 / 2; max-height: 480px; }
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--c-offwhite);
  padding: clamp(72px, 9vw, 120px) 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.ba {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ba:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--c-dark);
  aspect-ratio: 16 / 9;
}
.ba__half {
  position: relative;
  overflow: hidden;
  background: var(--c-dark);
}
.ba__half img {
  width: 100%; height: 100%; object-fit: cover;
}
.ba__chip {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(35,16,15,.85);
  color: #fff;
  backdrop-filter: blur(4px);
}
.ba__chip--after { background: var(--c-primary-ink); }
.ba figcaption {
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--c-dark);
  padding: 16px 20px;
}
@media (max-width: 760px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .ba__pair { aspect-ratio: 16 / 10; }
}

/* ---------- Why ---------- */
.why {
  background: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: 48px;
}
.why__item {
  background: var(--c-offwhite);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border-top: 4px solid var(--c-primary);
}
.why__num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  color: var(--c-primary-ink);
  line-height: 1;
  margin-bottom: 14px;
}
.why__item h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--c-dark);
  margin: 0 0 10px;
}
.why__item p { margin: 0; color: var(--c-muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 1000px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ---------- Quote ---------- */
.quote {
  background: var(--c-dark);
  color: var(--c-offwhite);
  padding: clamp(72px, 9vw, 120px) 0;
}
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.quote__copy h2 { margin-top: 4px; }
.quote__lead {
  font-size: 18px;
  color: rgba(249,244,242,.82);
  margin: 0 0 24px;
}
.quote__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--c-primary);
  margin-bottom: 28px;
}
.quote__phone:hover { color: #fff; }
.quote__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--ff-btn);
  font-size: 14px;
  color: rgba(249,244,242,.72);
  display: grid;
  gap: 8px;
}
.quote__bullets li::before { content: "— "; color: var(--c-primary); }

.quote__form {
  background: #fff;
  color: var(--c-text);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-lift);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
  position: relative;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-dark);
}
.field label span[aria-hidden="true"] { color: var(--c-primary-ink); }
.field label .muted { font-weight: 600; color: var(--c-muted); text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--c-dark);
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: #fff;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(1,173,238,.15);
}
/* Only mark invalid AFTER user has interacted (user-invalid is supported in all modern browsers; fallback is :invalid:not(:placeholder-shown) which won't fire on empty selects on initial render) */
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid { border-color: #d64545; }
/* Fallback for older Safari: only :placeholder-shown trick for text inputs */
@supports not selector(:user-invalid) {
  .field input:invalid:not(:placeholder-shown):not(:focus) { border-color: #d64545; }
}
.field textarea { resize: vertical; min-height: 100px; }

.quote__fineprint {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--c-muted);
  margin: -6px 0 0;
  text-align: center;
}

.quote__form.is-loading button[type="submit"] {
  opacity: .65;
  cursor: progress;
  position: relative;
}
.quote__form.is-loading button[type="submit"]::after {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.quote__success[hidden] { display: none !important; }
.quote__success {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  z-index: 2;
}
.quote__success h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--c-dark);
  margin: 0 0 12px;
}
.quote__success p { max-width: 380px; color: var(--c-muted); }
.quote__success p a { color: var(--c-primary-ink); font-weight: 700; }
.quote__success::before {
  content: "";
  display: block;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-primary-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12 10 18 20 6'/%3E%3C/svg%3E") center / 32px no-repeat;
  margin-bottom: 18px;
}
.quote__error[hidden] { display: none !important; }
.quote__error {
  grid-column: 1 / -1;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
}
.quote__error a { color: #991b1b; font-weight: 700; text-decoration: underline; }

@media (max-width: 900px) {
  .quote__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .quote__form { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--c-offwhite);
  padding: clamp(72px, 9vw, 120px) 0;
}
.faq__list { max-width: 820px; margin: 40px auto 0; display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.faq__item[open] {
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.faq__item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-dark);
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--c-primary-ink);
  line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "—"; font-size: 22px; }
.faq__body {
  padding: 0 24px 22px;
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.65;
}
.faq__body strong { color: var(--c-dark); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--c-primary-ink);
  color: #fff;
  padding: clamp(64px, 8vw, 110px) 0;
}
.final-cta__inner { text-align: center; }
.final-cta h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  margin: 0 0 14px;
  color: #fff;
}
.final-cta p { max-width: 600px; margin: 0 auto 28px; font-size: 18px; color: #fff; }
.final-cta__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.final-cta .btn--primary {
  background: var(--c-dark);
  color: #fff;
}
.final-cta .btn--primary:hover { background: #000; }
.final-cta .btn--outline-light:hover { color: var(--c-primary-ink); }
@media (max-width: 480px) {
  .final-cta__row { flex-direction: column; align-items: stretch; }
  .final-cta__row .btn { width: 100%; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--c-dark);
  color: rgba(249,244,242,.78);
  padding: 64px 0 0;
  font-size: 14.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer__brand img { filter: brightness(0) invert(1); height: 50px; width: auto; margin-bottom: 14px; }
.footer__tag { color: rgba(249,244,242,.7); max-width: 320px; }
.footer__col h4 {
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__col a:hover { color: var(--c-primary); }
.footer__legal {
  border-top: 1px solid var(--c-line-dark);
  margin-top: 48px;
  padding: 22px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: rgba(249,244,242,.55);
  max-width: var(--max-w);
  margin-inline: auto;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; text-align: center; }
}

/* ---------- Floating call CTA ---------- */
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  background: var(--c-dark);
  color: #fff;
  font-family: var(--ff-btn);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 14px 34px rgba(35,16,15,.28);
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.floating-call:hover {
  transform: translateY(-1px);
  background: var(--c-primary-deep);
  box-shadow: 0 18px 42px rgba(35,16,15,.34);
}
.floating-call:active { transform: translateY(0); }
@media (max-width: 980px) {
  .floating-call {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
  }
  .floating-call span { display: none; }
}
@media (max-width: 760px) {
  .floating-call { display: none; }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(35,16,15,.96);
  backdrop-filter: blur(8px);
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 14px;
  padding: 16px 12px;
  border-radius: var(--radius-btn);
  min-height: 52px;
}
.mobile-cta__btn--primary { background: var(--c-primary-ink); color: #fff; }
.mobile-cta__btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
  .topbar__cta { display: none; }
}

/* ---------- Hero phone reassurance ---------- */
.hero__phone-reassure {
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(249,244,242,.6);
  margin: 0 0 28px;
}

/* ---------- Geo trust band ---------- */
.geo-band {
  background: var(--c-offwhite);
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.geo-band p {
  margin: 0;
  text-align: center;
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-dark);
  letter-spacing: .01em;
}
.geo-band strong { color: var(--c-primary-ink); font-weight: 700; }

/* ---------- Big stat band ---------- */
.big-stat {
  background: var(--c-dark);
  color: var(--c-offwhite);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.big-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,244,242,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,244,242,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 70%);
  pointer-events: none;
}
.big-stat__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.big-stat__num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(48px, 10vw, 130px);
  line-height: 0.95;
  color: var(--c-offwhite);
  letter-spacing: -.02em;
}
.big-stat__num span {
  color: var(--c-primary);
  font-weight: 500;
}
.big-stat__copy {
  font-family: var(--ff-body);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  max-width: 460px;
  color: rgba(249,244,242,.86);
  margin: 0;
}
@media (max-width: 640px) {
  .big-stat__inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* ---------- Comparison ---------- */
.compare {
  background: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
}
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: 48px;
}
.compare__col {
  border-radius: var(--radius-card);
  padding: 36px 32px;
  position: relative;
}
.compare__col--them {
  background: #f3efed;
  color: var(--c-muted);
}
.compare__col--them h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--c-dark);
  margin: 0 0 20px;
  opacity: .85;
}
.compare__col--them ul li {
  position: relative;
  padding-left: 28px;
}
.compare__col--them ul li::before {
  content: "\2014";
  position: absolute;
  left: 0; top: 0;
  color: #b8aca8;
  font-weight: 700;
}
.compare__col--us {
  background: var(--c-dark);
  color: var(--c-offwhite);
  border: 2px solid var(--c-primary);
  box-shadow: var(--shadow-lift);
}
.compare__chip {
  display: inline-block;
  background: var(--c-primary-ink);
  color: #fff;
  font-family: var(--ff-btn);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.compare__col--us h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  margin: 0 0 20px;
}
.compare__col--us ul li {
  position: relative;
  padding-left: 30px;
}
.compare__col--us ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  background: var(--c-primary-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12 10 18 20 6'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-radius: 50%;
}
.compare ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .compare__grid { grid-template-columns: 1fr; }
}

/* ---------- Risk row ---------- */
.risk-row {
  background: var(--c-offwhite);
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.risk-row ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--c-dark);
}
.risk-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.risk-row__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--c-primary-ink);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* ---------- Quote phone reassurance ---------- */
.quote__phone-reassure {
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(249,244,242,.55);
  margin: -22px 0 28px;
}

/* ---------- Field help ---------- */
.field__help {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 12.5px;
  color: var(--c-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* ---------- Next steps ---------- */
.next-steps {
  background: #fff;
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--c-line);
}
.next-steps__list {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.next-steps__list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
}
.next-steps__num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 36px;
  color: var(--c-primary-ink);
  line-height: 1;
}
.next-steps__list h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-dark);
  margin: 0 0 6px;
}
.next-steps__list p {
  margin: 0;
  font-size: 14.5px;
  color: var(--c-muted);
  line-height: 1.55;
}
@media (max-width: 820px) {
  .next-steps__list { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- Final CTA reassurance ---------- */
.final-cta__reassure {
  font-family: var(--ff-btn);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: #fff;
  margin-top: 18px;
  opacity: .95;
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
