/* ===== Ultra Brite Cleaning. Modeled on the logo: bright cyan-blue + black ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #1AA7DE;
  --blue-dark: #0E7BAB;
  --blue-darker: #08506F;
  --ink: #0E141A;
  --ink-soft: #495664;
  --ink-muted: #6b7a87;
  --bg: #F6FAFC;          /* tinted near-white */
  --bg-soft: #ECF3F8;
  --bg-tint: #DBEBF5;
  --line: #D8E2EA;
  --shadow: 0 18px 48px -20px rgba(8, 80, 111, .35);
  --shadow-sm: 0 8px 24px -12px rgba(8, 80, 111, .28);
  --ease-out: cubic-bezier(.22, 1, .36, 1); /* ease-out-quart */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(26,167,222,.18);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== A11y: focus + skip link ===== */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9rem;
  z-index: 100;
}
.skip-link:focus { left: 16px; }

/* ===== Headings ===== */
h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue);
  font-size: .82rem;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.05;
}

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 30px;
  border-radius: 6px;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blue-darker); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 28px 8px 14px;
}
.logo { display: inline-flex; }
.logo img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a.navlink {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .92rem;
  padding: 6px 0;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a.navlink::after {
  content: '';
  position: absolute;
  left: 0; bottom: 8px;
  height: 3px; width: 0;
  background: var(--blue);
  transition: width .22s var(--ease-out);
}
.nav a.navlink:hover::after,
.nav a.navlink.active::after { width: 100%; }
.nav a.navlink.active { color: var(--blue-dark); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 11px 19px;
  border-radius: 6px;
  font-size: 1rem;
  min-height: 44px;
  transition: background .2s var(--ease-out), transform .2s var(--ease-out);
}
.nav-phone:hover { background: var(--blue-dark); transform: translateY(-2px); }

.menu-btn {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
  min-height: 44px; min-width: 44px;
}
.menu-btn span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8,30,46,.92) 0%, rgba(8,80,111,.78) 50%, rgba(26,167,222,.45) 100%),
    url('images/soft-wash-house.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -4%;
  top: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(26,167,222,.2), transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.hero .wrap { padding-top: 48px; padding-bottom: 48px; position: relative; z-index: 1; width: 100%; }

/* Make the hero fill the viewport so the trust strip sits at the bottom on load */
@media (min-width: 720px) {
  .hero {
    min-height: calc(100svh - 120px);
    display: flex;
    align-items: center;
  }
}
.hero-inner { max-width: 680px; }
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.5px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hero h1 .hl { color: var(--blue); display: inline-block; }
.hero h1 .line { display: block; }
.hero p {
  margin-top: 18px;
  font-size: 1.05rem;
  max-width: 520px;
  color: #e2eef5;
  line-height: 1.55;
}
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== Trust strip — single confident line, not a card grid ===== */
.trust {
  background: var(--ink);
  color: #fff;
}
.trust .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
  padding: 18px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .85rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8e2ea;
}
.trust-item svg { color: var(--blue); flex: none; }
.trust-sep {
  color: var(--blue);
  font-weight: 700;
  user-select: none;
}

/* ===== Generic section ===== */
.section { padding: 64px 0; }
.section.soft { background: var(--bg-soft); }

/* ===== Difference (intro) ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.intro-text p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; line-height: 1.65; }
.intro-sig {
  margin-top: 32px;
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--blue-dark);
  font-weight: 600;
  padding-left: 18px;
  border-left: 3px solid var(--blue);
  line-height: 1.4;
}
.intro-media { position: relative; }
.intro-media img {
  border-radius: 14px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ===== Service cards ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .2s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc-ic {
  width: 44px; height: 44px;
  border-radius: 9px;
  background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.svc-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: .3px;
}
.svc-card p { margin-top: 8px; color: var(--ink-soft); font-size: .94rem; line-height: 1.5; }
.svc-more {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  color: var(--blue-dark);
}
.svc-card:hover .svc-more { gap: 12px; color: var(--blue); }

/* Featured (bento) — spans 2 cols, contains image + body */
.svc-card--featured {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}
.svc-card--featured .feat-img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.svc-card--featured .feat-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.svc-card--featured .svc-ic { background: var(--blue); color: #fff; }
.svc-card--featured .svc-ic svg { color: #fff; }
.svc-card--featured h3 { font-size: 1.7rem; }

/* CTA strip below service grid — replaces the 6th "all in one" card */
.svc-cta {
  margin-top: 28px;
  background: var(--ink);
  border-radius: 14px;
  padding: 28px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  color: #fff;
}
.svc-cta-text { flex: 1 1 320px; }
.svc-cta-text h3 {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
}
.svc-cta-text p { color: #bcd1dc; margin-top: 6px; font-size: .98rem; }

/* ===== Why choose us — drenched dark variant ===== */
.why-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  left: -8%;
  bottom: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,167,222,.18), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-section .section-title { color: #fff; }
.why-media img {
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  height: 380px;
  width: 100%;
  object-fit: cover;
}
.feat-list { margin-top: 8px; }
.feat {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.feat:last-child { border-bottom: 0; }
.feat-check {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.feat h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: .5px;
  color: #fff;
}
.feat p { color: #bcd1dc; font-size: .97rem; margin-top: 2px; line-height: 1.55; }

/* ===== Video ===== */
.section.video-section { padding: 72px 0; }
.section.video-section .section-head { margin-bottom: 32px; }
.video-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 360px;
  margin: 0 auto;
  border: 4px solid var(--bg);
}
.video-frame video {
  width: 100%;
  display: block;
  background: #000;
  max-height: 74vh;
  object-fit: cover;
}

/* ===== CTA band (drenched) ===== */
.cta {
  background: linear-gradient(115deg, var(--blue-darker), var(--blue));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.06), transparent 50%);
  pointer-events: none;
}
.cta .wrap { padding: 60px 24px; position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
}
.cta p { margin-top: 12px; font-size: 1.05rem; color: #e4f3fb; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  margin-top: 18px;
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: inline-block;
}

/* ===== Page banner (services page) ===== */
.banner {
  position: relative;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8,30,46,.93), rgba(8,80,111,.75)),
    url('images/carpet-cleaning.jpg') center 35%/cover no-repeat;
  text-align: center;
}
.banner .wrap { padding: 64px 24px 72px; }
.banner h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.3px;
  line-height: 1.05;
}
.banner p { margin-top: 14px; color: #e2eef5; font-size: 1.05rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.crumbs {
  margin-top: 20px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .82rem;
  color: #b3cad6;
}
.crumbs a:hover { color: #fff; }

/* ===== Detailed service rows ===== */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.svc-row + .svc-row { margin-top: 64px; }
.svc-row.flip .svc-row-media { order: 2; }
.svc-row-media img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: 340px;
  width: 100%;
  object-fit: cover;
}
.svc-row-num {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  color: var(--bg-tint);
  line-height: .8;
  margin-bottom: 6px;
}
.svc-row h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.05;
}
.svc-row > div p { color: var(--ink-soft); margin-top: 12px; font-size: 1rem; line-height: 1.55; }
.tick-list { margin-top: 22px; display: grid; gap: 10px; }
.tick {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
}
.tick svg { flex: none; margin-top: 3px; }

/* tile and grout: styled photo-less panel on brand */
.tile-panel {
  height: 340px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(26,167,222,.93), rgba(8,80,111,.95)),
    repeating-linear-gradient(0deg, transparent 0 64px, rgba(255,255,255,.15) 64px 67px),
    repeating-linear-gradient(90deg, transparent 0 64px, rgba(255,255,255,.15) 64px 67px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  text-align: center;
}
.tile-panel svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.tile-panel span {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.15rem;
}

/* ===== Areas We Serve ===== */
.areas-head { max-width: 760px; }
.area-pills {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.area-pill {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 11px 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: .5px;
  font-size: .96rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), transform .2s var(--ease-out);
}
.area-pill:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.area-pill svg { flex: none; }
.areas.soft .area-pill { background: var(--bg); }

/* ===== FAQ ===== */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
details.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 26px;
  transition: box-shadow .25s var(--ease-out), border-color .2s var(--ease-out);
}
details.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .25s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
}
details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}
details.faq-item p {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #aebcc6;
  padding: 52px 0 26px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.foot-logo {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}
.foot-logo img { height: 64px; width: auto; }
.site-footer p { font-size: .96rem; line-height: 1.6; }
.foot-col h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col ul a:hover, .foot-col li:hover { color: var(--blue); }
.foot-contact div { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; }
.foot-contact svg { flex: none; margin-top: 3px; }
.foot-phone {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  color: #fff;
  font-size: 1.5rem;
}
.foot-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #2a343d;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .86rem;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .svc-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .svc-card--featured .feat-img { min-height: 220px; max-height: 280px; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .intro-grid, .why-grid, .svc-row, .svc-row.flip .svc-row-media { grid-template-columns: 1fr; }
  .svc-row.flip .svc-row-media { order: 0; }
  .intro-media img, .why-media img, .svc-row-media img, .tile-panel { height: 360px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card--featured { grid-column: span 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero .wrap { padding-top: 80px; padding-bottom: 90px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .svc-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ===== Service tag: "Residential · Commercial" pill ===== */
.svc-tag {
  display: inline-flex;
  align-items: center;
  background: var(--bg-tint);
  color: var(--blue-darker);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: .72rem;
  padding: 5px 11px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.svc-card--featured .svc-tag {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.svc-row .svc-tag {
  margin-bottom: 16px;
}

/* ===== Mobile refinements (small phones) ===== */
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 5rem); line-height: 1; }
  .hero .wrap { padding-top: 70px; padding-bottom: 84px; }
  .hero p { font-size: 1.05rem; margin-top: 18px; }
  .hero-actions { margin-top: 28px; }

  .banner .wrap { padding: 70px 24px 78px; }
  .banner h1 { font-size: clamp(2.2rem, 10vw, 3.8rem); line-height: 1; }
  .banner p { font-size: 1.02rem; margin-top: 14px; }

  .section-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .section-head { margin-bottom: 40px; }

  .trust .wrap {
    gap: 12px 20px;
    font-size: .82rem;
    padding: 22px 18px;
    letter-spacing: 1px;
  }
  .trust-sep { display: none; }
  .trust-item svg { width: 16px; height: 16px; }

  .intro-grid, .why-grid { gap: 44px; }
  .intro-media img { height: 360px; }
  .intro-sig { font-size: 1.1rem; margin-top: 26px; }

  .svc-card { padding: 26px 22px; }
  .svc-card h3 { font-size: 1.2rem; }
  .svc-card--featured .feat-body { padding: 26px 22px; }
  .svc-card--featured h3 { font-size: 1.4rem; }
  .svc-card--featured .feat-img { min-height: 200px; max-height: 240px; }

  .svc-cta { padding: 24px; gap: 16px; }
  .svc-cta-text h3 { font-size: 1.4rem; }
  .svc-cta .btn { width: 100%; justify-content: center; }

  .feat { padding: 14px 0; gap: 14px; }
  .feat-check { width: 28px; height: 28px; }
  .feat h3 { font-size: 1rem; }
  .feat p { font-size: .94rem; }

  .svc-row + .svc-row { margin-top: 64px; }
  .svc-row-media img, .tile-panel { height: 300px; }
  .svc-row-num { font-size: 3rem; }

  .area-pill { padding: 10px 18px; font-size: .9rem; }
  details.faq-item summary { font-size: 1rem; padding: 18px 0; }
  details.faq-item { padding: 4px 20px; }

  .cta .wrap { padding: 72px 24px; }
  .cta-phone { font-size: 1.5rem; margin-top: 22px; }
  .cta-actions .btn, .hero-actions .btn { width: 100%; justify-content: center; min-height: 52px; }

  .video-frame { max-width: 86%; }

  .foot-grid { gap: 36px; }
  .foot-phone { font-size: 1.3rem; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
  .section { padding: 52px 0; }
  .hero .wrap { padding-top: 56px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 3.8rem); }
  .banner .wrap { padding: 56px 20px 64px; }
  .nav-phone { padding: 9px 14px; font-size: .92rem; }
  .logo img { height: 40px; }
}

/* ===== Scroll-reveal (progressive enhancement) ===== */
.js .scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.js .scroll-reveal.in {
  opacity: 1;
  transform: none;
}

/* Stagger inside grids/lists */
.js .svc-grid > .scroll-reveal:nth-child(1) { transition-delay: 0ms; }
.js .svc-grid > .scroll-reveal:nth-child(2) { transition-delay: 90ms; }
.js .svc-grid > .scroll-reveal:nth-child(3) { transition-delay: 180ms; }
.js .svc-grid > .scroll-reveal:nth-child(4) { transition-delay: 270ms; }
.js .svc-grid > .scroll-reveal:nth-child(5) { transition-delay: 360ms; }

.js .feat-list > .scroll-reveal:nth-child(1) { transition-delay: 0ms; }
.js .feat-list > .scroll-reveal:nth-child(2) { transition-delay: 70ms; }
.js .feat-list > .scroll-reveal:nth-child(3) { transition-delay: 140ms; }
.js .feat-list > .scroll-reveal:nth-child(4) { transition-delay: 210ms; }
.js .feat-list > .scroll-reveal:nth-child(5) { transition-delay: 280ms; }
.js .feat-list > .scroll-reveal:nth-child(6) { transition-delay: 350ms; }

.js .faq-list > .scroll-reveal:nth-child(1) { transition-delay: 0ms; }
.js .faq-list > .scroll-reveal:nth-child(2) { transition-delay: 70ms; }
.js .faq-list > .scroll-reveal:nth-child(3) { transition-delay: 140ms; }
.js .faq-list > .scroll-reveal:nth-child(4) { transition-delay: 210ms; }
.js .faq-list > .scroll-reveal:nth-child(5) { transition-delay: 280ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .js .scroll-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
