/* Pay Less Plumbing — Classic American Heritage Theme */
/* Hunter Green #2D6040 + Warm Gold #C9982A + Cream #F5F0E6 */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --primary: #2D6040;
  --primary-dark: #1A3D27;
  --primary-light: #3D7A54;
  --gold: #C9982A;
  --gold-light: #E4B94A;
  --cream: #F5F0E6;
  --cream-dark: #EAE3D4;
  --dark: #1A2614;
  --text: #2C2C1E;
  --text-muted: #5C5C4A;
  --white: #FDFDF9;
  --shadow-sm: 0 2px 8px rgba(26,38,20,0.08);
  --shadow-md: 0 4px 20px rgba(26,38,20,0.12);
  --shadow-lg: 0 8px 40px rgba(26,38,20,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===================== SKIP LINK ===================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: .5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: .85rem;
  padding: .4rem 0;
  font-family: 'Source Sans 3', sans-serif;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: .7rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: .25rem; list-style: none; }
.site-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: .5rem .9rem;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,0.12);
  color: white;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-radius: 6px !important;
  padding: .5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: transform .3s, opacity .3s;
}
.hamburger:focus-visible { outline: 2px solid var(--gold); border-radius: 4px; }

/* ===================== HERO ===================== */
.hero {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="%23C9982A" opacity=".15"/></svg>') repeat;
  z-index: 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Source Sans 3', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-green {
  background: var(--primary);
  color: white;
}
.btn-green:hover { background: var(--primary-light); }
.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.hero-info-card {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: rgba(26,61,39,0.92);
  backdrop-filter: blur(4px);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat { color: white; }
.hero-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--gold);
  padding: 1.25rem 1.5rem;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 2rem;
  border-right: 1px solid rgba(26,38,20,0.2);
}
.stat-pill:last-child { border-right: none; }
.stat-pill-icon { font-size: 1.5rem; }
.stat-pill-text strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1;
}
.stat-pill-text span {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary-dark);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 5rem 1.5rem;
}
.section-cream { background: var(--cream); }
.section-dark { background: var(--primary-dark); color: white; }
.section-white { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-dark .section-label { color: var(--gold-light); }
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-dark h2 { color: white; }
.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.section-dark .section-intro { color: rgba(255,255,255,0.75); }

/* ===================== SERVICE CARDS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  border-top: 4px solid var(--primary);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card-full {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  border-left: 5px solid var(--primary);
  transition: transform .25s, box-shadow .25s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.service-card-full:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--cream-dark);
  line-height: 1;
  min-width: 48px;
}
.service-card-full h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: .4rem;
}
.service-card-full p { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }

/* ===================== TESTIMONIAL ===================== */
.testimonial-block {
  background: var(--primary);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.testimonial-block::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 6rem;
  color: rgba(201,152,42,0.3);
  position: absolute;
  top: .5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-block blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: white;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-block cite {
  font-style: normal;
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ===================== ABOUT SECTION ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-image { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; display: block; }
.credential-list { list-style: none; margin-top: 1.5rem; }
.credential-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .98rem;
  color: var(--text);
}
.credential-list li:last-child { border-bottom: none; }
.credential-list li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: 1rem; flex-shrink: 0; }

/* ===================== COUNTERS BAND ===================== */
.counters-band {
  background: var(--primary-dark);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.counters-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.counter-item {}
.counter-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.counter-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,0.6);
  margin-top: .35rem;
  display: block;
}

/* ===================== CREDENTIALS BAR ===================== */
.credentials-strip {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
}
.credentials-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: .9rem;
}
.cred-item span { font-size: 1.25rem; }

/* ===================== BEFORE/AFTER SLIDER ===================== */
.ba-section { background: var(--cream); }
.ba-caption { text-align: center; margin-top: 1.25rem; font-size: .9rem; color: var(--text-muted); }

/* ===================== FAQ ACCORDION ===================== */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: .25rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 3px; }
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { flex-shrink: 0; transition: transform .3s; color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-body { padding: .5rem 0 1.25rem; font-size: .98rem; color: var(--text-muted); line-height: 1.75; }

/* ===================== SERVICE AREA MAP ===================== */
#service-area-map { height: 380px; border-radius: 10px; box-shadow: var(--shadow-md); }

/* ===================== PAYMENT METHODS ===================== */
.payment-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.payment-chip {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: .4rem .9rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===================== CONTACT FORM ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #f0fff4;
  border: 2px solid #2D6040;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: #2D6040;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 1rem;
}
.contact-info-card {
  background: var(--primary-dark);
  border-radius: 12px;
  padding: 2.5rem;
  color: white;
}
.contact-info-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,152,42,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text strong { display: block; color: var(--gold-light); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem; }
.contact-detail-text a { color: white; text-decoration: none; font-size: 1rem; }
.contact-detail-text a:hover { color: var(--gold-light); }
.contact-detail-text span { color: rgba(255,255,255,0.8); font-size: .95rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table td { padding: .3rem 0; font-size: .95rem; color: rgba(255,255,255,0.8); }
.hours-table td:last-child { text-align: right; color: var(--gold-light); font-weight: 600; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--primary-dark);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="%23C9982A" opacity=".12"/></svg>') repeat;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-main { color: white; font-size: 1.3rem; }
.footer-brand .logo-sub { color: var(--gold-light); }
.footer-tagline { margin-top: .75rem; font-size: .9rem; line-height: 1.6; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  background: var(--gold);
  color: var(--dark);
  padding: .7rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
  transition: background .2s;
}
.footer-cta-btn:hover { background: var(--gold-light); }
.footer-col h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: .92rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
}
.footer-license { color: var(--gold-light); font-weight: 600; }

/* ===================== FLOATING CTA ===================== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--gold);
  color: var(--dark);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.floating-cta:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ===================== UTILITY ===================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.gold-text { color: var(--gold); }

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--primary-dark); flex-direction: column; padding: 1rem; gap: .25rem; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem 1rem; border-radius: 6px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .stat-pill { padding: .5rem 1.25rem; }
  .stats-bar-inner { gap: 0; }
  .floating-cta { bottom: 1rem; right: 1rem; }
  .service-card-full { grid-template-columns: 1fr; }
  .service-num { display: none; }
}
@media (min-width: 769px) { .hero-info-card { display: flex; } }
@media (max-width: 480px) {
  .stat-pill { border-right: none; border-bottom: 1px solid rgba(26,38,20,0.2); padding: .75rem 1rem; width: 50%; }
  .stat-pill:nth-child(odd):last-child { width: 100%; }
}
