/* =====================================================================
   BGM Painting — unified responsive landing page
   Design system: high-contrast black/white canvas, square geometry (2px
   radius), one scarce cobalt accent, geometric Archivo type, photo-first.
   Mobile-first refinements collapse in below 760px (the phone experience
   from the dedicated mobile design: trust line, action bar, list-style
   benefits, 4:3 before/after, swipeable testimonials).
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  --accent: #1A4FC4;
  --accent-deep: #12399A;
  --accent-soft: #EDF2FC;
  --on-accent: #ffffff;

  --ink: #0E0E0E;          /* near-black headings & dark sections */
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --muted-2: #6a6a6a;
  --muted-3: #8a8a8a;

  --bg: #ffffff;
  --bg-warm: #F5F4F1;
  --field-bg: #fafafa;

  --line: #e7e7e7;
  --line-soft: #ececec;
  --line-field: #e3e3e3;

  --danger: #b94b3a;

  --radius: 2px;
  --maxw: 1200px;
  --header-h: 73px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, blockquote, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  font: 600 14px/1 'Archivo', sans-serif;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------------------------- Layout ------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}
.container--narrow { max-width: 1100px; }
.container--wide   { max-width: 1080px; }

.section { padding-block: clamp(56px, 8vw, 100px); }
.section--warm   { background: var(--bg-warm); }
.section--dark   { background: var(--ink); }
.section--accent { background: var(--accent); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head--center { margin-inline: auto; text-align: center; margin-bottom: 40px; }

.eyebrow {
  font: 700 12px/1.4 'Archivo', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--on-accent { color: rgba(255, 255, 255, .8); }

.section-title {
  font: 800 clamp(28px, 4vw, 44px)/1.0 'Archivo', sans-serif;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: 14px;
}
.section-title--light { color: #fff; }

.section-intro {
  font: 400 16px/1.55 'Archivo', sans-serif;
  color: var(--muted);
  margin-top: 14px;
}
.section--dark .section-intro { color: rgba(255, 255, 255, .74); }

.section-cta { text-align: center; margin-top: 36px; }

/* Decorative rotated outline squares (hero / estimate) */
.deco {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}
.deco--a { top: -120px; right: -120px; width: 420px; height: 420px; transform: rotate(15deg); }
.deco--b { bottom: -160px; left: -100px; width: 360px; height: 360px; transform: rotate(-12deg); border-color: rgba(255,255,255,.05); }
.deco--c { top: -120px; left: -90px; width: 360px; height: 360px; transform: rotate(-12deg); border-color: rgba(255,255,255,.05); }
.deco--d { bottom: -150px; right: -80px; width: 320px; height: 320px; transform: rotate(14deg); border-color: rgba(255,255,255,.05); }

/* ---------------------------- Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: 700 14px/1 'Archivo', sans-serif;
  padding: 13px 20px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn--lg { font-size: 15px; padding: 17px 26px; }
.btn--block { width: 100%; padding: 18px; font-size: 15px; }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-deep); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { border-color: #fff; }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--reset {
  background: transparent;
  color: var(--ink);
  border-color: #dcdcdc;
  font-size: 13px;
  padding: 12px 18px;
}
.btn--reset:hover { border-color: var(--ink); }

/* ----------------------------- Brand ------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  flex: none;
  width: 44px; height: 44px;
  background: var(--accent);
  display: grid; place-items: center;
  border-radius: var(--radius);
  font: 800 16px/1 'Archivo', sans-serif;
  letter-spacing: -.03em;
  color: var(--on-accent);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font: 800 17px/1 'Archivo', sans-serif; letter-spacing: -.01em; color: var(--ink); }
.brand__tag {
  font: 600 9.5px/1.4 'Archivo', sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-3);
  margin-top: 4px;
}
.brand--light .brand__name { color: #fff; }

/* ---------------------------- Header ------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font: 700 15px/1 'Archivo', sans-serif;
  white-space: nowrap;
}
.header-call {
  display: none;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  place-items: center;
  text-decoration: none;
}

/* ----------------------------- Hero -------------------------------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 84px);
}
.hero__title {
  font: 800 clamp(38px, 5.6vw, 66px)/0.98 'Archivo', sans-serif;
  letter-spacing: -.025em;
  color: #fff;
}
.hero__lede {
  font: 500 clamp(16px, 1.4vw, 19px)/1.55 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .74);
  max-width: 520px;
  margin-top: 20px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .6);
  aspect-ratio: 4 / 5;
  background: #222;
}
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-rating {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 11px;
  font: 600 13px/1.35 'Archivo', sans-serif;
  color: #fff;
}
.photo-rating::before {
  content: "";
  position: absolute;
  left: -18px; right: -18px; bottom: -18px;
  height: 150px;
  background: linear-gradient(to top, rgba(14, 14, 14, .82), transparent);
  z-index: -1;
  pointer-events: none;
}
.stars { color: var(--accent); letter-spacing: 2px; white-space: nowrap; }
.photo-rating .stars { font-size: 17px; }

.hero__badge {
  position: absolute;
  right: -12px; top: -12px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .6);
  text-align: left;
}
.hero__badge strong { display: block; font: 800 18px/1 'Archivo', sans-serif; }
.hero__badge small {
  display: block;
  font: 600 10px/1 'Archivo', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* -------------------------- Trust line (mobile) -------------------- */
.trust-line {
  display: none;
  background: #121212;
  border-top: 2px solid var(--accent);
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-line::-webkit-scrollbar { display: none; }
.trust-line__item {
  flex: none;
  min-width: 46%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}
.trust-line__item:last-child { border-right: 0; }
.trust-line__item > svg { flex: none; color: var(--accent); }
.trust-line__item div { line-height: 1.2; }
.trust-line__item strong { display: block; font: 800 14px/1 'Archivo', sans-serif; color: #fff; }
.trust-line__item span { display: block; font: 400 11px/1.3 'Archivo', sans-serif; color: rgba(255, 255, 255, .5); margin-top: 5px; }

/* ---------------------------- Problem ------------------------------ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.problem-card { background: #fff; border: 1px solid #e7e6e2; padding: 24px; }
.problem-card__label {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 10px;
  font: 700 13px/1 'Archivo', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.problem-card__label .x { color: var(--danger); font-weight: 800; font-size: 17px; }
.problem-card__body { font: 400 15px/1.55 'Archivo', sans-serif; color: #3a3a3a; }

.callout {
  background: var(--ink);
  padding: 28px 32px;
  margin-top: 14px;
  text-align: center;
}
.callout p { font: 500 clamp(16px, 1.8vw, 20px)/1.5 'Archivo', sans-serif; color: #fff; }
.callout b { color: var(--accent); font-weight: 800; }

/* ---------------------------- Benefits ----------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit { background: #fff; padding: 30px; }
.benefit__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  margin-bottom: 18px;
  color: var(--accent);
}
.benefit h3 { font: 800 18px/1.15 'Archivo', sans-serif; color: var(--ink); margin-bottom: 9px; }
.benefit p { font: 400 14.5px/1.55 'Archivo', sans-serif; color: var(--muted); }

/* ------------------------- Before / After -------------------------- */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  background: #ddd;
  --p: 50%;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--p)) 0 0);
}
.ba__label {
  position: absolute;
  top: 14px;
  font: 700 11px/1 'Archivo', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: var(--radius);
  pointer-events: none;
}
.ba__label--after  { left: 14px;  background: rgba(14, 14, 14, .78); color: #fff; }
.ba__label--before { right: 14px; background: rgba(255, 255, 255, .9); color: var(--ink); }
.ba__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--p);
  width: 2px;
  background: var(--accent);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba__handle {
  position: absolute;
  top: 50%;
  left: var(--p);
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  pointer-events: none;
}
.ba:focus-visible { outline-offset: 4px; }

/* ----------------------------- Steps ------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.step { border: 1px solid var(--line); padding: 32px; }
.step__label { font: 800 13px/1 'Archivo', sans-serif; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.step__num {
  font: 800 54px/1 'Archivo', sans-serif;
  color: var(--accent-soft);
  letter-spacing: -.03em;
  margin: 6px 0 14px;
}
.step h3 { font: 800 19px/1.15 'Archivo', sans-serif; color: var(--ink); margin-bottom: 10px; }
.step p { font: 400 14.5px/1.55 'Archivo', sans-serif; color: var(--muted); }

/* -------------------------- Testimonials --------------------------- */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 auto 40px;
}
.rating-summary .stars { font-size: 19px; letter-spacing: 3px; }
.rating-summary__score { font: 800 18px/1 'Archivo', sans-serif; color: #fff; }
.rating-summary__meta { font: 400 14px/1.4 'Archivo', sans-serif; color: rgba(255, 255, 255, .6); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, .35); }

.quote {
  position: relative;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}
.quote--featured {
  border-left: 3px solid var(--accent);
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.quote--card { padding: 32px; }
.quote__mark {
  position: absolute;
  top: 6px; right: 26px;
  font: 800 130px/1 'Archivo', sans-serif;
  color: color-mix(in srgb, var(--accent) 22%, transparent);
  pointer-events: none;
}
.quote__mark--sm { top: 2px; right: 20px; font-size: 96px; color: color-mix(in srgb, var(--accent) 18%, transparent); }
.quote__body { position: relative; max-width: 780px; }
.quote--featured .quote__body .stars { font-size: 16px; letter-spacing: 3px; }
.quote--card .quote__body .stars { font-size: 15px; letter-spacing: 2px; }
.quote blockquote { color: #fff; }
.quote--featured blockquote { font: 500 clamp(18px, 2vw, 24px)/1.5 'Archivo', sans-serif; margin: 18px 0 24px; }
.quote--card blockquote { font: 400 15px/1.65 'Archivo', sans-serif; color: rgba(255, 255, 255, .88); margin: 16px 0 22px; }
.quote__author { display: flex; align-items: center; gap: 13px; }
.quote__author strong { display: block; font: 700 15px/1.2 'Archivo', sans-serif; color: #fff; }
.quote__author small { display: block; font: 400 13px/1.3 'Archivo', sans-serif; color: rgba(255, 255, 255, .55); margin-top: 3px; }
.quote--card .quote__author strong { font-size: 14px; }
.quote--card .quote__author small { font-size: 12.5px; color: rgba(255, 255, 255, .5); }

.avatar {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  font: 800 14px/1 'Archivo', sans-serif;
  color: #fff;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
}
.avatar--solid { width: 46px; height: 46px; background: var(--accent); border: 0; font-size: 16px; }

.tcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.reviews-note { text-align: center; font: 400 12.5px/1.4 'Archivo', sans-serif; color: rgba(255, 255, 255, .4); margin-top: 22px; }

/* --------------------------- Guarantee ----------------------------- */
.guarantee { text-align: center; max-width: 820px; }
.guarantee__lede {
  font: 500 clamp(16px, 1.6vw, 19px)/1.55 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .9);
  max-width: 560px;
  margin: 16px auto 0;
}
.guarantee-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  font: 600 13px/1.2 'Archivo', sans-serif;
  padding: 11px 15px;
  border-radius: var(--radius);
}
.section--accent .section-cta { margin-top: 30px; }

/* ------------------------------ FAQ -------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__heading { margin: 0; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 22px 4px;
  text-align: left;
  font: 700 clamp(15px, 1.6vw, 18px)/1.3 'Archivo', sans-serif;
  color: var(--ink);
}
.faq__icon {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }

.faq__panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .28s var(--ease);
}
.faq__answer { overflow: hidden; }
/* With JS, the [hidden] attribute is the animatable collapsed state. */
html.js .faq__panel[hidden] { display: grid; grid-template-rows: 0fr; }
/* Without JS, keep every answer readable (progressive enhancement). */
html:not(.js) .faq__panel[hidden] { display: grid; grid-template-rows: 1fr; }
.faq__answer p {
  font: 400 15px/1.6 'Archivo', sans-serif;
  color: var(--muted);
  padding: 0 40px 24px 4px;
}

/* ---------------------------- Estimate ----------------------------- */
.estimate { position: relative; overflow: hidden; }
.estimate__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(34px, 5vw, 60px);
  align-items: center;
}
.estimate__lede { font: 400 16px/1.6 'Archivo', sans-serif; color: rgba(255, 255, 255, .74); max-width: 440px; margin-top: 16px; }

.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; align-items: center; gap: 11px; font: 500 15px/1.3 'Archivo', sans-serif; color: rgba(255, 255, 255, .88); }
.checklist__tick {
  flex: none;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--accent);
}
.phone-cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); }
.phone-cta__label { font: 400 14px/1.4 'Archivo', sans-serif; color: rgba(255, 255, 255, .6); }
.phone-cta__link { display: inline-flex; align-items: center; gap: 10px; font: 800 24px/1 'Archivo', sans-serif; color: #fff; text-decoration: none; margin-top: 8px; }
.phone-cta__link svg { color: var(--accent); }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .7);
}
.form-card__title { font: 800 21px/1.05 'Archivo', sans-serif; letter-spacing: -.01em; color: var(--ink); }
.form-card__sub { font: 400 14px/1.45 'Archivo', sans-serif; color: var(--muted-2); margin-top: 7px; }

.fields { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.field-row { display: flex; gap: 14px; }
.field--grow { flex: 1; }
.field--zip { width: 38%; }
.field__label {
  display: block;
  font: 600 11px/1 'Archivo', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 9px;
}
.input {
  width: 100%;
  border: 1.5px solid var(--line-field);
  background: var(--field-bg);
  padding: 14px;
  font: 400 15px/1.2 'Archivo', sans-serif;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.input::placeholder { color: #a9a9a9; }
.input:focus { outline: none; border-color: var(--accent); background: #fff; }
.select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236a6a6a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.estimate-form button[type="submit"] { margin-top: 24px; }
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font: 400 12.5px/1.3 'Archivo', sans-serif;
  color: var(--muted-3);
}

.form-success { text-align: center; padding: 30px 6px; animation: bgmUp .4s var(--ease); }
.form-success__icon {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  margin: 0 auto;
  color: var(--accent);
}
.form-success__title { font: 800 22px/1.1 'Archivo', sans-serif; color: var(--ink); margin-top: 18px; }
.form-success__title:focus { outline: none; }
.form-success__text { font: 400 15px/1.5 'Archivo', sans-serif; color: var(--muted-2); margin: 8px auto 0; max-width: 300px; }
.form-success .btn--reset { margin-top: 22px; }

@keyframes bgmUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ----------------------------- Footer ------------------------------ */
.site-footer { background: var(--ink); border-top: 1px solid rgba(255, 255, 255, .1); padding-block: clamp(48px, 6vw, 72px) 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.footer-brand p { font: 400 13.5px/1.6 'Archivo', sans-serif; color: rgba(255, 255, 255, .55); max-width: 260px; margin-top: 14px; }
.footer-brand .brand__mark { width: 38px; height: 38px; font-size: 14px; }
.footer-brand .brand__name { font-size: 16px; }
.footer-col__title {
  font: 700 11px/1 'Archivo', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
}
.footer-col ul { font: 400 14px/2 'Archivo', sans-serif; color: rgba(255, 255, 255, .72); }
.footer-col a { text-decoration: none; transition: color .15s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 36px;
  padding-top: 22px;
  font: 400 12.5px/1.5 'Archivo', sans-serif;
  color: rgba(255, 255, 255, .4);
}

/* ------------------------- Mobile action bar ----------------------- */
.actionbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  gap: 10px;
  background: #fff;
  border-top: 1px solid #e2e2e2;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .08);
}
.actionbar .btn { flex: 1; padding: 15px; font-size: 14px; }

/* Anchor offset so the sticky header never overlaps the target */
:target, #estimate { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ======================================================================
   MOBILE / TABLET  (≤760px) — the dedicated phone experience
   ====================================================================== */
@media (max-width: 760px) {
  :root { --header-h: 59px; }

  /* Header: collapse to a single 44px call button */
  .site-header__inner { padding-block: 10px; padding-inline: 15px; }
  .header-phone, .header-cta { display: none; }
  .header-call { display: grid; }
  .brand__mark { width: 38px; height: 38px; font-size: 14px; }
  .brand__name { font-size: 15px; }
  .brand__tag { font-size: 8px; }

  /* Hero: stacked, full-width CTAs, no floating badge (trust line covers it).
     Keep the container's horizontal gutter — only change the vertical rhythm. */
  .hero__inner { display: block; padding-block: 46px 24px; }
  .hero__title { font-size: clamp(32px, 9vw, 40px); line-height: 1.0; }
  .hero__lede { font-size: 15.5px; margin-top: 14px; }
  .hero__cta { flex-direction: column; gap: 10px; margin-top: 22px; }
  .hero__cta .btn { width: 100%; padding: 17px; }
  .hero__visual { margin-top: 22px; }
  .hero__photo { aspect-ratio: 5 / 4; }
  .hero__badge { display: none; }
  .photo-rating { left: 14px; right: 14px; bottom: 13px; gap: 9px; font-size: 12.5px; }
  .photo-rating .stars { font-size: 15px; }

  /* Trust line shows only on phones */
  .trust-line { display: flex; }

  .section { padding-block: 48px; }
  .section-head { margin-bottom: 22px; }
  .section-head--center { margin-bottom: 22px; }
  .section-title { font-size: 28px; line-height: 1.05; }
  .section-intro { font-size: 15px; }

  /* Problem: single column */
  .problem-grid { grid-template-columns: 1fr; gap: 10px; }
  .problem-card { padding: 18px; }
  .problem-card__body { font-size: 14px; line-height: 1.5; }
  .callout { padding: 20px; }

  /* Benefits: compact rows, icon left */
  .benefits-grid { grid-template-columns: 1fr; gap: 2px; background: var(--line-soft); border-color: var(--line-soft); }
  .benefit { display: flex; gap: 14px; padding: 20px; }
  .benefit__icon { flex: none; width: 40px; height: 40px; margin-bottom: 0; }
  .benefit__icon svg { width: 20px; height: 20px; }
  .benefit h3 { font-size: 16px; margin-bottom: 5px; }
  .benefit p { font-size: 13.5px; line-height: 1.5; }

  /* Before / after: taller 4:3 frame for phones */
  .ba { aspect-ratio: 4 / 3; }
  .ba__handle { width: 42px; height: 42px; }

  /* Steps: stacked */
  .step { padding: 22px; }
  .step__num { font-size: 38px; margin: 4px 0 10px; }
  .step h3 { font-size: 17px; }
  .step p { font-size: 13.5px; }

  /* Testimonials: swipeable secondary cards */
  .rating-summary { justify-content: flex-start; margin-bottom: 22px; }
  .quote--featured { padding: 24px; }
  .quote--featured blockquote { font-size: 16px; margin: 14px 0 18px; }
  .quote__mark { font-size: 90px; top: 2px; right: 18px; }
  .avatar--solid { width: 40px; height: 40px; font-size: 14px; }
  .tcards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    margin-top: 10px;
    padding-bottom: 2px;
  }
  .tcards::-webkit-scrollbar { display: none; }
  .quote--card { flex: none; width: 82%; padding: 20px; scroll-snap-align: start; }
  .quote--card .quote__mark--sm { display: none; }
  .quote--card blockquote { font-size: 14px; line-height: 1.6; margin: 12px 0 14px; }
  .reviews-note { text-align: left; }

  /* Guarantee: stacked full-width chips */
  .guarantee { text-align: center; }
  .guarantee-chips { flex-direction: column; align-items: stretch; text-align: left; margin-top: 22px; }
  .chip { justify-content: flex-start; padding: 13px 15px; font-size: 13.5px; }

  /* FAQ: tighter rows */
  .faq__q { padding: 18px 2px; font-size: 15px; }
  .faq__icon { width: 28px; height: 28px; }
  .faq__answer p { padding: 0 4px 20px; font-size: 14px; }

  /* Estimate: single column, form below the pitch */
  .estimate__inner { display: block; }
  .estimate__info { margin-bottom: 22px; }
  .form-card { padding: 22px; }

  /* Footer: brand full width, columns 2-up */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding-bottom: 110px; }

  /* Show the fixed bottom action bar */
  .actionbar { display: flex; }
}

@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------------------------- Preferences --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------------- Form validation + anti-spam (Django) -------------- */
.form-alert {
  font: 600 13px/1.4 'Archivo', sans-serif;
  color: #b3261e;
  background: #fdecea;
  border: 1px solid #f5c6c2;
  padding: 10px 12px;
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-alert[hidden] { display: none; }
.field__error {
  display: block;
  font: 600 11.5px/1.3 'Archivo', sans-serif;
  color: #c2410c;
  margin-top: 6px;
}
.field__error[hidden] { display: none; }
.input--error { border-color: #d9534f; background: #fff; }
.input--error:focus { border-color: var(--accent); }

/* Honeypot — removed from view but kept in the DOM for bots to take the bait. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
