/* =========================================================
   Pawsitive Pet Waste Removal
   Serving Utah County & Salt Lake County, UT
   Single external stylesheet — all site styles
   Palette: cream #F5F0E0 / forest green #2D5A27 / brown #8B6914
   ========================================================= */

:root {
  --cream: #F5F0E0;
  --surface: #FCFAF3;
  --green: #2D5A27;
  --green-dark: #234A1F;
  --brown: #8B6914;
  --brown-light: #B8923A;
  --ink: #1E2A1B;
  --muted: #6B6256;
  --star: #E0A526;
  --leaf: #4F8B3F;
  --white: #ffffff;
  --line: #E4DCC6;
  --shadow-sm: 0 2px 8px rgba(30, 42, 27, .08);
  --shadow-md: 0 10px 30px rgba(30, 42, 27, .12);
  --shadow-lg: 0 20px 50px rgba(30, 42, 27, .18);
  --radius: 16px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  /* Full-height layout so the footer always reaches the bottom of the viewport,
     even when page content is shorter than the screen. */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1 0 auto; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--brown); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--green); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream); }
.section--surface { background: var(--surface); }
.section--green { background: var(--green); color: #EAF0E6; }
.section--green h2, .section--green h3 { color: var(--white); }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brown); font-size: .82rem; margin-bottom: .6rem;
}
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center; line-height: 1.1;
}
.btn--primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn--secondary:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn--brown { background: var(--brown); color: var(--white); }
.btn--brown:hover { background: var(--brown-light); color: var(--white); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--green); }
.btn--light:hover { background: var(--cream); color: var(--green-dark); transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 250, 243, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; max-width: 1320px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 72.5px; width: auto; object-fit: contain; border: none; background: none; padding: 0; box-shadow: none; outline: none; }
.brand span { font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 1.05rem; line-height: 1.1; }
.nav { display: flex; align-items: center; gap: 4px; flex: 1 1 auto; justify-content: space-between; }
.nav a.navlink {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--ink);
  padding: 9px 14px; border-radius: 999px; white-space: nowrap; flex: 0 0 auto;
}
.nav a.navlink:hover, .nav a.navlink[aria-current="page"] { color: var(--green); background: rgba(45, 90, 39, .08); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { white-space: nowrap; min-width: 195px; justify-content: center; }
.header-call { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; color: var(--green); white-space: nowrap; }
.header-call svg { width: 18px; height: 18px; fill: var(--green); }
.hamburger {
  display: none; background: var(--green); border: none; border-radius: 12px;
  width: 46px; height: 46px; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2.5px; background: #fff; margin: 3px auto; border-radius: 2px; transition: .25s; }
.hamburger.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Mobile call bar ---------- */
.mobile-callbar { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(rgba(35,74,31,.74), rgba(35,74,31,.74)), url("images/home/dog-waste-removal-utah-county-hero.webp") center / cover no-repeat;
  padding: clamp(72px, 12vh, 128px) 0; overflow: hidden;
  min-height: calc(100vh - 93.5px); display: flex; align-items: center; position: relative;
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 20px; z-index: 2; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  animation: heroScrollBounce 1.8s ease-in-out infinite;
}
.hero-scroll-label { font-family: var(--font-head); font-weight: 600; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; opacity: .85; }
.hero-scroll svg { width: 30px; height: 30px; opacity: .85; }
@keyframes heroScrollBounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-grid > div { max-width: 760px; }
.hero-photo { display: flex; justify-content: center; align-items: center; margin-inline: auto; transform: translateX(100px); }
.hero-photo img {
  width: min(380px, 78vw); height: min(380px, 78vw);
  border-radius: 50%; object-fit: cover; object-position: center 82%;
  border: 6px solid #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
}
.hero .eyebrow { color: #F5F0E0; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .line-light { display: block; font-weight: 400; color: #ffffff; }
.hero h1 .line-heavy { display: block; font-weight: 800; color: #ffffff; }
.hero p.lead { margin-bottom: 26px; max-width: 600px; color: rgba(255,255,255,.94); }
.hero .btn-row { margin-bottom: 22px; }
.hero .note { color: rgba(255,255,255,.92); font-family: var(--font-head); font-weight: 600; }
.hero .note .stars { color: var(--star); letter-spacing: 1px; margin-right: 6px; }
.hero-media { position: relative; display: flex; justify-content: center; }
.hero-circle {
  position: relative; width: min(440px, 90%); aspect-ratio: 1 / 1; border-radius: 50%;
  border: 10px solid var(--green); box-shadow: var(--shadow-lg); overflow: hidden;
  outline: 4px solid var(--brown); outline-offset: 8px;
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 6%; left: -6%; background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; gap: 10px; align-items: center;
}
.hero-badge .stars { color: var(--star); font-size: 1.05rem; letter-spacing: 1px; }
.hero-badge strong { font-family: var(--font-head); color: var(--green); display: block; font-size: .95rem; }
.hero-badge small { color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green); color: #EAF0E6; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; padding-top: 18px; padding-bottom: 18px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.trust-item .stars { color: var(--star); letter-spacing: 1px; }
.trust-item svg { width: 20px; height: 20px; fill: var(--brown-light); }

/* ---------- Home services overview (icon row) ---------- */
.svc-overview { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.svc-mini {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; text-align: center; transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column; align-items: center;
}
.svc-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(45,90,39,.10); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.svc-icon svg { width: 32px; height: 32px; fill: var(--green); }
.svc-mini h3 { font-size: 1.08rem; margin-bottom: 6px; }
.svc-mini p { font-size: .92rem; color: var(--muted); margin-bottom: 12px; }
.svc-mini a { font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-top: auto; }

/* ---------- Services HUB — alternating zig-zag cards ---------- */
.svc-hub { display: flex; flex-direction: column; gap: 36px; }
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.svc-row .svc-photo { position: relative; }
.svc-row .svc-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-row .svc-body { padding: 38px; display: flex; flex-direction: column; }
.svc-row:nth-child(even) .svc-photo { order: 2; }
.svc-row h2 { margin-bottom: 12px; }
.svc-row .svc-body p { color: var(--muted); }
.checklist { list-style: none; padding: 0; margin: 6px 0 20px; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 8px; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--leaf);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.svc-row .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Generic feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.feature .svc-icon { margin-bottom: 14px; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step); font-family: var(--font-head); font-weight: 800;
  color: var(--white); background: var(--brown); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Service page hero / split ---------- */
.page-hero { background: var(--green); color: #EAF0E6; padding: 54px 0; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: #D7E2D2; max-width: 680px; }
.page-hero .breadcrumbs { color: #BFD0B9; }
.page-hero .breadcrumbs a { color: #EAF0E6; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.prose h2 { margin: 28px 0 12px; }
.prose h3 { margin: 22px 0 8px; color: var(--brown); }
.prose p { color: var(--muted); }
.prose ul { color: var(--muted); }
.prose p.also-serving {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--ink);
  opacity: .72;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumbs a { color: var(--brown); }
.breadcrumbs span { margin: 0 6px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testi .stars { color: var(--star); letter-spacing: 1px; margin-bottom: 10px; }
.testi p { font-style: italic; color: var(--ink); }
.testi .who { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--green); }
.testi .who small { display: block; font-weight: 400; color: var(--muted); font-family: var(--font-body); }

/* ---------- Reviews carousel ---------- */
.review-rating { margin-top: 10px; font-family: var(--font-head); font-weight: 600; color: var(--muted); }
.review-rating .stars { color: var(--star); letter-spacing: 2px; margin-right: 8px; }
.review-carousel { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden; padding-bottom: 14px; }
.review-track { display: flex; transition: transform .55s ease; }
.review-card {
  flex: 0 0 100%; box-sizing: border-box; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 38px 34px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.review-card .stars { color: var(--star); letter-spacing: 3px; font-size: 1.3rem; margin-bottom: 16px; }
.review-text { font-style: italic; color: var(--ink); font-size: 1.12rem; line-height: 1.7; margin: 0 0 22px; max-width: 640px; }
.review-author { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.review-name { font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 1.08rem; }
.review-via { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .9rem; }
.review-via svg { width: 16px; height: 16px; }
.review-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.review-dot { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: var(--line); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.review-dot:hover { background: var(--brown-light); }
.review-dot.active { background: var(--green); transform: scale(1.25); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--green);
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--brown); transition: transform .2s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a div { padding: 0 22px 18px; color: var(--muted); }

/* ---------- Cities ---------- */
.cities { columns: 4; column-gap: 24px; max-width: 980px; margin: 0 auto; }
.cities li { list-style: none; padding: 5px 0; break-inside: avoid; color: var(--ink); }
.cities li::before { content: "🐾"; margin-right: 8px; font-size: .85rem; }
.cities-wrap ul { padding-left: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #D7E2D2; max-width: 620px; margin: 0 auto 22px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); }
.gallery-grid img { width: 100%; height: auto; transition: transform .3s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }

/* ---------- Before / After slider ---------- */
.ba-wrap { max-width: 760px; margin: 0 auto; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); user-select: none; touch-action: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-label { position: absolute; top: 12px; z-index: 4; background: rgba(30,42,27,.78); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .82rem; padding: 5px 12px; border-radius: 999px; }
.ba-label.before { left: 12px; }
.ba-label.after { right: 12px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 5; opacity: 0; cursor: ew-resize; margin: 0; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; z-index: 3; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.1); pointer-events: none; }
.ba-handle::after {
  content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--shadow-md);
}

/* ---------- Contact / Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,90,39,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.info-list svg { width: 24px; height: 24px; fill: var(--green); flex: 0 0 24px; margin-top: 3px; }
.info-list strong { display: block; font-family: var(--font-head); color: var(--green); }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.note { font-size: .9rem; color: var(--muted); }

/* ---------- About ---------- */
.about-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dark); color: #CFE0CA; padding: 32px 0 18px; border-top: 3px solid var(--brown-light); }
.site-footer .container { max-width: none; padding: 0 40px; }
.site-footer a { color: #E7F0E3; }
.site-footer a:hover { color: var(--brown-light); }
.footer-grid { display: grid; grid-template-columns: auto auto max-content max-content max-content; justify-content: center; gap: 32px; margin-bottom: 36px; }
.footer-grid > div:nth-child(n+3) { border-left: 1px solid rgba(245, 240, 224, .13); padding-left: 16px; }
.footer-contact { overflow-wrap: anywhere; }
.footer-grid h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-brand { text-align: center; }
.footer-brand img { height: 84px; width: auto; margin: 0 auto 14px; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-nap { font-style: normal; line-height: 1.7; }
.footer-nap strong { color: #fff; display: block; margin-bottom: 3px; }
.footer-nap .nap-line { display: block; }
.footer-nap .nap-note { font-style: italic; opacity: .85; }
.footer-nap .nap-hours { margin-top: 10px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; }
.footer-social a { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .92rem; }
.footer-social svg { width: 19px; height: 19px; }
.footer-social--areas { border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 20px 5% 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .9rem; }
ul.footer-cities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 10px; font-size: .8rem; line-height: 1.5; margin: 0; }
ul.footer-cities li { margin-bottom: 0; white-space: nowrap; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 130;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--star); color: var(--green);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.1;
  padding: 15px 26px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 22px rgba(30, 42, 27, .28);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, opacity .35s ease;
  animation: floatBob 3s ease-in-out infinite;
}
.floating-cta:hover { background: var(--brown-light); color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(30, 42, 27, .34); animation-play-state: paused; }
.floating-cta:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.floating-cta.is-hidden { opacity: 0; pointer-events: none; }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 767.98px) { .floating-cta { display: none; } }
@media (prefers-reduced-motion: reduce) { .floating-cta { animation: none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .btn-row { justify-content: center; }
  .hero-media { order: -1; }
  .hero-photo { transform: none; }
  .svc-overview { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .testi-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:nth-child(n+3) { border-left: none; padding-left: 0; }
  .cities { columns: 3; }
  .gallery-grid { columns: 2; }
  .split, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-photo { order: 0; }
  .svc-row .svc-photo { min-height: 240px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; overflow-x: hidden; }
  .section { padding: 52px 0; }
  /* Header: smaller logo + hide the in-header phone (still available in the sticky call bar)
     so the logo and hamburger fit with no wrapping or overflow. Header ~64px = matches nav offset. */
  .brand img { height: 43px; }
  .header-call { display: none; }
  /* Homepage hero fits below the shorter mobile header; SCROLL indicator stays visible. */
  .hero { min-height: calc(100vh - 67px); padding-top: 28px; padding-bottom: 56px; }
  /* Comfortable tap targets for buttons. */
  .btn { min-height: 44px; }
  .nav {
    position: fixed; inset: 67px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 14px 20px 22px;
    gap: 4px; transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); }
  .nav a.navlink { padding: 13px 14px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .feature-grid, .testi-grid, .value-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cities { columns: 2; }
  .gallery-grid { columns: 1; }
  .cta-band { padding: 34px 22px; }
  .svc-row .svc-body { padding: 26px; }
  /* sticky mobile call bar */
  .mobile-callbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
    background: var(--green); padding: 10px 14px; gap: 10px; box-shadow: 0 -4px 16px rgba(0,0,0,.18);
  }
  .mobile-callbar a { flex: 1; }
  .mobile-callbar .btn { width: 100%; padding: 13px; }
  body { padding-bottom: 66px; }
}

@media (max-width: 420px) {
  .svc-overview { grid-template-columns: 1fr; }
  .cities { columns: 1; }
  .hero-badge { left: 2%; }
  ul.footer-cities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
