/* ============================================================
   DIRTY DAWGS — Main Stylesheet
   Your Trusted Pet Waste Removers
   ============================================================ */

:root {
  --teal:        #3B5C45;
  --teal-dark:   #2C4534;
  --teal-light:  #EAF0EA;
  --teal-mid:    #6B9A7A;
  --gold:        #C0953A;
  --gold-dark:   #A07C2C;
  --gold-light:  #FBF3E0;
  --green:       #5B9968;
  --orange:      #C0953A;
  --text:        #2d2d2d;
  --text-mid:    #54595F;
  --text-muted:  #7A7A7A;
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --light-gray:  #f0f2f4;
  --dark:        #1E2E24;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --radius:      12px;
  --radius-sm:   8px;
  --max-w:       1180px;
  --font:        'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-slab:   'Playfair Display', Georgia, serif;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Shared section header ─────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}
.section-header--light h2 { color: #fff; }
.section-header--light p  { color: rgba(255,255,255,0.8); }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

@keyframes btn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.btn-primary {
  background: linear-gradient(105deg, var(--gold) 40%, #d9b96a 50%, var(--gold) 60%);
  background-size: 200% auto;
  color: #fff;
  border-color: var(--gold);
  animation: btn-shimmer 2.8s linear infinite;
  box-shadow: 0 4px 18px rgba(192,149,58,.35);
}
.btn-primary:hover  { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 6px 22px rgba(192,149,58,.5); animation: none; }

.btn-outline-teal        { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover  { background: var(--teal); color: #fff; }

.btn-outline-nav         { background: transparent; color: var(--teal); border-color: var(--teal); font-size: .88rem; padding: 8px 18px; }
.btn-outline-nav:hover   { background: var(--teal); color: #fff; }

.btn-white        { background: #fff; color: var(--teal-dark); border-color: #fff; }
.btn-white:hover  { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }

.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--gold);
  color: #fff;
  font-size: .88rem;
  padding: 10px 28px;
}
.ann-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ann-cta {
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .83rem;
  transition: background .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  border: 1.5px solid rgba(255,255,255,.5);
}
.ann-cta:hover { background: rgba(255,255,255,.35); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.12); }

.nav-wrap {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}

.nav-logo { flex-shrink: 0; line-height: 0; }
.logo-img  { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  list-style: none;
}
.nav-links a,
.nav-item > a {
  display: block;
  padding: 8px 13px;
  color: var(--text-mid);
  font-size: .92rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-item > a:hover  { color: var(--teal); background: var(--teal-light); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 350;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.has-drop.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 400;
  border-radius: 0;
}
.dropdown a:hover { color: var(--teal); background: var(--teal-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: #fff;
  padding: 70px 0 60px;
  overflow: hidden;
  position: relative;
}

/* ── Dog parade ─────────────────────────── */
.dog-parade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

.dog-runner {
  position: absolute;
  left: 0;
  display: block;
}
.dog-body {
  display: block;
  opacity: 0.13;
}

@keyframes run-across {
  from { transform: translateX(-120px); }
  to   { transform: translateX(calc(100vw + 120px)); }
}
@keyframes dog-bob {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-7px); }
}

.dog-runner { animation: run-across linear infinite; }
.dog-body   { animation: dog-bob ease-in-out infinite; }

.dog--1 { top:  5%; width: 44px;  animation-duration: 13s;  animation-delay:  0s; }
.dog--1 .dog-body { animation-duration: 0.50s; }

.dog--2 { top: 20%; width: 34px;  animation-duration:  9s;  animation-delay: -3s; }
.dog--2 .dog-body { animation-duration: 0.44s; }

.dog--3 { top: 38%; width: 50px;  animation-duration: 15s;  animation-delay: -8s; }
.dog--3 .dog-body { animation-duration: 0.55s; }

.dog--4 { top: 56%; width: 38px;  animation-duration: 11s;  animation-delay: -5s; }
.dog--4 .dog-body { animation-duration: 0.48s; }

.dog--5 { top: 73%; width: 42px;  animation-duration: 12s;  animation-delay: -1s; }
.dog--5 .dog-body { animation-duration: 0.52s; }

.dog--6 { top: 88%; width: 32px;  animation-duration: 10s;  animation-delay: -7s; }
.dog--6 .dog-body { animation-duration: 0.46s; }
.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
.hero-content h1 {
  font-family: var(--font-slab);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-region {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: .2px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.video-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 600;
  font-size: .95rem;
  transition: opacity .2s;
}
.video-link:hover { opacity: .75; }
.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 2px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.hero-dog-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mobile-photo { display: none; }
.hero-dog-img { width: 100%; max-width: 480px; }
.hero-mark-img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Hero zip-code form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.zip-input-group {
  display: inline-flex;
  align-items: stretch;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: #fff;
  width: fit-content;
}
.zip-input {
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  width: 105px;
  min-width: 0;
  background: transparent;
  flex-shrink: 0;
}
.zip-input::placeholder { color: var(--text-muted); }
.zip-input-group .btn {
  border-radius: 0 48px 48px 0;
  border: none;
  flex-shrink: 0;
  margin: 0;
}

/* ============================================================
   SERVICE AREA — Dark brand green, Georgia map
   ============================================================ */
.sa-section {
  background: var(--dark);
  padding: 80px 0;
  overflow: hidden;
}
.sa-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Left column */
.sa-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sa-eyebrow {
  display: inline-block;
  background: rgba(192,149,58,.18);
  color: var(--gold);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
}
.sa-left h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.sa-left > p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.sa-city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  list-style: none;
  margin-bottom: 32px;
}
.sa-city-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
}
.sa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Zip input on dark bg */
.zip-input-group--dark {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
}
.zip-input-group--dark .zip-input {
  background: transparent;
  color: #fff;
}
.zip-input-group--dark .zip-input::placeholder { color: rgba(255,255,255,.4); }

/* Right column: Georgia SVG */
.sa-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sa-map-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.5));
}
.ga-outline {
  fill: #2a4233;
  stroke: #5a9068;
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.ga-ref-txt {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  fill: rgba(255,255,255,.28);
  font-style: italic;
}
.ga-state-wm {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 6px;
  fill: rgba(255,255,255,.05);
  text-anchor: middle;
}
.ga-pin-lbl {
  font-family: 'Roboto', sans-serif;
  font-size: 9px;
  font-weight: 600;
  fill: rgba(255,255,255,.8);
}
.ga-pin-lbl--hero {
  font-size: 11px;
  font-weight: 800;
  fill: #fff;
}

/* ============================================================
   PROMISES
   ============================================================ */
.promises {
  background: var(--light-gray);
  padding: 70px 0;
  border-top: 1px solid #e5e8ec;
  border-bottom: 1px solid #e5e8ec;
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 240px;
  gap: 28px;
  align-items: start;
}
.promise-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}
.promise-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.promise-icon-wrap svg { width: 26px; height: 26px; }
.promise-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.promise-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.promise-dog-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.promise-dog { width: 100%; max-width: 220px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 90px 0;
  background: #fff;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 420px;
}
.about-text h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: .97rem;
}
.about-text .btn { margin-top: 8px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 90px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 36px 32px;
  border-top: 4px solid var(--gold);
  transition: box-shadow .2s;
}
.service-card--alt { border-top-color: var(--teal); }
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-slab);
  font-size: 1.4rem;
  color: var(--dark);
}
.service-card > p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: .95rem;
}
.service-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

/* ============================================================
   PROMO — FREE CLEANUP
   ============================================================ */
.promo-section {
  background: var(--dark);
  padding: 70px 0;
  overflow: hidden;
}
.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.promo-text {
  padding-bottom: 0;
}
.promo-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.promo-text h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.promo-text p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.promo-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo-logo-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-choose {
  padding: 90px 0;
  background: var(--light-gray);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.why-icon-wrap svg { width: 24px; height: 24px; }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  padding: 90px 0;
  background: #fff;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.area-card {
  background: #fff;
  border: 2px solid var(--teal-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.area-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.area-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  margin-top: 4px;
}
.area-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.area-card li { font-size: .85rem; color: var(--text-muted); padding-left: 12px; position: relative; }
.area-card li::before { content: '•'; position: absolute; left: 0; color: var(--teal); }
.area-link { font-size: .85rem; color: var(--teal); font-weight: 600; transition: opacity .2s; }
.area-link:hover { opacity: .7; }
.area-card--more {
  background: var(--teal-light);
  border-color: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.area-card--more h3 { text-align: center; }
.area-card--more p { font-size: .85rem; color: var(--text-muted); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 90px 0;
  background: var(--off-white);
}
.reviews-head {
  text-align: center;
  margin-bottom: 52px;
}
.reviews-head h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.overall-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: var(--shadow-sm);
}
.big-stars { font-size: 1.6rem; color: #f5a623; letter-spacing: 3px; }
.rating-detail { display: flex; flex-direction: column; line-height: 1.2; }
.rating-num { font-size: 1.8rem; font-weight: 700; color: var(--dark); }
.rating-of { font-size: .85rem; color: var(--text-muted); }
.rating-count { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card--featured { border-top-color: var(--gold); box-shadow: var(--shadow-sm); }
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card > p {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: .93rem;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; font-weight: 600; }
.reviewer span { font-size: .8rem; color: var(--gold); font-weight: 500; }

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-section {
  padding: 90px 0;
  background: #fff;
}
.community-header {
  text-align: center;
  margin-bottom: 48px;
}
.rescue-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.community-header h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 6px;
}
.community-sub {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.community-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: .97rem;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.community-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform .25s, box-shadow .25s;
}
.community-img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ============================================================
   REFERRAL
   ============================================================ */
.referral-section {
  padding: 90px 0;
  background: var(--light-gray);
}
.referral-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.referral-text h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.referral-tagline { color: var(--gold); font-size: 1.05rem; margin-bottom: 16px; }
.referral-text p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; font-size: .97rem; }
.referral-dog-wrap { display: flex; justify-content: center; align-items: center; }
.referral-dog { width: 100%; max-width: 400px; }

/* ============================================================
   SIGN UP CTA
   ============================================================ */
.signup-cta {
  padding: 90px 0;
  background: var(--dark);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-text h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-text p  { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 32px; font-size: .97rem; }
.cta-dog-wrap { display: flex; justify-content: center; align-items: center; }
.cta-dog { width: 100%; max-width: 380px; filter: brightness(1.05); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 90px 0;
  background: #fff;
}
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e8eaed;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q[aria-expanded="true"] { color: var(--teal); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-a.open {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-a p { color: var(--text-muted); font-size: .93rem; line-height: 1.75; }
.faq-dog-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.faq-dog { max-width: 180px; opacity: .85; }

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials-section {
  padding: 90px 0 60px;
  background: var(--dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-slab);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
}
.free-cleanup-banner {
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.free-cleanup-banner p { color: #fff; font-size: 1.1rem; }
.cred-badges {
  display: flex;
  justify-content: center;
}
.inc5000-badge { height: 72px; width: auto; filter: brightness(0) invert(1) opacity(.8); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  padding: 90px 0;
  background: var(--off-white);
}
.benefits-inner h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.benefit-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.benefit-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.benefit-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #162119;
  color: rgba(255,255,255,.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 28px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo { height: 46px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.65; margin-bottom: 24px; max-width: 260px; }
.footer-contact p {
  font-size: .88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact a:hover { color: var(--teal); }
.fc-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--gold);
}
.fc-icon svg { width: 14px; height: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--gold); color: #fff; }
.social-link svg { width: 16px; height: 16px; }

.footer-nav h4 {
  color: #fff;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--teal); }

.footer-bottom {
  padding: 20px 0;
  background: #0e1810;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-inc5000 { height: 40px; width: auto; filter: brightness(0) invert(1) opacity(.3); }

/* ============================================================
   PAGE HERO — sub-page dark header
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 84px 0 76px;
  text-align: center;
  overflow: hidden;
}
.page-hero-eyebrow {
  display: inline-block;
  background: rgba(192,149,58,.18);
  color: var(--gold);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--font-slab);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 16px;
  max-width: 720px;
}
.page-hero > .container > p,
.page-hero p.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.page-hero .zip-input-group { margin: 0 auto; }

/* ============================================================
   HOW IT WORKS — 3-step numbered section
   ============================================================ */
.hiw-section { padding: 90px 0; background: var(--light-gray); }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hiw-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.hiw-number {
  font-family: var(--font-slab);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.hiw-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.hiw-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SERVICE PLANS grid
   ============================================================ */
.plans-section { padding: 90px 0; background: var(--off-white); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.plan-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 22px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.plan-card--featured { border-top-color: var(--gold); box-shadow: var(--shadow-md); }
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan-freq {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.plan-card h3 { font-family: var(--font-slab); font-size: 1.25rem; color: var(--dark); margin-bottom: 12px; }
.plan-card > p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.plan-includes { list-style: none; margin-bottom: 26px; text-align: left; }
.plan-includes li {
  font-size: .84rem;
  color: var(--text);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--light-gray);
}
.plan-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 11px; height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

/* ============================================================
   VALUES grid (About page)
   ============================================================ */
.values-section { padding: 90px 0; background: #fff; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.value-icon {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 20px;
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-family: var(--font-slab); font-size: 1.2rem; color: var(--dark); margin-bottom: 12px; }
.value-card p  { font-size: .92rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   WHO WE SERVE (Commercial page)
   ============================================================ */
.serve-section { padding: 90px 0; background: var(--off-white); }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.serve-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 4px solid var(--teal);
  transition: box-shadow .2s, transform .2s;
}
.serve-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.serve-icon {
  width: 68px; height: 68px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin: 0 auto 18px;
}
.serve-icon svg { width: 32px; height: 32px; }
.serve-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.serve-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   LOCATION INTRO
   ============================================================ */
.location-intro { padding: 80px 0; background: #fff; }
.location-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-intro-text h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.location-intro-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: .97rem;
}
.location-services-list { list-style: none; margin: 20px 0 32px; }
.location-services-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .93rem; font-weight: 500; color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}
.location-services-list li span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.location-map-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.location-map-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Referral terms section — desktop spacing */
.ref-terms-section { padding: 60px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .area-card--more { grid-column: 1 / -1; max-width: 320px; justify-self: center; }
}

@media (max-width: 900px) {
  .sa-inner             { grid-template-columns: 1fr; }
  .sa-right             { order: -1; }
  .sa-map-svg           { max-width: 300px; }
  .sa-city-list         { grid-template-columns: repeat(3, 1fr); }
  .hiw-grid             { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr 1fr; }
  .serve-grid           { grid-template-columns: 1fr; }
  .location-intro-inner { grid-template-columns: 1fr; }
  .location-map-card    { display: none; }
  .plans-grid           { grid-template-columns: 1fr 1fr; }
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-dog-wrap      { display: none; }
  .promises-grid      { grid-template-columns: 1fr 1fr; }
  .promise-dog-wrap   { display: none; }
  .about-inner        { grid-template-columns: 1fr; }
  .about-img-wrap     { max-height: 300px; overflow: hidden; border-radius: var(--radius); }
  .about-img          { height: 300px; }
  .services-grid      { grid-template-columns: 1fr; }
  .promo-inner        { grid-template-columns: 1fr; }
  .promo-logo-wrap    { display: none; }
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .referral-inner     { grid-template-columns: 1fr; }
  .referral-dog-wrap  { display: none; }
  .cta-inner          { grid-template-columns: 1fr; }
  .cta-dog-wrap       { display: none; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .benefits-grid      { grid-template-columns: 1fr; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   MOBILE — 700px and below
   ============================================================ */
@media (max-width: 700px) {

  /* ── Navigation ─────────────────────── */
  .logo-img        { height: 58px; }
  .ann-bar         { text-align: center; font-size: .82rem; padding: 8px 16px; }
  .nav-links       { display: none; }
  .btn-outline-nav { display: none; }
  .hamburger       { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 16px 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    gap: 0;
    z-index: 200;
  }
  .nav-links.open .nav-item > a,
  .nav-links.open > a {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }
  /* Mobile dropdown — !important overrides all desktop specificity */
  .has-drop .dropdown {
    display: none !important;
  }
  .has-drop.open .dropdown {
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 6px 0 8px 20px !important;
    min-width: 0 !important;
    background: transparent !important;
    z-index: 1 !important;
  }
  .has-drop.open .dropdown a {
    padding: 10px 0 !important;
    font-size: .95rem !important;
    border-bottom: 1px solid #f5f5f5;
  }

  /* ── Global section padding ─────────── */
  .container { padding: 0 18px; }
  .hero,
  .promises,
  .about-section,
  .services-section,
  .why-choose,
  .areas-section,
  .reviews-section,
  .community-section,
  .referral-section,
  .signup-cta,
  .faq-section,
  .benefits-section,
  .sa-section,
  .hiw-section,
  .serve-section,
  .values-section,
  .plans-section,
  .location-intro  { padding: 48px 0; }
  .credentials-section { padding: 48px 0 40px; }
  .promo-section   { padding: 48px 0; }
  .page-hero       { padding: 48px 0 40px; }

  /* ── Section headers ────────────────── */
  .section-header  { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header p  { font-size: .92rem; }

  /* ── Hero ───────────────────────────── */
  .hero              { padding: 20px 0 44px; }
  .hero-inner        { display: flex; flex-direction: column; gap: 0; }
  .hero-region       { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; text-align: center; }
  .hero-content      { text-align: center; }
  .hero-content h1   { font-size: 2.9rem; font-weight: 800; line-height: 1.05; margin-bottom: 14px; }
  .hero-sub          { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; }
  .hero-form         { align-items: center; gap: 14px; }

  /* ── Mobile hero photo — pill card at top ── */
  .hero-mobile-photo {
    display: block;
    width: calc(100% - 0px);
    margin: 0 0 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
  }
  .hero-mobile-photo img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
  }

  /* ── Zip input — sleeker on mobile ─── */
  .zip-input-group {
    width: 100%;
    max-width: 340px;
  }
  .zip-input { width: 95px; font-size: .88rem; padding: 11px 14px; }
  .zip-input-group .btn { flex: 1; }

  /* ── Grids ──────────────────────────── */
  .why-grid       { grid-template-columns: 1fr; }
  .areas-grid     { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .promises-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }

  /* ── Cards ──────────────────────────── */
  .why-card      { padding: 22px 18px; }
  .promise-card  { padding: 24px 18px; }
  .review-card   { padding: 24px 18px; }
  .benefit-item  { padding: 22px 18px; }
  .hiw-card      { padding: 28px 20px 24px; }
  .service-card  { padding: 28px 22px; }
  .hiw-number    { font-size: 2.6rem; }

  /* ── About section ──────────────────── */
  .about-inner   { gap: 28px; }
  .about-text h2 { font-size: 1.5rem; }

  /* ── Service area ───────────────────── */
  .sa-city-list  { grid-template-columns: 1fr 1fr; }

  /* ── Stats ──────────────────────────── */
  .stat-number   { font-size: 2.8rem; }

  /* ── FAQ ────────────────────────────── */
  .faq-q         { font-size: .93rem; padding: 18px 0; }

  /* ── Promo ──────────────────────────── */
  .promo-text    { padding-bottom: 0; }
  .promo-text h2 { font-size: 1.8rem; }

  /* ── Footer ─────────────────────────── */
  .footer-top    { grid-template-columns: 1fr; gap: 28px; padding: 40px 18px 36px; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; gap: 12px; }
  .free-cleanup-banner  { flex-direction: column; text-align: center; }
  .footer-brand p       { max-width: 100%; }
  .footer-socials       { justify-content: flex-start; }

  /* ── Page heroes (sub-pages) ─────────── */
  .page-hero h1  { font-size: 1.7rem; }
  .page-hero > .container > p,
  .page-hero p.page-hero-sub { font-size: .95rem; margin-bottom: 24px; }

  /* ── Buttons — bigger tap targets ───── */
  .btn        { padding: 13px 24px; font-size: .93rem; }
  .btn-lg     { padding: 15px 32px; font-size: 1rem; }
  .qsubmit    { padding: 16px; font-size: 1rem; }

  /* ── CTA dog section ─────────────────── */
  .cta-text h2   { font-size: 1.6rem; }
  .cta-text p    { font-size: .93rem; }

  /* ── Referral ───────────────────────── */
  .referral-inner { gap: 32px; }
  .referral-text h2 { font-size: 1.5rem; }
  .ref-terms-section { padding: 48px 0; }
}

/* ============================================================
   SMALL PHONES — 480px and below
   ============================================================ */
@media (max-width: 480px) {

  /* Section padding tighter on very small screens */
  .hero,
  .about-section, .services-section, .why-choose,
  .areas-section, .reviews-section, .community-section,
  .referral-section, .signup-cta, .faq-section,
  .benefits-section, .sa-section, .hiw-section,
  .serve-section, .values-section, .plans-section,
  .location-intro, .credentials-section { padding: 36px 0; }
  .page-hero { padding: 36px 0 30px; }
  .container { padding: 0 16px; }

  /* Grids */
  .areas-grid   { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .sa-city-list { grid-template-columns: 1fr 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }

  /* Form rows collapse */
  .srow, .nf-row, .ref-row { grid-template-columns: 1fr !important; gap: 0 !important; }

  /* Typography */
  .hero-region     { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
  .hero-content h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.05; }

  /* Hero zip: two fully independent pill elements */
  .hero-form .zip-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
    background: transparent;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  .hero-form .zip-input {
    width: 100%;
    border-radius: 50px;
    border: 2px solid #dde0e4;
    padding: 16px 22px;
    font-size: 1rem;
    background: #fff;
    color: var(--text);
    box-sizing: border-box;
  }
  .hero-form .zip-input:focus { border-color: var(--gold); outline: none; }
  .hero-form .zip-input-group .btn {
    width: 100%;
    border-radius: 50px;
    padding: 16px 22px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
  }
  .page-hero h1    { font-size: 1.5rem; }
  .stat-number     { font-size: 2.4rem; }
}
