/* ═══════════════════════════════════════════════════════════════
   Tom's Pressure Washing — styles.css
   Color palette:
     Navy:   #0d1b2a
     Orange: #f5820a
     White:  #ffffff
     Light:  #f4f5f7
     Text:   #1e2a38
     Muted:  #5a6474
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1b2a;
  --navy2:   #162032;
  --orange:  #f5820a;
  --orange2: #e07209;
  --white:   #ffffff;
  --light:   #f4f5f7;
  --text:    #1e2a38;
  --muted:   #5a6474;
  --border:  #dde1e7;
  --radius:  6px;
  --shadow:  0 2px 12px rgba(13,27,42,.10);
  --shadow2: 0 6px 32px rgba(13,27,42,.16);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1160px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── UTILITIES ─────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover { background: var(--orange2); border-color: var(--orange2); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn--nav {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 9px 20px;
  font-size: .88rem;
}
.btn--nav:hover { background: var(--orange2); border-color: var(--orange2); }

.btn--full { width: 100%; justify-content: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-header--left { text-align: left; margin-inline: 0; }

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

/* fade-up animation base state */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAV ────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: background .25s, box-shadow .25s;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--white);
  text-transform: uppercase;
}
.nav__logo-loc {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .15s;
}
.nav__links a:hover { color: var(--orange); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--white);
  transition: color .15s;
}
.nav__phone:hover { color: var(--orange); }
.nav__phone svg { flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .15s;
}
.nav__mobile-link:hover { color: var(--orange); }
.nav__mobile-link--cta {
  color: var(--orange);
  margin-top: 8px;
}
.nav__mobile-phone {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  padding-top: 16px;
}

/* ─── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,.88) 0%,
    rgba(13,27,42,.72) 50%,
    rgba(13,27,42,.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero__headline br { display: block; }

.hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__badge {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
  padding: 5px 12px;
  border-radius: 3px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
  transition: color .15s;
}
.hero__scroll:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SERVICES ───────────────────────────────────────────────── */

.services {
  padding: 96px 0;
  background: var(--light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  color: var(--orange);
  margin-bottom: 18px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── WHY US ─────────────────────────────────────────────────── */

.why-us {
  padding: 96px 0;
  background: var(--white);
}

.why-us__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.why-us__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.why-us__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.why-us__image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--shadow2);
}
.why-us__image-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.why-us__image-badge span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

.why-us__points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-point__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(245,130,10,.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.why-point__icon svg {
  width: 22px;
  height: 22px;
}
.why-point h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.why-point p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── STATS BAND ─────────────────────────────────────────────── */

.stats-band {
  padding: 72px 0;
  background: var(--navy);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-band__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(245,130,10,.2);
  text-align: center;
}
.stats-band__item:last-child { border-right: none; }

.stats-band__num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.stats-band__label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 640px) {
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__item:nth-child(2) { border-right: none; }
  .stats-band__item:nth-child(1),
  .stats-band__item:nth-child(2) { border-bottom: 1px solid rgba(245,130,10,.2); }
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */

.testimonials {
  padding: 96px 0;
  background: var(--light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow2); }

.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__stars svg {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.review-card blockquote::before { content: '\201C'; }
.review-card blockquote::after  { content: '\201D'; }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card__author strong {
  display: block;
  font-size: .92rem;
  color: var(--text);
}
.review-card__author span {
  font-size: .78rem;
  color: var(--muted);
}

/* ─── SERVICE AREA ────────────────────────────────────────────── */

.service-area {
  padding: 96px 0;
  background: var(--white);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.area-item:hover {
  border-color: var(--orange);
  background: rgba(245,130,10,.04);
}
.area-item svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}
.area-item span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  color: var(--navy);
  text-transform: uppercase;
}
.area-item small {
  font-size: .7rem;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.area-note {
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
}

/* ─── CONTACT ────────────────────────────────────────────────── */

.contact {
  padding: 96px 0;
  background: var(--navy);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact__info .section-eyebrow { color: var(--orange); }

.contact__info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.contact__info > p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.contact__detail a { color: var(--orange); }
.contact__detail a:hover { color: var(--white); }
.contact__detail svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact__form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,10,.15);
  background: var(--white);
}
.form-group input.error,
.form-group select.error {
  border-color: #d94040;
  box-shadow: 0 0 0 3px rgba(217,64,64,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6474' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
}
.form-success[hidden] { display: none; }
.form-success svg {
  width: 72px;
  height: 72px;
  color: #2db34a;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
}
.form-success p {
  font-size: .95rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.65;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */

.footer {
  background: #07111c;
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.footer__logo-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__logo-loc {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer__brand p {
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__phone {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .02em;
}
.footer__phone:hover { color: var(--white); }

.footer__col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer__col ul a:hover { color: var(--orange); }
.footer__col address p {
  font-size: .85rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer__col address a { color: rgba(255,255,255,.55); }
.footer__col address a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer__tagline {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,130,10,.5);
}

/* ─── STICKY CTA ─────────────────────────────────────────────── */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,130,10,.45);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .3s, opacity .3s, background .15s;
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta:hover { background: var(--orange2); }
.sticky-cta svg { width: 16px; height: 16px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__layout { grid-template-columns: 1fr; gap: 40px; }
  .why-us__image img { height: 380px; }
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .nav__links { display: none; }
  .nav__phone { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero__headline br { display: none; }
  .hero__content { padding-bottom: 100px; }

  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .services { padding: 72px 0; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials { padding: 72px 0; }

  .before-after { padding: 72px 0; }
  .ba-split { flex-direction: column; max-height: none; border-radius: 8px; }
  .ba-panel img { max-height: 260px; }
  .ba-divider { flex-direction: row; width: 100%; height: 44px; min-width: auto; }
  .ba-divider__line { flex: 1; width: auto; height: 1px; }
  .ba-divider__badge { writing-mode: horizontal-tb; }

  .why-us { padding: 72px 0; }
  .why-us__image { display: none; }

  .service-area { padding: 72px 0; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }

  .contact { padding: 72px 0; }
  .contact__form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .sticky-cta { bottom: 16px; right: 16px; font-size: .82rem; padding: 10px 18px; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__badges { gap: 6px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .contact__form-wrap { padding: 20px 16px; }
}

/* ─── STAGGER DELAYS FOR GRID CHILDREN ───────────────────────── */
.services__grid .fade-up:nth-child(2) { transition-delay: .07s; }
.services__grid .fade-up:nth-child(3) { transition-delay: .14s; }
.services__grid .fade-up:nth-child(4) { transition-delay: .07s; }
.services__grid .fade-up:nth-child(5) { transition-delay: .14s; }
.services__grid .fade-up:nth-child(6) { transition-delay: .21s; }

.why-us__points .fade-up:nth-child(2) { transition-delay: .08s; }
.why-us__points .fade-up:nth-child(3) { transition-delay: .16s; }
.why-us__points .fade-up:nth-child(4) { transition-delay: .24s; }

.testimonials__grid .fade-up:nth-child(2) { transition-delay: .1s; }
.testimonials__grid .fade-up:nth-child(3) { transition-delay: .2s; }
