/* =========================================================================
   Sprinkler Repair Guy — Theme Stylesheet
   Direct port of the React + Tailwind site.
   ========================================================================= */

:root {
	--navy:       #0C3052;
	/* "teal" var name kept for code-stability — actual color is green (matches the .com in the logo) */
	--teal:       #2EA948;
	--cream:      #F4F8F2;
	--dark-navy:  #071E34;
	--btn-r:      9px;
	--ink:        #1A1A1A;
	--gray-700:   #444;
	--gray-600:   #525252;
	--gray-500:   #6b7280;
	--gray-400:   #9CA3AF;
	--gray-300:   #D8E8F0;
	--gray-200:   #E2EDF3;
	--gray-100:   #EEF4F8;
}

*, *::before, *::after { box-sizing: border-box; }
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	/* Stop the sticky header from covering #services / #faq / etc. when jumping to anchors. */
	scroll-padding-top: 110px;
}
body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	min-width: 320px;
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.barlow { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; line-height: 1; }
.lora-italic { font-family: 'Lora', serif; font-style: italic; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }

/* ----- Top bar + sticky header ----- */
.topbar { background: var(--dark-navy); color: #fff; text-align: center; padding: .625rem 1rem; font-size: 14px; font-weight: 500; }
.topbar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.topbar a:hover { color: #fcd34d; }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--cream); transition: box-shadow .25s, border-color .25s; border-bottom: 2px solid transparent; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.08); border-bottom-color: #E8E4DA; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.site-logo img { height: 56px; width: auto; max-width: 320px; object-fit: contain; display: block; }
.site-nav { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .site-nav { display: flex; } }
.site-nav a {
	font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; color: #444;
	border-bottom: 2px solid transparent; padding-bottom: 2px; transition: color .15s, border-color .15s;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--navy); border-bottom-color: var(--teal); }
.header-right { display: flex; align-items: center; gap: .75rem; }
.header-phone { display: none; align-items: center; gap: .5rem; font-weight: 700; color: var(--navy); font-size: 16px; }
@media (min-width: 1024px) { .header-phone { display: inline-flex; } }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; border-radius: var(--btn-r); padding: .75rem 1.5rem; font-size: 16px; line-height: 1; transition: opacity .15s, background .15s, color .15s; border: none; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { opacity: .92; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); }
.btn-lg { padding: 1rem 2rem; font-size: 18px; }
.btn-xl { padding: 1.25rem 3rem; font-size: 22px; }
.btn-block { width: 100%; padding: .875rem; font-size: 18px; }
.btn-icon svg { width: 18px; height: 18px; flex-shrink: 0; }

.menu-toggle { display: inline-flex; align-items: center; justify-content: center; padding: .5rem; background: transparent; border: 0; color: var(--navy); }
@media (min-width: 768px) { .menu-toggle { display: none; } }
.mobile-menu { display: none; border-top: 1px solid #E8E4DA; background: var(--cream); }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 1rem 1.5rem; border-bottom: 1px solid #E8E4DA; font-weight: 600; text-transform: uppercase; font-size: 14px; color: #444; }
.mobile-menu a.is-active { color: var(--navy); }
.mobile-menu__cta { padding: 1rem 1.5rem; display: grid; gap: .75rem; }

/* ----- Eyebrow ----- */
.eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.eyebrow-bar { width: 40px; height: 4px; background: var(--teal); }
.eyebrow span { font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .2em; }
.eyebrow.center { justify-content: center; }
.eyebrow.center .eyebrow-bar:last-child { display: inline-block; }

/* ----- Section helpers ----- */
.section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }
.section-cream { background: var(--cream); }
.section-light { background: var(--gray-100); }
.section-navy { background: var(--navy); color: #fff; }
.section-dark { background: var(--dark-navy); color: #fff; }

.h-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--teal); }

.h-display {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
	color: var(--navy);
	font-size: clamp(40px, 6vw, 80px);
	margin: 0 0 1rem;
}
.h-display.on-dark { color: #fff; }
.h-display .accent { color: var(--teal); }
.h-display.huge { font-size: clamp(52px, 8vw, 110px); }
.h-section {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.04;
	color: var(--navy);
	font-size: clamp(36px, 4.5vw, 60px);
	margin: 0 0 1.25rem;
}
.h-section.on-dark { color: #fff; }
.h-section .accent { color: var(--teal); }
.h-block {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	color: var(--navy);
	font-size: clamp(28px, 3vw, 40px);
	margin: 0 0 1rem;
}

p.lead { font-size: 18px; color: var(--gray-600); font-weight: 300; line-height: 1.6; }

/* ----- Card primitives ----- */
.card { background: #fff; border-radius: 18px; border: 1px solid var(--gray-300); padding: 1.75rem; }
.card-flat { background: #fff; border-radius: 16px; padding: 1.5rem; }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card h3, .card .card-title { font-weight: 700; color: var(--navy); margin: 0 0 .5rem; font-size: 17px; }
.card p { color: var(--gray-500); font-size: 14px; line-height: 1.6; margin: 0; }

.pill { display: inline-flex; align-items: center; gap: .25rem; padding: .375rem .625rem; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.pill-soft { background: rgba(21,148,191,.1); color: var(--teal); }
.pill-outline { background: #fff; border: 1px solid #C8DDE8; color: var(--navy); padding: .375rem .875rem; }

/* ----- Grids ----- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ----- Hero -----
   NOTE: .hero-split is applied to the same element as .container, so we must
   only set padding-top / padding-bottom (NOT the shorthand) — otherwise we
   wipe the horizontal padding from .container and the content hits the edges. */
.hero-split { display: grid; gap: 3rem; align-items: center; padding-top: 4rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .hero-split { grid-template-columns: repeat(2, 1fr); padding-top: 5rem; padding-bottom: 7rem; } }
.hero-image-wrap { position: relative; }
.hero-image-wrap::before { content: ""; position: absolute; top: -2rem; right: -2rem; width: 90%; aspect-ratio: 1; background: rgba(12,48,82,.08); border-radius: 50%; z-index: 0; }
.hero-image { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: #fff; padding: 1rem 1.25rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.hero-badge-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 38px; color: var(--navy); line-height: 1; }
.hero-badge-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gray-500); margin-top: .25rem; }

.trust-row { display: flex; flex-wrap: wrap; gap: 1.5rem; font-weight: 600; font-size: 14px; color: var(--gray-700); margin-top: 2rem; }
.trust-row .ti { display: inline-flex; align-items: center; gap: .5rem; }
.trust-row svg { color: var(--navy); width: 16px; height: 16px; }

/* ----- Wave dividers (removed per request) ----- */
.wave { display: none; }

/* ----- Inner-page hero (navy) ----- */
.page-hero { background: var(--navy); color: #fff; padding: 5rem 0 7rem; position: relative; overflow: hidden; }
.page-hero .h-display { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.65); }
.page-hero .wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* ----- Service cards (homepage) ----- */
.service-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 5px 18px rgba(0,0,0,.06); transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: 0 16px 36px rgba(0,0,0,.12); }
.service-card__media { position: relative; height: 200px; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), transparent 60%); }
.service-card__icon { position: absolute; bottom: 1rem; left: 1rem; width: 40px; height: 40px; border-radius: 999px; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; z-index: 1; }
.service-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; color: var(--navy); text-transform: uppercase; line-height: 1.1; margin: 0 0 .5rem; }
.service-card__body p { color: var(--gray-500); font-size: 14px; line-height: 1.6; flex: 1; margin: 0; }
.service-card__more { display: inline-flex; align-items: center; gap: .25rem; margin-top: 1rem; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); }

/* ----- Problems list (navy section) ----- */
.problems-list { display: grid; }
.problems-list .row { display: flex; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.problems-list .row:first-child { border-top: 0; }
.problems-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-top: .65rem; flex-shrink: 0; }
.problems-list .row strong { color: #fff; display: block; font-size: 16px; margin-bottom: .25rem; }
.problems-list .row span { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.6; }

/* ----- Trust column (right side) ----- */
.trust-tile { display: flex; gap: 1.25rem; align-items: center; padding: 1.25rem 1.5rem; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); margin-bottom: 1rem; }
.trust-tile__icon { width: 48px; height: 48px; border-radius: 999px; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-tile__label { color: #fff; font-weight: 700; font-size: 16px; }
.trust-tile__detail { color: rgba(255,255,255,.5); font-size: 14px; margin-top: .25rem; }

/* ----- Brands strip ----- */
.brands { background: var(--cream); padding: 4rem 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; text-align: center; }
.brands p { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .25em; color: var(--gray-400); margin-bottom: 2rem; }
.brands .brand-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 4rem; }
.brand-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; font-size: clamp(28px, 3.5vw, 44px); color: #C5BFB0; transition: color .15s; }
.brand-name:hover { color: var(--navy); }

/* ----- Reviews section (rotator) ----- */
.review-rotator { position: relative; min-height: 280px; padding-top: 1rem; }
.review-rotator::before { content: '"'; position: absolute; top: -1.5rem; left: -1rem; font-family: 'Lora', serif; font-size: 160px; line-height: 1; color: var(--teal); opacity: .15; pointer-events: none; }
.review-rotator__quote { color: #fff; font-family: 'Lora', serif; font-style: italic; font-size: clamp(20px, 2.8vw, 30px); line-height: 1.55; margin: 0 0 2.5rem; position: relative; z-index: 1; }
.review-rotator__byline { display: flex; align-items: center; gap: 1rem; }
.review-rotator__byline .bar { width: 40px; height: 1px; background: var(--teal); }
.review-rotator__author { color: #fff; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .14em; }
.review-rotator__city { color: rgba(255,255,255,.4); font-size: 12px; margin-top: .15rem; }
.review-rotator__nav { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; }
.review-rotator__nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.6); display: inline-flex; align-items: center; justify-content: center; }
.review-rotator__nav button:hover { color: #fff; border-color: rgba(255,255,255,.6); }
.review-rotator__dots { display: flex; gap: .5rem; }
.review-rotator__dots button { width: 8px; height: 8px; padding: 0; border-radius: 4px; background: rgba(255,255,255,.25); border: none; transition: width .2s; }
.review-rotator__dots button.is-active { width: 28px; background: var(--teal); }

/* ----- Reviews grid ----- */
.review-card { background: #fff; border-radius: 18px; padding: 1.75rem; border: 1px solid var(--gray-300); display: flex; flex-direction: column; height: 100%; }
.review-card__stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.review-card__stars span { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); }
.review-card__text { color: var(--gray-600); font-size: 14px; line-height: 1.6; font-family: 'Lora', serif; font-style: italic; flex: 1; margin: 0 0 1.5rem; }
.review-card__byline { padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.review-card__author { color: var(--navy); font-weight: 700; font-size: 14px; }
.review-card__city { color: var(--gray-400); font-size: 12px; margin-top: .15rem; }

/* ----- FAQ accordion ----- */
.faq-list { display: grid; gap: .75rem; }
.faq-item { background: #fff; border-radius: 14px; border: 1px solid var(--gray-200); overflow: hidden; }
.faq-item.is-open { border-color: var(--teal); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: transparent; border: 0; font-weight: 700; font-size: 16px; color: var(--ink); cursor: pointer; }
.faq-item.is-open .faq-q { color: var(--navy); }
.faq-q__chev { width: 32px; height: 32px; border-radius: 999px; background: #F0EDE5; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: #6b7280; transition: background .15s, color .15s, transform .15s; }
.faq-item.is-open .faq-q__chev { background: var(--navy); color: #fff; transform: rotate(180deg); }
.faq-a { padding: 0 1.75rem 1.5rem; color: var(--gray-500); font-size: 14px; line-height: 1.7; display: none; }
.faq-item.is-open .faq-a { display: block; }

/* ----- City list ----- */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 640px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
.city-card { display: flex; align-items: center; justify-content: space-between; gap: .5rem; background: #fff; border-radius: 14px; border: 1px solid var(--gray-300); padding: .875rem 1rem; transition: border-color .15s, box-shadow .15s; }
.city-card:hover { border-color: var(--teal); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.city-card .name { font-size: 14px; font-weight: 600; color: var(--navy); }
.city-card .meta { font-size: 12px; color: var(--gray-400); margin-top: .15rem; }

.city-pill { display: inline-flex; align-items: center; padding: .5rem 1rem; border-radius: 999px; background: #fff; border: 1px solid #C8DDE8; color: var(--navy); font-size: 14px; font-weight: 600; }
.city-pill:hover { border-color: var(--teal); }

/* ----- City list inline (homepage) ----- */
.city-inline { display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem 1rem; }
@media (min-width: 640px) { .city-inline { grid-template-columns: repeat(3, 1fr); } }
.city-inline a { display: flex; align-items: center; gap: .5rem; padding: .25rem 0; font-size: 14px; color: var(--gray-600); }
.city-inline a:hover { color: var(--ink); }
.city-inline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ----- Blog ----- */
.blog-card { background: #fff; border-radius: 18px; border: 1px solid var(--gray-300); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,.08); }
.blog-card__bar { height: 4px; background: var(--teal); }
.blog-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-size: 12px; color: var(--gray-400); }
.blog-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; font-size: 21px; color: var(--navy); line-height: 1.15; margin: 0 0 .75rem; }
.blog-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin: 0 0 1.25rem; flex: 1; }
.blog-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); margin-top: auto; font-size: 12px; color: var(--gray-400); }
.blog-card__foot .read { color: var(--teal); font-weight: 700; display: inline-flex; align-items: center; gap: .25rem; }

.blog-featured { display: grid; grid-template-columns: 1fr; border-radius: 18px; overflow: hidden; border: 1px solid var(--gray-300); }
@media (min-width: 768px) { .blog-featured { grid-template-columns: 1fr 1fr; } }
.blog-featured__left { background: var(--navy); color: #fff; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__left h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; line-height: 1.1; font-size: clamp(28px, 3vw, 40px); margin: 1rem 0 1rem; }
.blog-featured__left p { color: rgba(255,255,255,.65); margin: 0 0 1.5rem; font-size: 14px; line-height: 1.65; }
.blog-featured__right { background: var(--gray-100); padding: 3rem; display: flex; align-items: center; justify-content: center; }

.blog-article { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.blog-article h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; color: var(--navy); margin: 2.5rem 0 1rem; font-size: clamp(22px, 2.5vw, 28px); }
.blog-article p { color: var(--gray-600); font-size: 17px; line-height: 1.7; margin-bottom: 1rem; }
.blog-article hr { margin: 2rem 0; border: 0; border-top: 1px solid var(--gray-300); }
.blog-article a { color: var(--teal); text-decoration: underline; }

.blog-sidebar { display: grid; gap: 1.25rem; position: sticky; top: 7rem; }
.blog-sidebar .panel { background: #fff; border-radius: 18px; padding: 1.5rem; border: 1px solid var(--gray-300); }
.blog-sidebar .panel p.label { font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--navy); margin: 0 0 .75rem; }
.blog-sidebar .panel p { font-size: 14px; color: var(--gray-500); margin-bottom: 1rem; }

@media (min-width: 1024px) {
	.blog-layout { display: grid; grid-template-columns: 1fr 240px; gap: 3rem; align-items: start; }
}

/* ----- Footer ----- */
.site-footer { background: var(--dark-navy); color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.07); }
.site-footer .container { padding-top: 4rem; padding-bottom: 4rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .site-footer .container { grid-template-columns: repeat(4, 1fr); } }
.site-footer h4 { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; margin: 0 0 1.25rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: .5rem; }
.site-footer a { color: rgba(255,255,255,.4); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer img.logo { height: 60px; width: auto; max-width: 320px; filter: brightness(0) invert(1); margin-bottom: 1rem; display: block; }
.site-footer .more { color: var(--teal); font-size: 12px; font-weight: 700; }
.site-footer .quote { font-family: 'Lora', serif; font-style: italic; color: rgba(255,255,255,.3); font-size: 14px; margin: 0 0 1.5rem; }
.site-footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.2); font-size: 12px; }
.site-footer-bottom .links { display: flex; gap: 1.5rem; }
.site-footer-bottom .links a:hover { color: rgba(255,255,255,.5); }

/* ----- Form (request service) ----- */
.form-section { padding: 4rem 0; background: var(--cream); }
.form-section .form-wrap { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.form-block { margin-bottom: 3rem; }
.form-block h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; font-size: 28px; color: var(--navy); border-bottom: 1px solid var(--gray-300); padding-bottom: 1rem; margin: 0 0 1.5rem; }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.form-row label, .form-legend { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: .375rem; padding: 0; }
.form-legend { font-family: inherit; }
.form-row input[type=text], .form-row input[type=email], .form-row input[type=tel], .form-row select, .form-row textarea {
	width: 100%; padding: .75rem 1rem; border-radius: 12px; border: 1px solid var(--gray-300); background: #fff; color: var(--ink); font-size: 14px;
	font-family: 'Inter', sans-serif; outline: none; transition: border-color .15s;
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--teal); }
.form-row .req { color: var(--teal); }
.form-row .err { color: #ef4444; font-size: 12px; margin-top: .25rem; }

.radio-group { display: flex; flex-wrap: wrap; gap: .75rem; }
.radio-group label { display: inline-flex; align-items: center; padding: .625rem 1rem; border-radius: 12px; border: 1px solid var(--gray-300); background: #fff; color: var(--gray-700); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.radio-group input { display: none; }
.radio-group input:checked + span { color: #fff; }
.radio-group label:has(input:checked) { background: var(--teal); border-color: var(--teal); color: #fff; }

.form-foot { background: #fff; border-radius: 18px; padding: 1.75rem; border: 1px solid var(--gray-300); }
.form-foot p { color: var(--gray-400); font-size: 14px; line-height: 1.6; margin: 0 0 1.5rem; }
.form-foot .row { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 640px) { .form-foot .row { flex-direction: row; align-items: center; } }
.form-foot a { color: var(--navy); font-weight: 700; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ----- Misc ----- */
.spacer-sm { height: 1rem; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.stat-pill { display: inline-flex; align-items: center; gap: .75rem; padding: .75rem 1.25rem; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.stat-pill .num { color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; line-height: 1; }
.stat-pill .lbl { color: rgba(255,255,255,.5); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }

.timeline { position: relative; padding-left: 0; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.1); }
.timeline-row { position: relative; padding-left: 4rem; padding-bottom: 2.5rem; }
.timeline-row:last-child { padding-bottom: 0; }
.timeline-row .marker { position: absolute; left: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 14px; }
.timeline-row .year { color: var(--teal); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; margin-bottom: .25rem; }
.timeline-row p { color: rgba(255,255,255,.6); font-size: 16px; margin: 0; line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: #fff; border-radius: 18px; border: 1px solid var(--gray-300); padding: 1.75rem; }
.value-card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.value-card h3 { color: var(--navy); font-weight: 700; font-size: 18px; margin: 0 0 .5rem; }
.value-card p { color: var(--gray-500); font-size: 14px; line-height: 1.6; margin: 0; }

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-grid .tile { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 1.25rem; }
.stat-grid .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; color: var(--navy); font-size: 36px; line-height: 1; }
.stat-grid .lbl { font-size: 14px; color: var(--gray-500); margin-top: .25rem; }

.cta-section { background: var(--dark-navy); color: #fff; text-align: center; padding: 6rem 1.5rem; }
.cta-section h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; line-height: 1; color: #fff; font-size: clamp(42px, 6vw, 80px); margin: 0 0 1.5rem; }
.cta-section h2 .accent { color: var(--teal); }
.cta-section p { color: rgba(255,255,255,.6); font-size: 18px; margin: 0 0 2.5rem; }

.legal-section { padding: 4rem 0; }
.legal-section .wrap { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; color: var(--gray-500); font-size: 14px; line-height: 1.7; }
.legal-section h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; color: var(--navy); font-size: 24px; margin: 2rem 0 1rem; }
.legal-section ul { padding-left: 1.25rem; }
.legal-section li { margin-bottom: .25rem; }
.legal-section strong { color: var(--gray-700); }

.notice-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 1.25rem; border-radius: 12px; margin-bottom: 1.5rem; }
.notice-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 1.25rem; border-radius: 12px; margin-bottom: 1.5rem; }

/* ----- Animations (simple in/up) ----- */
@keyframes msr-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: msr-fade-up .6s ease both; }

/* =========================================================================
   MOBILE OVERRIDES — < 768px
   Tighter padding, full-width CTAs, reflow for forms/footer/heroes.
   ========================================================================= */
@media (max-width: 767px) {
	/* Top bar — let phone wrap onto its own line, but keep it readable. */
	.topbar { font-size: 13px; padding: .5rem .75rem; line-height: 1.5; }

	/* Container padding */
	.container { padding: 0 1.125rem; }

	/* Section padding shrinks meaningfully on phones — 80px → 48px */
	.section, .section-lg { padding: 3rem 0; }
	.cta-section { padding: 4rem 1.125rem; }
	.cta-section h2 { font-size: clamp(34px, 9vw, 52px); }
	.cta-section p { font-size: 16px; margin: 0 0 1.75rem; }

	/* Page hero (inner pages) */
	.page-hero { padding: 2.5rem 0 3.5rem; }

	/* Header — slightly tighter, but keep CTA visible on mobile */
	.site-header__inner { height: 68px; }
	.site-logo img { height: 40px; }
	.menu-toggle { padding: .5rem; }
	.header-right { gap: .5rem; }
	/* Compact Request Service button on phones — keeps it visible without crowding */
	.header-right .btn {
		padding: .55rem .75rem;
		font-size: 12px;
		letter-spacing: .05em;
		min-height: 0;
	}

	/* Hero — single column, no big decorative circle, smaller image badge.
	   Same caveat: padding-top/bottom only, never the shorthand. */
	.hero-split { padding-top: 2.5rem; padding-bottom: 3.5rem; gap: 2rem; }
	.hero-image-wrap::before { display: none; }
	.hero-image { aspect-ratio: 4/3; border-radius: 14px; box-shadow: 0 12px 24px rgba(0,0,0,.15); }
	.hero-badge { bottom: .75rem; left: .75rem; padding: .625rem .875rem; border-radius: 12px; }
	.hero-badge-num { font-size: 28px; }
	.hero-badge-label { font-size: 10px; letter-spacing: .1em; }

	/* Display headlines breathe better at smaller min-sizes */
	.h-display { font-size: clamp(36px, 10vw, 64px); }
	.h-display.huge { font-size: clamp(44px, 12vw, 84px); }
	.h-section { font-size: clamp(28px, 7vw, 40px); }
	.h-block   { font-size: clamp(24px, 6vw, 32px); }

	p.lead { font-size: 16px; }

	/* CTA button rows: full-width on phones so phone-number CTAs never clip */
	.btn-lg, .btn-xl { width: 100%; padding-left: 1rem; padding-right: 1rem; font-size: 17px; }
	.btn { white-space: normal; word-break: break-word; }
	/* Allow .btn-block AND any .btn inside a flex/grid CTA row to stretch. */
	[class*="hero-split"] .btn,
	.flex-center .btn,
	section .btn-lg + .btn-lg,
	section .btn-xl + .btn-xl,
	section .btn-lg + .btn,
	section .btn + .btn-lg { flex: 1 1 auto; min-width: 0; }

	/* Trust row: tighter */
	.trust-row { gap: .75rem 1.25rem; font-size: 13px; margin-top: 1.25rem; }

	/* Service cards: shorter media on phones */
	.service-card__media { height: 170px; }
	.service-card__body { padding: 1.25rem; }
	.service-card__body h3 { font-size: 22px; }

	/* Brand strip — pull gap in significantly on mobile */
	.brands { padding: 2.5rem 0; }
	.brands p { margin-bottom: 1.25rem; letter-spacing: .15em; }
	.brands .brand-row { gap: .75rem 1.5rem; }
	.brand-name { font-size: clamp(22px, 6vw, 32px); }

	/* Reviews rotator: less giant decorative quote */
	.review-rotator::before { font-size: 100px; top: -.75rem; left: -.5rem; }
	.review-rotator__quote { font-size: clamp(17px, 4.5vw, 22px); margin-bottom: 1.5rem; }
	.review-rotator__nav { gap: 1rem; margin-top: 1.5rem; }

	/* FAQ */
	.faq-q { padding: 1rem 1.125rem; font-size: 15px; gap: .75rem; }
	.faq-q__chev { width: 28px; height: 28px; }
	.faq-a { padding: 0 1.125rem 1.25rem; font-size: 14px; }

	/* City grid: 1 column on tiny screens, 2 on small phones */
	.city-grid { grid-template-columns: 1fr; }
	.city-card { padding: .75rem .875rem; }

	/* Footer: reduce gaps */
	.site-footer .container { gap: 2rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
	.site-footer-bottom { padding: 1.25rem 0 1.5rem; }
	.site-footer-bottom .links { gap: 1rem; }

	/* Forms */
	.form-section { padding: 2.5rem 0; }
	.form-block { margin-bottom: 2rem; }
	.form-block h2 { font-size: 22px; padding-bottom: .75rem; margin-bottom: 1.25rem; }
	.form-row input, .form-row select, .form-row textarea { font-size: 16px; padding: .75rem .875rem; }
	.form-row textarea { min-height: 120px; }
	/* Stack radio buttons vertically — long labels (urgency, contact) clip otherwise */
	.radio-group { flex-direction: column; align-items: stretch; }
	.radio-group label { width: 100%; }
	.form-foot { padding: 1.25rem; }
	.form-foot .row { flex-direction: column; align-items: stretch; gap: .75rem; }
	.form-foot .row .btn { width: 100%; }

	/* Stat pills (service-areas hero) */
	.stat-pill { padding: .625rem .875rem; }
	.stat-pill .num { font-size: 22px; }

	/* Timeline marker shifts slightly */
	.timeline::before { left: 19px; }
	.timeline-row { padding-left: 3.25rem; padding-bottom: 1.75rem; }
	.timeline-row .marker { width: 40px; height: 40px; font-size: 12px; }
	.timeline-row .year { font-size: 20px; }

	/* Trust tile (about page right column) */
	.trust-tile { padding: 1rem 1.125rem; gap: 1rem; }
	.trust-tile__icon { width: 40px; height: 40px; }
	.trust-tile__label { font-size: 15px; }

	/* Card defaults a little tighter */
	.card { padding: 1.25rem; }
	.value-card { padding: 1.25rem; }

	/* Blog featured */
	.blog-featured__left, .blog-featured__right { padding: 1.75rem; }
	.blog-featured__left h2 { font-size: clamp(22px, 6vw, 30px); }

	/* Article body */
	.blog-article p { font-size: 16px; }
	.blog-sidebar { position: static; }

	/* Legal sections */
	.legal-section { padding: 2.5rem 0; }
	.legal-section h2 { font-size: 20px; margin-top: 1.5rem; }
}

/* =========================================================================
   FIXED MOBILE CTA BAR — Call + Request, sticky to viewport bottom on phones.
   ========================================================================= */
.mobile-cta-bar { display: none; }

@media (max-width: 767px) {
	.mobile-cta-bar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0;
		position: fixed;
		left: 0; right: 0; bottom: 0;
		z-index: 60;
		box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
		/* Account for iOS home-indicator safe-area inset */
		padding-bottom: env(safe-area-inset-bottom, 0);
		background: var(--dark-navy);
	}
	.mobile-cta-bar a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: .5rem;
		padding: 1rem .75rem;
		min-height: 56px;
		font-family: 'Barlow Condensed', sans-serif;
		font-weight: 800;
		font-size: 16px;
		text-transform: uppercase;
		letter-spacing: .06em;
		color: #fff;
		text-decoration: none;
		line-height: 1.1;
	}
	.mobile-cta-bar a.cta-call    { background: var(--navy); }
	.mobile-cta-bar a.cta-request { background: var(--teal); }
	.mobile-cta-bar a:active { opacity: .85; }
	.mobile-cta-bar svg { width: 18px; height: 18px; flex-shrink: 0; }

	/* Push body content up so the bar never covers the footer.
	   Bar height ≈ 56px + safe area; pad ~76px to be safe. */
	body { padding-bottom: 76px; }
}

/* Tap target hardening across all sizes */
.btn, .faq-q, .menu-toggle, .site-nav a, .mobile-menu a, .city-card,
.review-rotator__nav button, .review-rotator__dots button {
	min-height: 44px;
}
.review-rotator__dots button { min-width: 8px; min-height: 8px; }
.review-rotator__dots button.is-active { min-width: 28px; }

/* Prevent iOS form zoom on focus (16px is the threshold) */
@media (max-width: 767px) {
	input, select, textarea { font-size: 16px !important; }
}
