/* =========================================================
   Mountain West Hardscapes — non-critical stylesheet
   Hand-written per QQM SOP V2 Section 7.3. No frameworks.
   ========================================================= */

/* ---------- Layout primitives ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.container--narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-8) 0;
}
@media (max-width: 640px) {
  .section { padding: var(--space-7) 0; }
}
.section--light { background: var(--mw-snow); color: var(--color-text); }
.section--bone  { background: var(--mw-bone);  color: var(--color-text); }
.section--dark  { background: var(--mw-granite); color: var(--mw-bone); }

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mw-red);
  margin: 0 0 var(--space-3) 0;
}
.section__eyebrow--inverse { color: var(--mw-sandstone); }
.section__eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--mw-red);
  margin-right: 10px;
  vertical-align: 4px;
}
.section__eyebrow--inverse::before { background: var(--mw-sandstone); }

.section__h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4) 0;
  color: var(--mw-granite);
}
.section__h2--inverse { color: var(--mw-snow); }

.section__lede {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 0 var(--space-6) 0;
}
.section--dark .section__lede { color: var(--mw-limestone); }

.section__note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: var(--space-5);
}
.section--dark .section__note { color: var(--mw-limestone); }

/* ---------- Grid ---------- */
.grid {
  display: grid;
  gap: var(--space-4);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
/* 3-up grid: 1 col on mobile (stacked — service cards have too much copy
   to read cleanly at 2-up on small screens), 2 cols at tablet, 3 cols
   at desktop. */
.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.grid--gap-lg { gap: var(--space-6); }

/* ---------- Red statement band ---------- */
.band {
  padding: var(--space-7) 0;
  background: var(--mw-red);
  color: var(--mw-snow);
  text-align: center;
}
.band--red { background: var(--mw-red); }
.band__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
}
.band__attr {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: var(--space-3) 0 0;
  color: rgba(255,255,255,0.85);
}

/* ---------- Cards (services / what we build) ---------- */
.card {
  padding: var(--space-5);
  background: var(--mw-bone);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.section--light .card { background: var(--mw-bone); }
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--mw-sandstone);
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(191, 26, 30, 0.08);
  color: var(--mw-red);
  margin-bottom: var(--space-3);
}
.card__icon svg { width: 26px; height: 26px; }
.card__h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
  color: var(--mw-granite);
}
.card p { margin: 0; color: var(--color-text-muted); font-size: 15px; line-height: 1.55; }
.card__line {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 36ch;
}
.card__range {
  margin: 12px 0 0 !important;
  padding-top: 10px;
  border-top: 1px dashed var(--color-border);
  font-family: var(--font-body);
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.card__range strong { color: var(--mw-red); font-weight: 700; letter-spacing: 0; }
.card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.card__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-muted);
}
.card__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--mw-red);
  border-bottom: 2px solid var(--mw-red);
  transform: rotate(-45deg);
}

/* ---------- Why us list ---------- */
.why-item {
  position: relative;
  padding-left: 80px;
}
.why-item__icon {
  position: absolute;
  left: 0; top: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(191, 26, 30, 0.12);
  color: var(--mw-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-item__icon svg { width: 32px; height: 32px; }
.why-item__no {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--mw-sandstone);
  margin: 0 0 6px;
}
.why-item__h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
  color: var(--mw-snow);
}
.why-item__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.why-item__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mw-limestone);
}
.why-item__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--mw-red);
  border-bottom: 2px solid var(--mw-red);
  transform: rotate(-45deg);
}
.why-item p { color: var(--mw-limestone); margin: 0; font-size: 15px; line-height: 1.6; }
.why-item__line {
  color: var(--mw-limestone);
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  max-width: 38ch;
}

@media (max-width: 600px) {
  .why-item { padding-left: 0; padding-top: 70px; }
  .why-item__icon { width: 52px; height: 52px; }
}

/* ---------- Process steps ---------- */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-7); }
}
.process__step {
  position: relative;
  padding-left: 72px;
}
.process__no {
  position: absolute;
  left: 0; top: -2px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--mw-red);
  color: var(--mw-snow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--space-2);
  color: var(--mw-granite);
}
.process__step p { margin: 0; color: var(--color-text-muted); font-size: 15px; line-height: 1.6; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-3);
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery__cell--lg { grid-column: span 2; grid-row: span 2; }
}
.gallery__cell { margin: 0; overflow: hidden; border-radius: 10px; }
.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}
.gallery__cell:hover img { transform: scale(1.04); }
.gallery__ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(191,26,30,0.05) 0 10px, rgba(191,26,30,0.0) 10px 20px),
    var(--mw-limestone);
  border: 1px dashed rgba(191,26,30,0.4);
  border-radius: 10px;
  color: var(--mw-red);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery__note {
  margin-top: var(--space-4);
  font-size: 13px;
  color: var(--color-text-muted);
}
.gallery__note code {
  background: var(--mw-limestone);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* ---------- Service area (chip tiers per SOP V2.1) ---------- */
.areas-tiers {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.areas-tier {
  background: var(--mw-snow);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-5);
}
.areas-tier--1 { border-color: rgba(191, 26, 30, 0.4); }
.areas-tier__label {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mw-granite);
  margin: 0 0 var(--space-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.areas-tier__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mw-red);
  display: inline-block;
}
.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--mw-bone);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mw-granite);
  letter-spacing: 0.01em;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.chip:hover {
  border-color: var(--mw-red);
  background: var(--mw-snow);
}
.areas-tier--1 .chip {
  background: rgba(191, 26, 30, 0.05);
  border-color: rgba(191, 26, 30, 0.25);
  color: var(--mw-granite);
}
.areas-tier--1 .chip:hover { background: rgba(191, 26, 30, 0.1); border-color: var(--mw-red); }

/* ---------- Quotes / testimonials ---------- */
.quote {
  margin: 0;
  padding: var(--space-5);
  background: var(--mw-bone);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--mw-red);
  border-radius: 10px;
}
.quote__stars {
  color: var(--mw-pop);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}
.quote blockquote {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-style: italic;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mw-granite);
  letter-spacing: 0.02em;
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--mw-snow);
  flex-shrink: 0;
}
.avatar--c1 { background: var(--mw-red); }
.avatar--c2 { background: var(--mw-granite); }
.avatar--c3 { background: var(--mw-sandstone); color: var(--mw-granite); }
.quote__meta { display: flex; flex-direction: column; gap: 2px; }
.quote__name { color: var(--mw-granite); font-weight: 600; }
.quote__city { color: var(--color-text-muted); font-weight: 400; font-size: 12px; letter-spacing: 0.04em; }

/* ---------- FAQ ---------- */
.faq {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-3);
}
.faq__item {
  border: 1px solid var(--color-border);
  background: var(--mw-snow);
  border-radius: 10px;
  padding: var(--space-4) var(--space-5);
}
.faq__item[open] { border-color: var(--mw-red); }
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--mw-granite);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--mw-red);
  transition: transform 0.15s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin: var(--space-3) 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CTA section (LIGHT variant for trust at premium ticket) ---------- */
.cta {
  padding: var(--space-8) 0 var(--space-8);
  background: var(--mw-bone);
  color: var(--color-text);
  overflow-x: hidden;
}
.cta .section__h2 { color: var(--mw-granite); }
.cta .section__eyebrow { color: var(--mw-red); }
.cta__lede {
  font-size: 17px;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-6);
  max-width: 50ch;
}
.cta__phone-fallback {
  margin-top: var(--space-5);
  font-size: 15px;
  color: var(--color-text-muted);
  text-align: center;
}
.cta__phone-fallback a {
  color: var(--mw-granite);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--mw-red);
  text-underline-offset: 4px;
}

/* ---------- Form (multi-step) — embedded inside .hero-offer card,
   so it doesn't need its own background/padding/border-radius. */
.form {
  background: transparent;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}
.form * { box-sizing: border-box; min-width: 0; }
.form input, .form textarea, .form select { max-width: 100%; }
.form__progress {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin-bottom: var(--space-5);
  overflow: hidden;
}
.form__progress-bar {
  /* Starts at 25% pre-filled per Nunes & Drèze endowed-progress effect —
     the car-wash study (34% vs 19% completion) on artificial advancement.
     JS bumps to 50% on step 2 and 100% on step 3. */
  height: 100%;
  width: 25%;
  background: var(--mw-pop);
  transition: width 0.35s ease;
}
.form__step { border: 0; padding: 0; margin: 0; animation: stepFade 250ms ease-out; }
.form__step[hidden] { display: none; }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .form__step { animation: none; }
}
.form__legend {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.4vw, 20px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mw-granite);
  margin: 0 0 var(--space-3);
  padding: 0;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 600px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.field {
  display: block;
  margin-bottom: var(--space-3);
}
.field__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--mw-bone);
  border: 1px solid var(--color-border);
  color: var(--mw-granite);
  font: inherit;
  font-size: 16px; /* 16px to prevent iOS zoom per SOP 6.2 */
  padding: 14px 14px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(74,74,74,0.5);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--mw-red);
  background: var(--mw-snow);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text-muted) 50%), linear-gradient(135deg, var(--color-text-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.form__hint {
  font-size: 13px;
  font-weight: 600;
  color: var(--mw-red);
  margin: var(--space-3) 0 0;
  text-align: center;
}
/* "👇 Tap one to start" sits ABOVE the tile grid so the down-pointing
   emoji actually points at the tiles. Bigger + bolder for affordance. */
.form__hint--above {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--mw-granite);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form__hint-emoji {
  font-size: 20px;
  line-height: 1;
  animation: hintBob 1.6s ease-in-out infinite;
}
@keyframes hintBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .form__hint-emoji { animation: none; }
}

.form__actions {
  margin-top: var(--space-4);
}
.form__actions--split {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}
.form__actions--split .btn--ghost { flex: 0 0 auto; }
.form__actions--split .btn--primary { flex: 1 1 auto; }

/* Tile selector (Step 1) — 2 cols on mobile, 3 cols on desktop.
   Image-based answer cards: per UI/UX playbook §4.6, lifts completion 15-25%. */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 1100px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 14px 10px 12px;
  background: var(--mw-snow);
  border: 2px solid var(--mw-red);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
  text-align: center;
  /* Layered shadow so tiles read as 3D buttons, not flat cards */
  box-shadow:
    0 1px 0 rgba(191,26,30,0.20),
    0 4px 12px rgba(191,26,30,0.12),
    inset 0 -2px 0 rgba(191,26,30,0.18);
}
.tile input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--mw-red);
  transition: color 0.12s ease, transform 0.12s ease;
}
.tile__icon svg { width: 28px; height: 28px; }
.tile__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--mw-granite);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
}
.tile:hover {
  background: var(--mw-snow);
  border-color: var(--mw-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(191,26,30,0.18);
}
.tile:hover .tile__icon { transform: scale(1.08); }
.tile:has(input:checked),
.tile.is-selected {
  background: var(--mw-red);
  border-color: var(--mw-red);
}
.tile:has(input:checked) .tile__label,
.tile.is-selected .tile__label { color: var(--mw-snow); }
.tile:has(input:checked) .tile__icon,
.tile.is-selected .tile__icon { color: var(--mw-snow); }
.tile:has(input:focus-visible) {
  outline: 2px solid var(--mw-red);
  outline-offset: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A0A0A;
  color: var(--mw-limestone);
  padding: var(--space-7) 0 var(--space-6);
  font-size: 14px;
}
.site-footer__inner {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
  }
}
.brand-mark--footer { color: var(--mw-bone); }
.site-footer__tag {
  margin: var(--space-3) 0 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mw-sandstone);
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer__contact a {
  color: var(--mw-bone);
  text-decoration: none;
  font-weight: 600;
}
.site-footer__contact a:hover { color: var(--mw-red); }
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.55);
}
@media (min-width: 800px) {
  .site-footer__legal { text-align: right; }
}

/* ---------- Sticky mobile bottom bar ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--mw-granite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 40;
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(0);
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.sticky-bar--hidden {
  transform: translateY(120%);
  pointer-events: none;
}
.sticky-bar--in-cta {
  opacity: 0;
  pointer-events: none;
}
.sticky-bar__call,
.sticky-bar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  min-height: 56px;
  text-align: center;
  line-height: 1.1;
}
.sticky-bar__call {
  background: var(--mw-granite);
  color: var(--mw-bone);
}
.sticky-bar__call-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mw-sandstone); margin-bottom: 2px; }
.sticky-bar__call-num { font-weight: 700; }
.sticky-bar__cta {
  background: var(--mw-red);
  color: var(--mw-snow);
}
.sticky-bar__cta:hover { background: var(--mw-red-dark); }

@media (min-width: 900px) {
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
}
body {
  padding-bottom: 72px;
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* ---------- Mid-page CTA band (SOP V2.1) ---------- */
.mid-cta {
  background: linear-gradient(135deg, var(--mw-red) 0%, var(--mw-red-dark) 100%);
  color: var(--mw-snow);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 20px);
  pointer-events: none;
}
.mid-cta__inner {
  position: relative;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) {
  .mid-cta__inner { grid-template-columns: 1.4fr 1fr; gap: var(--space-7); }
}
.mid-cta__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0 0 var(--space-2);
}
.mid-cta__eyebrow span[aria-hidden] { color: var(--mw-pop); letter-spacing: 2px; }
.mid-cta__h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
  color: var(--mw-snow);
}
.mid-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.mid-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.mid-cta__actions .btn { width: 100%; }
@media (min-width: 600px) {
  .mid-cta__actions { flex-direction: row; }
  .mid-cta__actions .btn { width: auto; flex: 1 1 0; }
}
.btn--ghost-dark {
  background: rgba(0,0,0,0.18);
  color: var(--mw-snow);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-dark:hover {
  background: rgba(0,0,0,0.3);
  border-color: var(--mw-snow);
}
.mid-cta .btn--primary {
  background: var(--mw-granite);
  color: var(--mw-snow);
}
.mid-cta .btn--primary:hover { background: #000; }

/* ---------- Anti-spam honeypot (off-screen) ---------- */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ---------- Security microcopy — prominent green trust signal above submit ---------- */
.form__secure {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 var(--space-5);
  padding: 12px 14px;
  background: var(--mw-pop-soft);
  border: 1px solid var(--mw-pop-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--mw-pop);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.form__secure svg { width: 20px; height: 20px; color: var(--mw-pop); flex-shrink: 0; }
.form__secure span { flex: 1; min-width: 0; }

/* ---------- A2P 10DLC / SMS carrier consent checkbox ----------
   Required + unchecked by default. Carriers reject pre-checked consent.
   Sits above the submit button; explicit consent language captures
   STOP/HELP instructions inline per CTIA/Twilio guidance. */
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 var(--space-4);
  padding: 12px 14px;
  background: rgba(26, 26, 26, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-text-muted);
}
.form__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 1px 0 0 0;
  accent-color: var(--mw-red);
  cursor: pointer;
}
.form__consent-text { flex: 1; min-width: 0; }
.form__consent a {
  color: var(--mw-red);
  text-decoration: underline;
  font-weight: 600;
}
.form__consent a:hover { color: var(--mw-red-dark); }
.form__consent:has(input:focus-visible) {
  outline: 2px solid var(--mw-red);
  outline-offset: 2px;
}
/* Highlight unchecked consent on submit attempt — browser native
   :invalid kicks in after the user has interacted with the form. */
.form__consent:has(input:invalid:not(:focus)) {
  border-color: var(--mw-red);
  background: rgba(191, 26, 30, 0.04);
}

/* ---------- Outcome cards (interim, no fake testimonials) ---------- */
.proof-card {
  padding: var(--space-5);
  background: var(--mw-bone);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--mw-red);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-card__big {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--mw-granite);
}
.proof-card__big sup { font-size: 0.45em; vertical-align: 0.55em; color: var(--mw-red); }
.proof-card__big--time { font-size: clamp(28px, 4vw, 40px); color: var(--mw-red); }
.proof-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mw-red);
  margin-bottom: 6px;
}
.proof-card__line { margin: 0; font-size: 15px; line-height: 1.55; color: var(--color-text-muted); }

/* ---------- Hero proof pill (sits between H1 and subhead) ---------- */
.hero__proof {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 var(--space-4);
  padding: 8px 14px;
  background: rgba(191,26,30,0.10);
  border: 1px solid rgba(191,26,30,0.45);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mw-bone);
}
.hero__proof-stars { color: var(--mw-red); letter-spacing: 2px; font-size: 14px; line-height: 1; }
.hero__proof-text strong { color: var(--mw-snow); }

/* ---------- Proof band — concentrated social proof right under the hero ---------- */
.proof-band {
  background: var(--mw-snow);
  border-bottom: 1px solid var(--color-border);
  border-top: 4px solid var(--mw-pop);
  padding: var(--space-7) 0;
  position: relative;
}
.proof-band__lead {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.01em;
  color: var(--mw-granite);
  margin: 0 0 var(--space-6);
  text-transform: uppercase;
}
.proof-band__lead strong { color: var(--mw-pop); font-weight: 700; }
.proof-band__stars {
  color: var(--mw-pop);
  letter-spacing: 4px;
  font-size: 22px;
  display: block;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(22,192,71,0.25);
}
.proof-band__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .proof-band__grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); } }
/* Each stat is now a light card with green border + pop-out shadow */
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: var(--space-4) var(--space-3);
  background: var(--mw-snow);
  border: 1px solid var(--mw-pop-border);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(22,192,71,0.10), 0 2px 6px rgba(22,192,71,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.proof-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(22,192,71,0.18), 0 4px 10px rgba(22,192,71,0.10);
}
.proof-stat__big {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--mw-pop);
  font-weight: 700;
}
.proof-stat__big sup { font-size: 0.45em; vertical-align: 0.65em; color: var(--mw-pop); }
.proof-stat__big small { font-size: 0.45em; font-weight: 500; color: var(--mw-pop); margin-left: 2px; }

/* ---------- (Legacy) old stats-band kept for backward compat in case anything
              else still references .stat — safe to remove later. */
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.stat__big {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--mw-granite);
}
.stat__big sup { font-size: 0.45em; vertical-align: 0.55em; color: var(--mw-pop); }
.stat__big--stars { color: var(--mw-pop); letter-spacing: 2px; font-family: var(--font-body); font-size: clamp(28px, 4vw, 40px); }
.stat__big--time { font-size: clamp(28px, 4vw, 44px); color: var(--mw-pop); }
.stat__label,
.proof-stat__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  max-width: 22ch;
  line-height: 1.3;
}

/* ---------- Social-proof anchors (in-section trust signals)
   All proof signals now use the neon-green --mw-pop standout so the
   eye automatically catches them across the page. */
.proof-mini {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: var(--space-6) 0 0;
  padding: 12px 18px;
  background: var(--mw-snow);
  border: 1px solid var(--mw-pop-border);
  border-left: 4px solid var(--mw-pop);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mw-granite);
  box-shadow: 0 6px 18px rgba(22,192,71,0.12), 0 2px 4px rgba(22,192,71,0.08);
}
.proof-mini strong { color: var(--mw-pop); font-weight: 700; }
.proof-mini__stars {
  color: var(--mw-pop);
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
}
.proof-mini__dot {
  color: var(--mw-pop);
  font-size: 14px;
  line-height: 1;
  opacity: 0.6;
}

.proof-quote {
  margin: var(--space-6) auto 0;
  max-width: 60ch;
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--mw-red);
  background: rgba(191,26,30,0.06);
  border-radius: 0 8px 8px 0;
}
.proof-quote__stars { color: var(--mw-pop); font-size: 14px; letter-spacing: 2px; margin-bottom: 6px; }
.proof-quote blockquote { margin: 0 0 6px; font-size: 16px; line-height: 1.55; color: var(--color-text); font-style: italic; }
.proof-quote figcaption { font-size: 13px; color: var(--color-text-muted); letter-spacing: 0.02em; }
.section--dark .proof-quote { background: rgba(191,26,30,0.10); }
.section--dark .proof-quote blockquote { color: var(--mw-bone); }
.section--dark .proof-quote figcaption { color: var(--mw-limestone); }

/* ---------- Section lede on dark sections ---------- */
.section__lede--inverse { color: var(--mw-limestone); max-width: 64ch; margin: 0 auto var(--space-6); }

/* ---------- Section-level CTA — same "Free Hardscape Design" button at the
   bottom of every major section. Consistent wording, always links to #cta. */
.section__cta {
  margin: var(--space-7) auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section__cta .btn {
  min-width: 280px;
}
.section__cta-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mw-pop);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section__cta-sub::before {
  content: "★★★★★";
  letter-spacing: 1.5px;
  font-size: 11px;
  color: var(--mw-pop);
  margin-right: 4px;
}

/* ---------- VS-grid: 2-card "Us vs them" comparison (LIGHT variant)
   "Win" card: cream BG, neon-green left bar + neon-green ✓ chips.
   "Lose" card: cream BG, muted gray border + brand-red ✕ chips with strikethrough. */
.vs-grid {
  margin: var(--space-6) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 800px) { .vs-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); } }

.vs-card {
  padding: var(--space-5);
  border-radius: 10px;
  background: var(--mw-snow);
  border: 1px solid var(--color-border);
  position: relative;
}
.vs-card--win {
  background: var(--mw-snow);
  border: 1px solid var(--mw-pop-border);
  border-left: 4px solid var(--mw-pop);
  box-shadow: 0 4px 20px rgba(22, 192, 71, 0.10);
}
.vs-card--lose {
  background: var(--mw-bone);
  border: 1px solid var(--color-border);
  opacity: 0.96;
}

.vs-card__head { margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--color-border); }
.vs-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}
.vs-card--win .vs-card__tag { background: var(--mw-pop-soft); color: var(--mw-pop); border: 1px solid var(--mw-pop-border); }
.vs-card--lose .vs-card__tag { background: rgba(26,26,26,0.04); color: var(--color-text-muted); border: 1px solid var(--color-border); }
.vs-card__h {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}
.vs-card--win .vs-card__h { color: var(--mw-granite); }
.vs-card--lose .vs-card__h { color: var(--color-text-muted); }

.vs-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.vs-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text);
}
.vs-card--lose .vs-list li {
  color: rgba(74,74,74,0.7);
  text-decoration: line-through;
  text-decoration-color: rgba(191,26,30,0.35);
  text-decoration-thickness: 1px;
}
.vs-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.vs-mark--yes {
  background: var(--mw-pop-soft);
  color: var(--mw-pop);
  border: 1px solid var(--mw-pop-border);
}
.vs-mark--no {
  background: rgba(191,26,30,0.06);
  color: var(--mw-red);
  border: 1px solid rgba(191,26,30,0.3);
}

/* ---------- Accessibility ---------- */
*:focus-visible {
  outline: 2px solid var(--mw-red);
  outline-offset: 2px;
}

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