/* ==========================================================================
   Got'Em Brushing LLC — Main Stylesheet
   ========================================================================== */

:root {
  --navy: #0a1c3a;
  --navy-800: #0f2650;
  --blue: #0b5fd1;
  --blue-600: #0950b3;
  --blue-light: #2e7cf6;
  --gold: #f0b429;
  --gold-600: #d99e11;
  --gold-light: #f6db4a;
  --gray-900: #14181f;
  --gray-700: #3d4451;
  --gray-600: #5b6472;
  --gray-400: #97a1af;
  --gray-200: #e4e8ee;
  --gray-100: #f4f6f9;
  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(10, 28, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 28, 58, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 28, 58, 0.16);
  --container: 1180px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 .6em;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--gray-700); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--gray-100); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: #c7d2e5; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left { margin: 0 0 48px; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #c7d2e5;
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.topbar a { color: #c7d2e5; }
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar-links span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Poppins", sans-serif; font-size: 1.05rem; color: var(--navy); }
.brand-text span { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
}
.nav-phone svg { color: var(--gold-600); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero shared bits (also used by inner-page CTAs) ---------- */
.hero-copy p.lead { font-size: 1.12rem; color: #cdd8ec; max-width: 520px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 34px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 600;
}
.hero-badge svg { color: var(--gold-light); flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Parallax color-changing hero (Home page) ---------- */
.hero-scroll {
  position: relative;
  height: 280vh;
  background: var(--navy);
}
.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-photo-stack {
  position: absolute;
  inset: -4% -2%;
  will-change: transform;
}
.house-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  opacity: 0;
}
.house-photo:first-child { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,28,58,.85) 0%, rgba(10,28,58,.64) 30%, rgba(10,28,58,.2) 58%, rgba(10,28,58,0) 76%);
  pointer-events: none;
}
.hero-copy-wrap { position: relative; z-index: 5; width: 100%; pointer-events: none; }
.hero-copy-wrap .hero-copy { max-width: 560px; pointer-events: auto; }
.hero-copy-wrap h1 { color: var(--white); }
.hero-copy-wrap p.lead { color: #dfe6f2; }

.paint-swatch-panel {
  position: absolute;
  right: 32px;
  bottom: 96px;
  z-index: 6;
  background: rgba(10,28,58,.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 190px;
  box-shadow: var(--shadow-md);
}
.swatch-panel-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: #b9c6dc; font-weight: 700; }
.swatch-color-name { font-family: "Poppins", sans-serif; font-size: 1.05rem; transition: opacity .2s ease; }
.swatch-dots { display: flex; gap: 8px; margin-top: 4px; }
.swatch-dot {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  transition: transform .25s ease, border-color .25s ease;
}
.swatch-dot.active { transform: scale(1.3); border-color: #fff; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #dfe6f2;
  font-size: .72rem;
  letter-spacing: .04em;
  z-index: 6;
  animation: heroBounce 2s infinite;
  opacity: 1;
  transition: opacity .4s ease;
  pointer-events: none;
}
.scroll-cue.hide { opacity: 0; }
@keyframes heroBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
@keyframes heroBounceStatic {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { height: 100vh !important; }
  .hero-pin { position: relative; }
  .scroll-cue { display: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  color: var(--navy);
}
.trust-item span { font-size: .84rem; color: var(--gray-600); font-weight: 600; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  margin-bottom: 18px;
}
.card ul.mini-list { margin-top: 14px; }
.card ul.mini-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--gray-600);
  padding: 4px 0;
}
.card ul.mini-list li svg { color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
}
.card-link svg { transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 22px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-top: 10px; font-size: 1.05rem; }
.step p { font-size: .9rem; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
}
.stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial p.quote { font-style: italic; color: var(--gray-700); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: "Poppins", sans-serif;
}
.testimonial-author strong { display: block; font-size: .92rem; color: var(--navy); }
.testimonial-author span { font-size: .78rem; color: var(--gray-600); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-600), var(--blue));
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band p { color: #dfe9fb; margin: 0; }

/* ---------- Gallery ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-weight: 600;
  font-size: .86rem;
  color: var(--gray-700);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.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;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item.hide { display: none; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(10,28,58,.85));
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }
.gallery-cap strong { display: block; font-size: .92rem; }
.gallery-cap span { font-size: .74rem; color: #cdd8ec; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,15,25,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-cap { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: #cdd8ec; font-size: .9rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: inherit;
  font-size: .94rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11,95,209,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-error { display: none; color: #d64545; font-size: .78rem; margin-top: 6px; font-weight: 600; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #d64545; }
.field.invalid .field-error { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: #eafaf0;
  border: 1px solid #b7ecc8;
  color: #1e7a44;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: .92rem;
}
.form-success.show { display: flex; }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(11,95,209,.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { color: var(--gray-600); font-size: .92rem; }
.contact-info-item a:hover { color: var(--blue); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 320px;
  background: var(--gray-100);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy), var(--navy-800));
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumbs { font-size: .84rem; color: #9db2d6; }
.breadcrumbs a:hover { color: var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9c6dc; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 46px; }
.footer-brand strong { color: var(--white); font-family: "Poppins", sans-serif; font-size: 1.05rem; }
.site-footer h4 { color: var(--white); font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 11px; font-size: .9rem; }
.site-footer ul li a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: .8rem;
  color: #7f8db0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 400;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 450;
  background: var(--navy);
  padding: 12px 16px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.15);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  padding: 13px;
  border-radius: 100px;
}

/* ---------- Utility ---------- */
.badge-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(11,95,209,.1);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-scroll { height: 240vh; }
  .paint-swatch-panel { right: 20px; bottom: 84px; min-width: 168px; padding: 14px 16px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 490;
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 36px 26px; }
  .section { padding: 60px 0; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 76px; }
  .hero-scroll { height: 220vh; }
  .hero-pin { height: 72vh; min-height: 700px; align-items: flex-start; padding-top: 76px; }
  .hero-photo-stack { inset: 0; background: var(--navy); }
  .house-photo { object-fit: cover; object-position: center 32%; }
  .hero-scrim { background: linear-gradient(180deg, rgba(10,28,58,.25) 0%, rgba(10,28,58,.45) 55%, rgba(10,28,58,.92) 100%); }
  .paint-swatch-panel { left: 20px; right: 20px; top: 480px; bottom: auto; flex-direction: row; align-items: center; justify-content: space-between; min-width: 0; padding: 12px 16px; }
  .scroll-cue { bottom: 20px; }
}
