:root {
  --navy-900: #0A1A36;
  --navy-800: #0B1E3F;
  --navy-700: #13305F;
  --navy-600: #1B427F;
  --blue-500: #2E7BE8;
  --blue-400: #4E94F0;
  --blue-50: #EAF2FD;
  --ink-900: #0D1528;
  --ink-700: #2E3A52;
  --ink-500: #5B6680;
  --ink-400: #8591A8;
  --line: #E5E9F0;
  --line-2: #EEF1F6;
  --paper: #F7F8FA;
  --white: #FFFFFF;
  --success: #1E9E6A;
  --warn: #E8A53A;
  --shadow-sm: 0 1px 2px rgba(11, 30, 63, 0.06), 0 1px 1px rgba(11, 30, 63, 0.04);
  --shadow-md: 0 10px 24px -12px rgba(11, 30, 63, 0.18), 0 4px 8px -4px rgba(11, 30, 63, 0.08);
  --shadow-lg: 0 24px 48px -16px rgba(11, 30, 63, 0.22), 0 8px 16px -8px rgba(11, 30, 63, 0.10);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --font-head: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(1.6) blur(16px);
  -webkit-backdrop-filter: saturate(1.6) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 var(--line), 0 4px 16px -4px rgba(11,30,63,0.07);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-900);
  font-size: 16.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer .logo-mark { width: 48px; height: 48px; }
.logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-400);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}
.nav-link {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.nav-link:hover { background: var(--blue-50); color: var(--navy-800); }
.nav-link.active {
  color: var(--navy-900);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-700);
  border: 1px solid var(--line);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.phone-pill:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  color: var(--navy-800);
}
.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
  margin: 0 2px;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .phone-pill span { display: none; }
  .phone-pill { border: none; padding: 7px 8px; }
  .nav-divider { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-head);
  transition: transform 0.08s, background 0.15s, box-shadow 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 6px 16px -6px rgba(46, 123, 232, 0.5);
}
.btn-primary:hover { background: #1E6AD8; box-shadow: 0 10px 20px -6px rgba(46, 123, 232, 0.55); }
.btn-navy {
  background: var(--navy-800);
  color: white;
}
.btn-navy:hover { background: var(--navy-900); }
.btn-ghost {
  background: white;
  color: var(--navy-900);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy-800); }
.btn-white {
  background: white;
  color: var(--navy-900);
}
.btn-white:hover { background: var(--blue-50); }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 64px 0 88px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(46,123,232,0.18), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(27,66,127,0.14), transparent 60%),
    linear-gradient(180deg, #0A1A36 0%, #0B1E3F 60%, #13305F 100%);
  color: white;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 64px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #D7E3F7;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #58E39A;
  box-shadow: 0 0 0 3px rgba(88,227,154,0.25);
}
.hero h1 {
  color: white;
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: 18px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #7FB5FF 0%, #4E94F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 18px;
  font-size: 17.5px;
  color: #C9D4E8;
  max-width: 520px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #C9D4E8;
}
.hero-badge svg { color: #7FB5FF; }

/* ============ SECTION ============ */
.section {
  padding: 96px 0;
}
.section-sm { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.section-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 10px;
  line-height: 1.1;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 17px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #D4DEEF;
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-50);
  display: grid;
  place-items: center;
  color: var(--navy-800);
  margin-bottom: 20px;
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-icon-wrap {
  background: var(--navy-800);
  color: white;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-card p {
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 15px;
}
.service-card .price-from {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-head);
}
.service-card .price-from .label { font-size: 12px; color: var(--ink-400); font-weight: 500; }
.service-card .price-from .amount { font-size: 22px; font-weight: 700; color: var(--navy-900); }
.service-card .price-note {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--ink-400);
  font-style: italic;
}
.service-card .learn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-500);
}
.service-card .learn svg { transition: transform 0.15s; }
.service-card:hover .learn svg { transform: translateX(3px); }

/* ============ BEFORE / AFTER ============ */
.ba-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  user-select: none;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: #222;
}
.ba-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-layer.after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.ba-scene { position: absolute; inset: 0; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: white;
  transform: translateX(-1.5px);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 0 0 2px white;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  pointer-events: none;
}
.ba-label {
  position: absolute;
  top: 14px;
  padding: 5px 10px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(10, 26, 54, 0.82);
  color: white;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; background: rgba(46, 123, 232, 0.92); }

/* CSS-rendered before/after scenes */
.scene {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.scene .sky {
  position: absolute; inset: 0 0 50% 0;
}
.scene .ground {
  position: absolute; inset: 50% 0 0 0;
}

/* Driveway scene */
.scene-driveway.dirty .sky { background: linear-gradient(180deg, #8A94A6, #A9B3C4); }
.scene-driveway.dirty .ground {
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(60,45,30,0.55), transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(40,30,20,0.6), transparent 65%),
    radial-gradient(circle at 20% 80%, rgba(20,15,10,0.45), transparent 40%),
    repeating-linear-gradient(95deg, #4A4641 0 3px, #52504A 3px 6px),
    #4D4945;
}
.scene-driveway.clean .sky { background: linear-gradient(180deg, #7FB5FF, #BDD7F7); }
.scene-driveway.clean .ground {
  background:
    repeating-linear-gradient(95deg, #B8BDC6 0 3px, #C0C5CE 3px 6px),
    #BEC3CC;
}
.scene-driveway .house {
  position: absolute;
  bottom: 50%;
  left: 10%;
  width: 50%;
  height: 34%;
  background: #C9B79A;
  border-top: 4px solid #7A5C3F;
}
.scene-driveway.dirty .house {
  background: linear-gradient(180deg, #9A8E78 0%, #85775F 100%);
  filter: brightness(0.85);
}
.scene-driveway.clean .house {
  background: linear-gradient(180deg, #E8D9BE 0%, #D4C4A5 100%);
}
.scene-driveway .roof {
  position: absolute;
  bottom: 84%;
  left: 8%;
  width: 54%;
  height: 0;
  border-bottom: 40px solid #5A3A28;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.scene-driveway.clean .roof { border-bottom-color: #7A4D35; }
.scene-driveway .window-1, .scene-driveway .window-2 {
  position: absolute;
  background: #2E3A52;
  width: 10%; height: 10%;
}
.scene-driveway .window-1 { bottom: 58%; left: 18%; }
.scene-driveway .window-2 { bottom: 58%; left: 38%; }
.scene-driveway.clean .window-1, .scene-driveway.clean .window-2 {
  background: linear-gradient(135deg, #7FB5FF, #4E94F0);
}
.scene-driveway .tree {
  position: absolute;
  bottom: 50%;
  right: 12%;
  width: 60px;
  height: 70px;
  background: radial-gradient(circle, #3C5A3A 30%, #2A3F28 70%);
  border-radius: 50% 50% 40% 40%;
}
.scene-driveway.clean .tree {
  background: radial-gradient(circle, #5A8A52 30%, #3C5A3A 70%);
}
.scene-driveway .grime-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}
.scene-driveway.dirty .grime-spot.g1 {
  bottom: 10%; left: 25%;
  width: 20%; height: 10%;
  background: rgba(20,15,10,0.5);
}
.scene-driveway.dirty .grime-spot.g2 {
  bottom: 5%; left: 60%;
  width: 25%; height: 12%;
  background: rgba(30,20,15,0.55);
}

/* Siding scene (for house wash) */
.scene-siding { background: #E8E4DA; }
.scene-siding.dirty {
  background:
    repeating-linear-gradient(0deg, rgba(80,90,70,0.3) 0 2px, transparent 2px 24px),
    repeating-linear-gradient(180deg, #8A9485 0 20px, #7A8477 20px 22px);
}
.scene-siding.clean {
  background:
    repeating-linear-gradient(180deg, #F1F3EE 0 20px, #E4E7DF 20px 22px);
}
.scene-siding .streak {
  position: absolute;
  top: 0; bottom: 0;
  width: 3%;
  background: linear-gradient(180deg, transparent, rgba(30,40,25,0.35), transparent 85%);
  filter: blur(2px);
}
.scene-siding.clean .streak { display: none; }
.scene-siding .streak.s1 { left: 15%; }
.scene-siding .streak.s2 { left: 42%; height: 70%; top: 0; }
.scene-siding .streak.s3 { left: 68%; }
.scene-siding .streak.s4 { left: 85%; height: 55%; }
.scene-siding .window-sash {
  position: absolute;
  background: #2E3A52;
  border: 4px solid #4A3626;
  width: 18%; height: 22%;
  top: 25%;
}
.scene-siding .window-sash.w1 { left: 15%; }
.scene-siding .window-sash.w2 { left: 60%; }
.scene-siding.clean .window-sash {
  background: linear-gradient(135deg, #7FB5FF, #BDD7F7);
  border-color: #6A4E36;
}

/* Deck scene */
.scene-deck.dirty {
  background:
    radial-gradient(ellipse 50% 30% at 30% 40%, rgba(30,20,15,0.55), transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(40,30,20,0.5), transparent 70%),
    repeating-linear-gradient(90deg, #4A3A2A 0 50px, #3E2F20 50px 52px, #4A3A2A 52px 102px);
}
.scene-deck.clean {
  background:
    repeating-linear-gradient(90deg, #B08556 0 50px, #9E754A 50px 52px, #B08556 52px 102px);
}
.scene-deck .rail {
  position: absolute;
  top: 30%;
  left: 0; right: 0;
  height: 8px;
  background: #5A3E2A;
}
.scene-deck.clean .rail { background: #8B6238; }
.scene-deck .post {
  position: absolute;
  top: 15%; bottom: 0;
  width: 14px;
  background: #5A3E2A;
}
.scene-deck.clean .post { background: #8B6238; }
.scene-deck .post.p1 { left: 20%; }
.scene-deck .post.p2 { left: 50%; }
.scene-deck .post.p3 { left: 80%; }
.scene-deck .leaf {
  position: absolute;
  width: 14px; height: 8px;
  background: #6A4A2A;
  border-radius: 50%;
  transform: rotate(30deg);
}
.scene-deck.clean .leaf { display: none; }
.scene-deck .leaf.l1 { top: 60%; left: 12%; }
.scene-deck .leaf.l2 { top: 75%; left: 55%; transform: rotate(-20deg); }
.scene-deck .leaf.l3 { top: 80%; left: 75%; }

/* Photo caption */
.ba-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 14px;
}
.ba-caption .title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
}
.ba-caption .meta { color: var(--ink-400); font-size: 13px; }

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 4px 0;
}
.why-item .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy-800);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.why-item h4 { font-size: 17px; font-weight: 700; }
.why-item p { font-size: 14.5px; color: var(--ink-500); margin-top: 6px; line-height: 1.55; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(46,123,232,0.2), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(46,123,232,0.12), transparent 60%);
  pointer-events: none;
}
.testimonials .section-head h2 { color: white; }
.testimonials .section-head p { color: #A5B3CC; }
.testimonials .section-eyebrow { color: #7FB5FF; }
.t-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.t-viewport { overflow: hidden; position: relative; z-index: 1; }
.t-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
@media (max-width: 900px) { .t-card { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 640px) { .t-card { flex: 0 0 100%; } }
.t-stars {
  display: flex;
  gap: 3px;
  color: #FFC93A;
  margin-bottom: 14px;
}
.t-quote { font-size: 15.5px; line-height: 1.6; color: #E4EAF6; }
.t-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: white;
}
.t-name { font-weight: 600; font-size: 14.5px; color: white; }
.t-meta { font-size: 12.5px; color: #8FA0C0; }
.t-controls {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  transition: background 0.15s, width 0.15s;
  cursor: pointer;
}
.t-dot.active { background: var(--blue-400); width: 24px; }
.t-arrows { display: flex; gap: 8px; }
.t-arrow {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  display: grid; place-items: center;
  transition: background 0.15s;
}
.t-arrow:hover { background: rgba(255,255,255,0.18); }
.t-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--navy-700) 100%);
  border-radius: var(--r-xl);
  padding: 56px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}
.cta-banner h2 {
  color: white;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 560px;
}
.cta-banner p {
  margin-top: 10px;
  color: #D6E5FB;
  font-size: 16px;
  max-width: 520px;
}
.cta-banner .btns { display: flex; gap: 12px; position: relative; z-index: 1; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 768px) {
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900);
  color: #A5B3CC;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col a { display: block; padding: 5px 0; font-size: 14.5px; color: #A5B3CC; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-brand p { margin-top: 14px; font-size: 14px; color: #8FA0C0; line-height: 1.6; max-width: 320px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8FA0C0;
}
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: #A5B3CC;
  transition: background 0.15s, color 0.15s;
}
.social a:hover { background: var(--blue-500); color: white; }

/* ============ FLOATING CTA ============ */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--blue-500);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: 0 12px 28px -10px rgba(46,123,232,0.6), 0 4px 10px -4px rgba(11,30,63,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  animation: float-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -10px rgba(46,123,232,0.7), 0 6px 12px -4px rgba(11,30,63,0.3); }
@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ PAGE HEADERS ============ */
.page-head {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 80% 0%, rgba(46,123,232,0.2), transparent 60%);
  pointer-events: none;
}
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #A5B3CC;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.crumbs .sep { opacity: 0.4; }
.crumbs a:hover { color: white; }
.page-head h1 {
  color: white;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.page-head p {
  margin-top: 14px;
  color: #C9D4E8;
  font-size: 17px;
  max-width: 620px;
  position: relative;
  z-index: 1;
}

/* ============ GALLERY PAGE ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.gallery-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }
.filter-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-pill {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.filter-pill:hover { border-color: var(--navy-800); }
.filter-pill.active {
  background: var(--navy-800);
  color: white;
  border-color: var(--navy-800);
}
.filter-pill-sm {
  font-size: 13px;
  padding: 7px 14px;
}
.gallery-view-tabs {
  margin-bottom: 24px;
}
.gallery-media-note {
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  margin: -16px 0 28px;
}

/* ============ REAL JOB PHOTOS & VIDEOS ============ */
.real-work-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.job-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .job-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .job-photo-grid { grid-template-columns: 1fr; }
}
.job-photo {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.job-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.job-photo:hover img {
  transform: scale(1.03);
}
.real-work-videos-block {
  margin-top: 40px;
}
.real-work-subhead {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.job-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .job-video-grid { grid-template-columns: 1fr; }
}
.job-video {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.job-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a1628;
}

/* ============ SERVICES PAGE ============ */
.svc-detail-list {
  display: grid;
  gap: 24px;
}
.svc-detail {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.svc-detail:hover { border-color: #D4DEEF; box-shadow: var(--shadow-md); }
@media (max-width: 768px) {
  .svc-detail { grid-template-columns: 1fr; padding: 24px; gap: 16px; }
}
.svc-detail .visual {
  width: 140px; height: 140px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  display: grid; place-items: center;
  color: var(--navy-800);
}
.svc-detail h3 { font-size: 24px; font-weight: 700; }
.svc-detail .desc { margin-top: 8px; color: var(--ink-500); font-size: 15px; }
.svc-detail ul { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.svc-detail ul li {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--navy-800);
  font-weight: 500;
}
.pricing-banner {
  background: var(--blue-50);
  border: 1px solid #D4E4F7;
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 28px;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
}
.pricing-banner strong { color: var(--navy-900); }
.svc-detail .side {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 8px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .svc-detail .side { align-items: flex-start; }
}
.svc-detail .price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-900);
  text-align: right;
}
.svc-detail .price .lbl {
  font-size: 12px;
  color: var(--ink-400);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.svc-detail .price-detail {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-500);
  text-align: right;
}
.svc-detail .price-note {
  font-size: 11.5px;
  color: var(--ink-400);
  font-style: italic;
  line-height: 1.45;
  text-align: right;
  max-width: 220px;
}
@media (max-width: 768px) {
  .svc-detail .price,
  .svc-detail .price-detail,
  .svc-detail .price-note { text-align: left; }
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 22px; font-weight: 700; }
.contact-info .info-list { margin-top: 20px; display: grid; gap: 16px; }
.info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.info-item .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--navy-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-item .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-400); font-weight: 600; }
.info-item .val { margin-top: 3px; font-size: 15.5px; font-weight: 600; color: var(--navy-900); }
.info-item .note { margin-top: 2px; font-size: 13.5px; color: var(--ink-500); }

.map-placeholder {
  margin-top: 24px;
  height: 220px;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, #E6EDF7 0%, #D1DCEF 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.5) 20px 22px),
    repeating-linear-gradient(-45deg, transparent 0 30px, rgba(46,123,232,0.08) 30px 32px);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  color: var(--blue-500);
  filter: drop-shadow(0 4px 8px rgba(11,30,63,0.3));
}
.map-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 12px);
  background: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* Form */
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.form-card .sub { color: var(--ink-500); font-size: 14.5px; margin-bottom: 24px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink-900);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(46,123,232,0.15);
}
.field.error input, .field.error select, .field.error textarea { border-color: #D64545; }
.field .err { font-size: 12.5px; color: #D64545; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-fields { display: grid; gap: 16px; }

/* Quote flow */
.quote-shell {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.stepper .step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  color: var(--ink-400);
  font-weight: 500;
}
.stepper .step .num {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: white;
  border: 1.5px solid var(--line);
  color: var(--ink-400);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.stepper .step.active { color: var(--navy-900); }
.stepper .step.active .num { background: var(--navy-800); border-color: var(--navy-800); color: white; }
.stepper .step.done { color: var(--navy-700); }
.stepper .step.done .num { background: var(--success); border-color: var(--success); color: white; }
.stepper .bar {
  flex: 0 0 32px;
  height: 1.5px;
  background: var(--line);
  margin: 0 10px;
}
.stepper .bar.done { background: var(--success); }
@media (max-width: 640px) {
  .stepper { padding: 16px; overflow-x: auto; }
  .stepper .step .lbl { display: none; }
  .stepper .bar { flex: 0 0 16px; margin: 0 6px; }
}
.quote-body { padding: 36px; }
@media (max-width: 640px) { .quote-body { padding: 24px 20px; } }
.quote-body h3 { font-size: 22px; font-weight: 700; }
.quote-body .sub { color: var(--ink-500); font-size: 14.5px; margin-top: 4px; margin-bottom: 24px; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 560px) { .choice-grid { grid-template-columns: 1fr; } }
.choice {
  padding: 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: white;
  text-align: left;
  transition: all 0.15s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.choice:hover { border-color: var(--blue-400); }
.choice.selected {
  border-color: var(--blue-500);
  background: var(--blue-50);
}
.choice .ic {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: white;
  color: var(--navy-800);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.choice.selected .ic { background: var(--navy-800); color: white; border-color: var(--navy-800); }
.choice .t { font-weight: 700; font-size: 15px; color: var(--navy-900); }
.choice .d { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.choice .check {
  position: absolute;
  top: 12px; right: 12px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--blue-500);
  color: white;
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.15s;
}
.choice.selected .check { opacity: 1; transform: scale(1); }

.quote-foot {
  padding: 20px 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper);
}
@media (max-width: 640px) { .quote-foot { padding: 16px 20px; } }

.estimate-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: white;
  border-radius: 14px;
  padding: 24px;
  margin-top: 24px;
}
.estimate-card .lbl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #7FB5FF; font-weight: 600; }
.estimate-card .range { font-family: var(--font-head); font-size: 36px; font-weight: 800; margin-top: 6px; letter-spacing: -0.02em; }
.estimate-card .note { margin-top: 8px; font-size: 13.5px; color: #C9D4E8; }

.success-state {
  text-align: center;
  padding: 48px 20px;
}
.success-check {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--success);
  color: white;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  animation: pop-in 0.4s cubic-bezier(0.2, 1.4, 0.4, 1);
}
@keyframes pop-in {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-state h3 { font-size: 26px; font-weight: 800; }
.success-state p { margin-top: 10px; color: var(--ink-500); max-width: 440px; margin-left: auto; margin-right: auto; font-size: 15.5px; }

/* ============ MOBILE MENU ============ */
.hamburger { display: none; }
@media (max-width: 880px) {
  .hamburger {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    color: var(--navy-900);
  }
  .hamburger:hover { background: var(--blue-50); }
}
.mobile-drawer {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  z-index: 49;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-2);
  font-weight: 500;
  color: var(--ink-900);
}
.mobile-drawer a.active { color: var(--blue-500); background: var(--blue-50); }

/* ============ FAQ SECTION (services page) ============ */
.faq-wrap {
  margin-top: 48px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}
.faq-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .faq-shell { grid-template-columns: 1fr; gap: 24px; }
  .faq-wrap { padding: 24px 20px; }
}

/* subtle reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* trust strip */
.trust-strip {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-500);
  font-weight: 500;
}
.trust-item strong { color: var(--navy-900); font-weight: 700; font-family: var(--font-head); }
.trust-item svg { color: var(--blue-500); flex-shrink: 0; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.stat .num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .lbl {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
}

/* ============================================================
   MOBILE RESPONSIVE — global fixes for phones (< 640px)
   ============================================================ */

/* Nav: hide the "Get a Free Quote" btn alongside hamburger */
@media (max-width: 640px) {
  .nav .btn-primary { display: none; }
  .nav-inner { height: 56px; }
  .mobile-drawer { top: 56px; }
}

/* Trust strip: center-wrap on narrow screens */
@media (max-width: 720px) {
  .trust-strip-inner {
    justify-content: center;
    gap: 10px 20px;
    padding: 18px 0;
  }
  .trust-item { font-size: 12.5px; }
}
@media (max-width: 480px) {
  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 0;
  }
}

/* Hero: tighter on phones */
@media (max-width: 640px) {
  .hero { padding: 40px 0 52px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 12px; margin-top: 28px; }
}

/* Page headers: less padding on phones */
@media (max-width: 640px) {
  .page-head { padding: 36px 0 44px; }
  .page-head h1 { font-size: clamp(28px, 8vw, 40px); }
  .page-head p { font-size: 15px; }
}

/* Section spacing tighter on phones */
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .section-sm { padding: 40px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 15.5px; }
}

/* Services cards: horizontal on tablet, stacked on phone */
@media (max-width: 640px) {
  .service-card { padding: 22px; }
}

/* Service detail visual: reduce size on mobile */
@media (max-width: 768px) {
  .svc-detail .visual {
    width: 80px;
    height: 80px;
  }
}

/* Stats: compact on small phones */
@media (max-width: 480px) {
  .stats { gap: 12px; margin-top: 32px; }
  .stat { padding: 18px 12px; }
  .stat .num { font-size: 28px; }
}

/* CTA banner: full-width buttons on phones */
@media (max-width: 640px) {
  .cta-banner { padding: 28px 24px; border-radius: var(--r-lg); }
  .cta-banner .btns { flex-direction: column; width: 100%; }
  .cta-banner .btn { width: 100%; justify-content: center; }
}

/* Footer: single column on small phones */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* Floating CTA: compact on phones */
@media (max-width: 640px) {
  .float-cta {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 14px;
    gap: 8px;
  }
}

/* Gallery: job photo grid tighter on phones */
@media (max-width: 480px) {
  .job-photo-grid { gap: 10px; }
  .job-video-grid { gap: 12px; }
  .filter-row { gap: 6px; margin-bottom: 28px; }
  .filter-pill { padding: 8px 13px; font-size: 13px; }
}

/* Quote flow: full-width at mobile */
@media (max-width: 640px) {
  .quote-shell { border-radius: 0; border-left: none; border-right: none; }
  .choice-grid { grid-template-columns: 1fr; }
}

/* Contact: compact on mobile */
@media (max-width: 640px) {
  .form-card { padding: 22px 18px; }
  .map-placeholder { height: 180px; }
}

/* Testimonials: cards full-width on very small phones */
@media (max-width: 480px) {
  .t-card { padding: 20px; }
  .t-quote { font-size: 14.5px; }
}
