/* ============================================
   DESERT SURFACE SOLUTIONS — STYLES
   ============================================ */

:root {
  --blue: #1A4E8A;
  --blue-dark: #0A1F3D;
  --black: #0A0E14;
  --tan: #C2A878;
  --tan-dark: #9F8556;
  --sand: #F2EBDC;
  --dark: #0A0E14;
  --white: #FFFFFF;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-600: #52525b;
  --gray-800: #27272a;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.06);
  --shadow: 0 8px 24px rgba(10, 31, 61, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 31, 61, 0.18);

  --t: 0.28s ease;

  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --header-h: 84px;
  --promo-h: 40px;

  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.section {
  padding-block: clamp(64px, 8vw, 112px);
}
.section--tan { background: var(--sand); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--gray-600);
  font-size: clamp(16px, 1.6vw, 18px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn--gold {
  background: var(--tan);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--gold:hover { background: var(--tan-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: var(--white); color: var(--blue-dark); border-color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn--outline:hover { background: var(--blue-dark); color: var(--white); }

.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn[hidden] { display: none; }
[hidden] { display: none !important; }

/* Pulse effect — draws attention to a primary CTA */
.btn--pulse {
  animation: btnPulse 2.4s ease-out infinite;
}
.btn--pulse:hover { animation-play-state: paused; }
@keyframes btnPulse {
  0%   { box-shadow: var(--shadow), 0 0 0 0 rgba(194, 168, 120, 0.55); }
  70%  { box-shadow: var(--shadow), 0 0 0 16px rgba(194, 168, 120, 0); }
  100% { box-shadow: var(--shadow), 0 0 0 0 rgba(194, 168, 120, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--pulse { animation: none; }
}

/* ============================================
   TOP CONTACT BAR
   ============================================ */
.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
}
.topbar__contact,
.topbar__social {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar__contact li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.topbar__contact i { color: var(--tan); font-size: 12px; }
.topbar__contact a { transition: color var(--t); }
.topbar__contact a:hover { color: var(--white); }

.topbar__social { gap: 10px; }
.topbar__social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  transition: background var(--t), color var(--t);
}
.topbar__social a:hover {
  background: var(--tan);
  color: var(--white);
}

/* ============================================
   SITE HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.nav__logo img {
  height: 100%;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  padding: 8px 0;
  transition: color var(--t);
  line-height: 1;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--tan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--blue); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link i { font-size: 10px; opacity: 0.7; }

.nav__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--tan);
  color: var(--white);
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 6px;
  line-height: 1.2;
}
.mobile-menu__link .nav__badge { font-size: 11px; padding: 4px 9px; }

.nav__dropdown { position: relative; }
.nav__dropdown:hover > .nav__link { color: var(--blue); }
.nav__dropdown:hover > .nav__link::after { transform: scaleX(1); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 110;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-dark);
  letter-spacing: 0;
  text-transform: none;
  transition: background var(--t), color var(--t);
}
.nav__dropdown-menu a:hover {
  background: var(--blue);
  color: var(--white);
}
.nav__dropdown-menu--wide { min-width: 260px; }
.nav__dropdown-menu--cols {
  min-width: 540px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4px;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: var(--sand);
  border-radius: 999px;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background var(--t), color var(--t), transform var(--t);
}
.nav__phone:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.nav__phone__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tan);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background var(--t), color var(--t);
}
.nav__phone:hover .nav__phone__icon {
  background: var(--white);
  color: var(--blue-dark);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-dark);
}

/* Mobile-only quick dropdowns in the top nav */
.nav__mobile-trigger {
  display: none;
}
.mobile-dropdown,
.mobile-dropdown-backdrop {
  display: none;
}
.mobile-dropdown.is-open,
.mobile-dropdown-backdrop.is-open {
  display: block;
}

@media (max-width: 768px) {
  .nav__cta .btn--gold { display: none; }
  .nav__mobile-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 11px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--blue-dark);
    transition: background var(--t), color var(--t);
    line-height: 1;
  }
  .nav__mobile-trigger.is-active {
    background: var(--blue-dark);
    color: var(--white);
  }
  .nav__mobile-trigger i {
    font-size: 9px;
    opacity: 0.7;
    transition: transform var(--t);
  }
  .nav__mobile-trigger.is-active i {
    transform: rotate(180deg);
    opacity: 1;
  }

  .mobile-dropdown-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 20, 0.35);
    z-index: 98;
    animation: fadeIn 0.18s ease;
  }
  .mobile-dropdown {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 99;
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    border-top: 1px solid var(--gray-200);
    animation: dropdownIn 0.22s ease;
  }
  @keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-dropdown a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--blue-dark);
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--t);
  }
  .mobile-dropdown a:active {
    background: var(--sand);
  }
  .mobile-dropdown a:last-child { border-bottom: 0; }
}

@media (max-width: 380px) {
  .nav__mobile-trigger { padding: 6px 9px; font-size: 11px; gap: 4px; }
  .nav__mobile-trigger i { font-size: 8px; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  color: var(--white);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 20px 24px 32px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.mobile-menu__close {
  width: 44px; height: 44px;
  color: var(--white);
  font-size: 22px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu__link,
.mobile-menu__group-head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.mobile-menu__group-head i {
  font-size: 14px;
  color: var(--tan);
  transition: transform var(--t);
}
.mobile-menu__group.is-open .mobile-menu__group-head i {
  transform: rotate(45deg);
}
.mobile-menu__group-body {
  display: none;
  padding: 8px 0 16px;
}
.mobile-menu__group.is-open .mobile-menu__group-body {
  display: block;
}
.mobile-menu__group-body a {
  display: block;
  padding: 9px 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.82);
  border: 0;
}
.mobile-menu__group-body a:hover { color: var(--tan); }
.mobile-menu__cta { margin-top: 28px; }

/* ============================================
   HERO — split layout (copy left, photo right)
   ============================================ */
.hero {
  background: var(--blue-dark);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}

.hero__copy {
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(28px, 5vw, 80px) clamp(72px, 9vw, 128px) clamp(24px, 4vw, 48px);
}
.hero__inner {
  max-width: 580px;
  margin-left: auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--tan);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--tan);
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.hero__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 44px;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
  transition: color var(--t), border-color var(--t);
}
.btn-link i { color: var(--tan); }
.btn-link:hover { color: var(--tan); border-color: var(--tan); }

.hero__trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  margin: 0;
}
.hero__stars {
  color: var(--tan);
  letter-spacing: 1px;
  margin-right: 10px;
}

.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px 24px;
}
/* hero-context cardstack sizing */
.hero__media .cardstack { max-width: 100%; }
.hero__media .cardstack__stage { height: 360px; }
.hero__media .cardstack__card { width: 360px; height: 260px; }
.hero__media .cardstack__caption { padding: 22px 22px 18px; }
.hero__media .cardstack__caption h3 { font-size: 20px; }
.hero__media .cardstack__caption p { font-size: 13px; }
.hero__media .cardstack__nav { margin-top: 24px; }

/* Stats strip — sits below the hero grid, full width */
.hero__stats {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__stat:last-child { border-right: 0; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-card__body h3 {
  font-size: 22px;
  color: var(--blue-dark);
}
.service-card__body p {
  color: var(--gray-600);
  font-size: 14px;
  flex: 1;
}
.service-card__link {
  margin-top: 10px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.service-card__link:hover { gap: 12px; }

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform var(--t), border-color var(--t);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--tan); }
.why-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 22px; margin-bottom: 10px; }
.process-step p { color: var(--gray-600); font-size: 14px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__stars { color: var(--tan); letter-spacing: 2px; font-size: 16px; }
.testimonial__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 18px;
}
.testimonial__name { font-weight: 600; color: var(--blue-dark); font-size: 14px; }
.testimonial__loc { color: var(--gray-600); font-size: 13px; }

/* ============================================
   PAGE HERO (sub-page banner)
   ============================================ */
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 24px;
  text-align: center;
  background: var(--blue-dark);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 31, 61, 0.78), rgba(10, 31, 61, 0.78));
}
.page-hero__crumbs {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 18px;
}
.page-hero__crumbs a { color: var(--tan); }
.page-hero__crumbs a:hover { color: var(--white); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}
.page-hero__lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 640px;
  margin: 0 auto 28px;
}
.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================
   STORY / PROSE BLOCK
   ============================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-800);
}
.prose p { margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-size: 26px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--blue-dark);
}

/* ============================================
   COMPARISON (soft wash vs power wash)
   ============================================ */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison__col {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.comparison__col h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.comparison__col h3 i {
  color: var(--white);
  background: var(--tan);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.comparison__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comparison__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.5;
}
.comparison__col li i {
  color: var(--tan);
  margin-top: 4px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .comparison { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-chip {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-800);
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.gallery-chip:hover { border-color: var(--blue); color: var(--blue); }
.gallery-chip.is-active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__label {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.92), transparent);
  color: var(--white);
  padding: 36px 16px 14px;
  font-size: 14px;
  font-weight: 600;
}
.gallery-item__label small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================
   REVIEW SUMMARY
   ============================================ */
.review-summary {
  text-align: center;
  margin-bottom: 56px;
}
.review-summary__stars {
  font-size: 28px;
  color: var(--tan);
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.review-summary__rating {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
.review-summary__count {
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 10px;
}

/* FAQ category groupings */
.faq-category {
  max-width: 820px;
  margin: 48px auto 0;
}
.faq-category:first-of-type { margin-top: 0; }
.faq-category__head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tan);
}
.faq-category__head h3 {
  font-size: 22px;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--t);
}
.faq-item__head i {
  color: var(--tan);
  font-size: 14px;
  transition: transform var(--t);
}
.faq-item.is-open .faq-item__head i { transform: rotate(45deg); }
.faq-item__head:hover { color: var(--blue); }
.faq-item__body {
  display: none;
  padding: 0 22px 20px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.is-open .faq-item__body { display: block; }

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.section--sand { background: var(--sand); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.quote-intro .eyebrow { margin-bottom: 12px; }
.quote-intro h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
}
.quote-intro > p {
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}
.quote-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.quote-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--blue-dark);
  font-size: 15px;
}
.quote-points i {
  color: var(--white);
  background: var(--tan);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.quote-call {
  font-size: 14px;
  color: var(--gray-600);
}
.quote-call__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  font-weight: 700;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  transition: color var(--t);
}
.quote-call__num:hover { color: var(--tan-dark); }
.quote-call__num i { color: var(--tan); font-size: 16px; }

.quote-form {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 78, 138, 0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.quote-form__submit {
  align-self: stretch;
  margin-top: 6px;
}
.quote-form__note {
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
  margin: 0;
}

/* Success state after submit */
.quote-form__success {
  text-align: center;
  padding: 24px 8px;
}
.quote-form__success i {
  color: var(--tan);
  font-size: 48px;
  margin-bottom: 12px;
}
.quote-form__success h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.quote-form__success p {
  color: var(--gray-600);
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-block: 64px 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { transition: color var(--t); }
.footer-col a:hover { color: var(--tan); }
.footer-brand p { margin-top: 16px; line-height: 1.7; max-width: 320px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact i { color: var(--tan); margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FEATURED WORK — fan card stack
   ============================================ */
.featured-work {
  background: var(--black);
  color: var(--white);
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.featured-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 30%, rgba(26, 78, 138, 0.18), transparent 60%);
  pointer-events: none;
}
.featured-work .section-head { position: relative; z-index: 1; }
.featured-work .section-head h2 { color: var(--white); }
.featured-work .section-head p { color: rgba(255, 255, 255, 0.65); }

.cardstack {
  position: relative;
  width: 100%;
}
.cardstack__stage {
  position: relative;
  width: 100%;
  height: 460px;
  perspective: 1100px;
  transform-style: preserve-3d;
}
.cardstack__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  background: var(--gray-100);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.35s ease;
  will-change: transform, opacity;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cardstack__card:focus-visible {
  outline: 2px solid var(--tan);
  outline-offset: 4px;
}
.cardstack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.cardstack__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 26px 22px;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.95) 0%, rgba(10, 14, 20, 0.6) 60%, transparent 100%);
}
.cardstack__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 8px;
}
.cardstack__caption h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--white);
  text-transform: none;
  letter-spacing: -0.005em;
}
.cardstack__caption p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.cardstack__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.cardstack__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t), transform var(--t);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cardstack__btn:hover {
  background: var(--tan);
  color: var(--blue-dark);
  border-color: var(--tan);
}
.cardstack__btn:active { transform: scale(0.94); }
.cardstack__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cardstack__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background var(--t), width var(--t);
  cursor: pointer;
}
.cardstack__dot.is-active {
  background: var(--tan);
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .cardstack__stage { height: 380px; }
  .cardstack__card { width: 320px; height: 300px; }
  .cardstack__caption { padding: 22px 20px 18px; }
  .cardstack__caption h3 { font-size: 19px; }
  .cardstack__caption p { font-size: 13px; }
}
@media (max-width: 480px) {
  .cardstack__stage { height: 340px; }
  .cardstack__card { width: 270px; height: 260px; }
  .cardstack__caption h3 { font-size: 17px; }
  .cardstack__caption p { -webkit-line-clamp: 2; line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .cardstack__card { transition: opacity 0.2s ease; }
}

/* ============================================
   QUOTE MODAL (multi-step popup form)
   ============================================ */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.quote-modal.is-open { display: block; }
.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.65);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.quote-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(10, 14, 20, 0.4);
  animation: panelIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.quote-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 14px;
  color: var(--gray-800);
  z-index: 2;
  transition: background var(--t);
}
.quote-modal__close:hover { background: var(--gray-200); }

.quote-modal__head {
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.quote-modal__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 8px;
}
.quote-modal__head h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 18px;
}

.quote-progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-progress__bar {
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}
.quote-progress__fill {
  height: 100%;
  background: var(--tan);
  width: 25%;
  transition: width 0.35s ease;
}
.quote-progress__steps {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.quote-progress__step.is-active { color: var(--blue-dark); }
.quote-progress__step.is-done { color: var(--tan); }

.quote-modal__form {
  padding: 24px 32px 16px;
  overflow-y: auto;
  flex: 1;
}
.quote-step {
  display: none;
}
.quote-step.is-active {
  display: block;
  animation: stepFade 0.25s ease;
}
@keyframes stepFade {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quote-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}
.quote-step__hint {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Card-style radio grid (services) */
.quote-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.quote-services label { cursor: pointer; }
.quote-services input { position: absolute; opacity: 0; pointer-events: none; }
.quote-services span {
  display: block;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--blue-dark);
  transition: border-color var(--t), background var(--t), color var(--t);
}
.quote-services label:hover span { border-color: var(--tan); }
.quote-services input:checked + span {
  border-color: var(--blue);
  background: rgba(26, 78, 138, 0.06);
  color: var(--blue);
  font-weight: 600;
}
@media (max-width: 480px) { .quote-services { grid-template-columns: 1fr; } }

/* Stacked radio options */
.quote-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-options--inline { flex-direction: row; flex-wrap: wrap; }
.quote-options--inline label { flex: 1; min-width: 100px; }
.quote-options label { cursor: pointer; }
.quote-options input { position: absolute; opacity: 0; pointer-events: none; }
.quote-options span {
  display: block;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-dark);
  transition: border-color var(--t), background var(--t), color var(--t);
  text-align: center;
}
.quote-options input:checked + span {
  border-color: var(--blue);
  background: rgba(26, 78, 138, 0.06);
  color: var(--blue);
  font-weight: 600;
}

/* Review summary on final step */
.quote-summary {
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--sand);
  border-radius: var(--radius);
}
.quote-summary h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.quote-summary dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 12px;
  font-size: 14px;
  margin: 0;
}
.quote-summary dt { color: var(--gray-600); font-weight: 500; }
.quote-summary dd { color: var(--blue-dark); font-weight: 600; margin: 0; }

.quote-modal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--gray-100);
}
.quote-modal__save {
  font-size: 11px;
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}
.quote-modal__save::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}
.quote-modal__nav .btn { padding: 12px 22px; font-size: 14px; }
.quote-modal__nav .btn[disabled] { opacity: 0.4; pointer-events: none; }

.quote-modal__success {
  padding: 56px 40px;
  text-align: center;
}
.quote-modal__success i {
  color: var(--tan);
  font-size: 56px;
  margin-bottom: 16px;
}
.quote-modal__success h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.quote-modal__success p {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 15px;
}

@media (max-width: 640px) {
  .quote-modal__panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
    animation: none;
  }
  .quote-modal__head { padding: 24px 24px 18px; }
  .quote-modal__head h2 { font-size: 22px; margin-bottom: 14px; }
  .quote-modal__form { padding: 20px 24px; }
  .quote-modal__nav {
    padding: 14px 24px calc(20px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }
  .quote-modal__nav .btn { padding: 12px 14px; font-size: 13px; }
  .quote-progress__steps { font-size: 9px; letter-spacing: 0.08em; }
  .quote-services { grid-template-columns: 1fr; }
  .quote-options--inline label { min-width: 0; }
  .quote-summary dl { grid-template-columns: 90px 1fr; font-size: 13px; }
  .quote-step h3 { font-size: 18px; }
  .quote-step__hint { font-size: 13px; margin-bottom: 18px; }
}

@media (max-width: 380px) {
  .quote-modal__save { display: none; }
  .quote-modal__nav { justify-content: space-between; }
}

/* ============================================
   FLOATING PHONE (mobile)
   ============================================ */
.float-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tan);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(194, 168, 120, 0.4); }
  50%      { box-shadow: var(--shadow-lg), 0 0 0 14px rgba(194, 168, 120, 0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav__links { display: none; }
  .nav__phone { padding: 0; background: transparent; }
  .nav__phone__num { display: none; }
  .nav__toggle { display: inline-flex; }
  .topbar__contact li:not(:last-child) { display: none; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy {
    padding: 56px 24px 64px;
  }
  .hero__inner { margin-left: 0; }
  .hero__media {
    min-height: 460px;
    padding: 40px 16px 32px;
  }
  .hero__media .cardstack__stage { height: 340px; }
  .hero__media .cardstack__card { width: 300px; height: 240px; }
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__media { min-height: 420px; padding: 32px 12px 24px; }
  .hero__media .cardstack__stage { height: 300px; }
  .hero__media .cardstack__card { width: 240px; height: 220px; }
  .hero__media .cardstack__caption h3 { font-size: 16px; }
  .hero__media .cardstack__caption p { font-size: 12px; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .nav__logo { height: 50px; }
  .nav__logo img { max-width: 160px; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: 0; }
  .hero__stat:nth-child(1), .hero__stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero__ctas .btn { flex: 1; min-width: 0; }
  .nav__phone { display: none; }
  .float-phone { display: flex; }
  .quote-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats-grid { grid-template-columns: 1fr; }
  .hero__stat { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero__stat:last-child { border-bottom: 0; }
  .hero__trust { gap: 16px; }
}
