/* ============================================================
   TB Lawn and Landscape — Main Stylesheet
   ============================================================ */

/* 1. Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a2318;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* 2. CSS Custom Properties
   ============================================================ */
:root {
  --green-950: #071410;
  --green-900: #0f2016;
  --green-800: #152b1f;
  --green-700: #1b3d2f;
  --green-600: #245038;
  --green-500: #2e6445;
  --green-400: #3a7d56;
  --gold-700:  #8a6b1a;
  --gold-600:  #a88229;
  --gold-500:  #c9a84c;
  --gold-400:  #d4bc6e;
  --gold-300:  #e2ce92;
  --cream:     #f8f5ee;
  --cream-dark:#f0eade;
  --white:     #ffffff;
  --text-dark: #1a2318;
  --text-muted:#5c6b5a;
  --border:    #dde5d8;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

  --nav-height: 72px;
  --container: 1200px;
}

/* 3. Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
  color: inherit;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-muted); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: .75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { color: var(--green-800); margin-bottom: .75rem; }
.section-header p  { font-size: 1.05rem; }

.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,.72); }

/* 4. Layout
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

.section {
  padding: 5rem 0;
}

.section--sm   { padding: 3.5rem 0; }
.section--lg   { padding: 7rem 0; }
.section--dark { background: var(--green-800); }
.section--deep { background: var(--green-900); }
.section--cream { background: var(--cream); }

/* 5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1;
  border-radius: var(--radius-full);
  padding: .85rem 1.75rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--green {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,61,47,.3);
}
.btn--green:hover { background: var(--green-600); box-shadow: 0 6px 28px rgba(27,61,47,.4); }

.btn--gold {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: var(--gold-400); box-shadow: 0 10px 36px rgba(201,168,76,.35); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn--outline-green {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn--outline-green:hover { background: var(--green-700); color: var(--white); }

.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: .6rem 1.25rem; font-size: .875rem; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 6. Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background .3s ease, box-shadow .3s ease;
}

.nav--transparent { background: transparent; }
.nav--solid,
.nav--scrolled {
  background: var(--green-900);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) { .nav__inner { padding: 0 2rem; } }

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  flex-shrink: 0;
}

.nav__links {
  display: none;
  gap: .25rem;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    align-items: center;
  }
}

.nav__link {
  padding: .5rem .875rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-full);
  transition: color .15s ease, background .15s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta { display: inline-flex; }
}

.nav__phone-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-300);
  padding: .4rem .75rem;
  border-radius: var(--radius-full);
  transition: color .15s ease;
}

.nav__phone-link:hover { color: var(--gold-500); }

.nav__phone-link svg { width: 15px; height: 15px; }

/* Mobile nav toggle */
.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: none;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle svg { width: 22px; height: 22px; }

@media (min-width: 1024px) { .nav__toggle { display: none; } }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-900);
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-menu__close {
  width: 40px; height: 40px;
  border: none;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close svg { width: 22px; height: 22px; }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}

.mobile-menu__link {
  padding: 1rem 1.25rem;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--white);
  border-radius: var(--radius-md);
  transition: background .15s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link--active { background: rgba(255,255,255,.08); }

.mobile-menu__footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* 7. Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 22, 14, .88) 0%,
    rgba(15, 32, 22, .75) 45%,
    rgba(15, 32, 22, .50) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 3rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 460px;
    gap: 4rem;
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 4rem;
  }
}

.hero__content { max-width: 600px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero__eyebrow svg { width: 13px; height: 13px; }

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-400);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-bottom: 2.25rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.hero__trust-item svg {
  width: 15px; height: 15px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Hero Form Card */
.hero__form-card {
  background: rgba(15, 32, 22, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.08);
}

.hero__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
  text-align: center;
}

.hero__form-sub {
  font-size: .825rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 8. Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--gold-500);
  padding: .9rem 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 2.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-900);
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 16px; height: 16px;
  color: var(--green-800);
  flex-shrink: 0;
}

/* 9. Services Grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-600);
  transition: background .2s ease, color .2s ease;
}

.service-card:hover .service-card__icon {
  background: var(--green-700);
  color: var(--gold-400);
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: .5rem;
}

.service-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-600);
  transition: gap .15s ease, color .15s ease;
}

.service-card__link:hover { gap: .6rem; color: var(--green-500); }
.service-card__link svg { width: 15px; height: 15px; }

/* 10. Stats / Why Section
   ============================================================ */
.stats-section {
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,.06);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-feature__icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.why-feature__icon svg { width: 22px; height: 22px; }

.why-feature__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .3rem;
}

.why-feature__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.why-image__badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--gold-500);
  color: var(--green-900);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* 11. Service Areas
   ============================================================ */
.areas-section { background: var(--cream); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--green-700);
  font-size: .9rem;
  font-weight: 500;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-full);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.area-tag:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.area-tag svg { width: 14px; height: 14px; }

/* 12. Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .2s ease;
}

.testimonial-card:hover { border-color: rgba(201,168,76,.3); }

.stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--gold-500);
}

.stars svg { width: 16px; height: 16px; fill: currentColor; }

.testimonial-text {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: .9rem;
  display: block;
}

.testimonial-location {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* 13. Gallery Preview
   ============================================================ */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (min-width: 768px)  { .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-preview-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--green-800);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,14,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* 14. CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,.07);
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-banner__text h2 { color: var(--white); margin-bottom: .5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-banner__text p { color: rgba(255,255,255,.7); margin: 0; }

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}

@media (min-width: 480px) { .cta-banner__actions { flex-direction: row; } }

/* 15. Footer
   ============================================================ */
.footer {
  background: var(--green-950);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer__brand .nav__logo { margin-bottom: 1rem; }

.footer__tagline {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 300px;
}

.footer__col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__link {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .15s ease;
}

.footer__link:hover { color: var(--gold-400); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}

.footer__contact-item svg {
  width: 16px; height: 16px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: .15rem;
}

.footer__contact-item a:hover { color: var(--gold-400); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  color: rgba(255,255,255,.35);
  transition: color .15s ease;
}

.footer__legal-links a:hover { color: var(--gold-400); }

/* 16. Quote Form (Shared)
   ============================================================ */
.quote-form { width: 100%; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
}

@media (min-width: 540px) {
  .form-grid--2col { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: .35rem; }

.form-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.form-label--dark { color: var(--text-muted); }

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .875rem 1rem;
  color: var(--white);
  font-size: 1rem;
  min-height: 48px;
  transition: border-color .15s ease, background .15s ease;
  outline: none;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  background: rgba(255,255,255,.09);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option { background: var(--green-900); color: var(--white); }

.form-textarea { resize: vertical; min-height: 90px; }

/* Light form variant (for pages with white bg) */
.form--light .form-input,
.form--light .form-select,
.form--light .form-textarea {
  background-color: var(--cream);
  border-color: var(--border);
  color: var(--text-dark);
}
.form--light .form-input::placeholder,
.form--light .form-textarea::placeholder { color: rgba(0,0,0,.35); }
.form--light .form-input:focus,
.form--light .form-select:focus,
.form--light .form-textarea:focus { border-color: var(--green-500); background-color: var(--white); }
.form--light .form-label { color: var(--text-muted); }
.form--light .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c6b5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  background-size: 16px;
}
.form--light .form-select option { background: var(--white); color: var(--text-dark); }

.form-success {
  display: none;
  background: rgba(46,100,69,.15);
  border: 1px solid rgba(46,100,69,.4);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  color: var(--gold-300);
  font-weight: 600;
  margin-top: .75rem;
}

/* 17. Sticky Call Button
   ============================================================ */
.sticky-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .625rem;
  background: var(--gold-500);
  color: var(--green-900);
  font-weight: 700;
  font-size: 1rem;
  padding: .875rem 1.375rem;
  min-height: 48px;
  border-radius: var(--radius-full);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 6px 30px rgba(201,168,76,.45), 0 2px 8px rgba(0,0,0,.2);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease, box-shadow .2s ease;
  pointer-events: none;
}

.sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.sticky-call:hover { box-shadow: 0 8px 36px rgba(201,168,76,.55), 0 2px 10px rgba(0,0,0,.25); }

.sticky-call svg { width: 18px; height: 18px; }

@media (min-width: 1024px) { .sticky-call { display: none; } }

/* 18. Section Quote Form (Standalone)
   ============================================================ */
.section-form-wrap {
  background: var(--green-800);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.section-form-wrap h3 {
  color: var(--white);
  text-align: center;
  margin-bottom: .4rem;
}

.section-form-wrap .sub {
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: .9rem;
  margin-bottom: 1.75rem;
}

/* 19. Page headers (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
  text-align: center;
}

.page-header h1 { color: var(--white); margin-bottom: .75rem; }
.page-header p  { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.page-header__breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}

.page-header__breadcrumb a { color: var(--gold-400); transition: color .15s ease; }
.page-header__breadcrumb a:hover { color: var(--gold-300); }
.page-header__breadcrumb svg { width: 12px; height: 12px; }

/* 20. Services Page — Detail cards
   ============================================================ */
.service-detail-card {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail-card:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .service-detail-card { grid-template-columns: 200px 1fr; }
  .service-detail-card:nth-child(even) { direction: rtl; }
  .service-detail-card:nth-child(even) > * { direction: ltr; }
}

.service-detail-icon {
  width: 80px; height: 80px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin: 0 auto;
}

.service-detail-icon svg { width: 40px; height: 40px; }

.service-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: .625rem;
}

.service-detail-desc { font-size: .95rem; }

/* 21. Gallery Page
   ============================================================ */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (min-width: 640px)  { .gallery-full-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-full-grid { grid-template-columns: repeat(4, 1fr); } }

/* 22. Contact Page
   ============================================================ */
.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 460px; }
}

.contact-info-card {
  background: var(--green-800);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
  height: fit-content;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .25rem;
}

.contact-info-value {
  font-size: .95rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-value a:hover { color: var(--gold-400); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  height: 240px;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* 23. Service Areas Page
   ============================================================ */
.area-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px)  { .area-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .area-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.area-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-500); }

.area-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.area-card__name svg { width: 18px; height: 18px; color: var(--gold-500); }

.area-card__desc { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* 24. Landing Pages (PW / Lawn Care)
   ============================================================ */
.lp-hero {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .15;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .lp-hero__inner { grid-template-columns: 1fr 440px; }
}

.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-300);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.lp-hero h1 { color: var(--white); margin-bottom: 1rem; }
.lp-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 1.75rem; }

.lp-benefits {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.lp-benefit {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.lp-benefit svg {
  width: 18px; height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.lp-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.lp-form-card h3 {
  font-size: 1.3rem;
  color: var(--green-800);
  text-align: center;
  margin-bottom: .4rem;
}

.lp-form-card .sub {
  font-size: .85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.lp-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .lp-process { grid-template-columns: repeat(3, 1fr); } }

.lp-process-step {
  text-align: center;
  padding: 1.75rem;
}

.lp-step-num {
  width: 52px; height: 52px;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-400);
}

.lp-process-step h4 { color: var(--green-800); margin-bottom: .5rem; }
.lp-process-step p  { font-size: .875rem; }

/* 25. Scroll Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity .55s ease;
}

.fade-in.is-visible { opacity: 1; }

.stagger-children .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 400ms; }
.stagger-children .fade-up:nth-child(7) { transition-delay: 480ms; }
.stagger-children .fade-up:nth-child(8) { transition-delay: 560ms; }
.stagger-children .fade-up:nth-child(9) { transition-delay: 640ms; }
.stagger-children .fade-up:nth-child(10) { transition-delay: 720ms; }
.stagger-children .fade-up:nth-child(11) { transition-delay: 800ms; }
.stagger-children .fade-up:nth-child(12) { transition-delay: 880ms; }

/* 26. Lightbox
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: pointer;
  animation: lightbox-in .2s ease;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  transition: opacity .15s ease;
}

.lightbox-close:hover { opacity: 1; }

/* 27. Utility
   ============================================================ */
.text-center { text-align: center; }
.text-gold   { color: var(--gold-500); }
.text-green  { color: var(--green-600); }
.text-white  { color: var(--white); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* 28. Town Pages — Service List
   ============================================================ */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 1rem 0 1.5rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: .3rem 0;
}
.service-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: var(--green-600);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* 29. FAQ Accordion
   ============================================================ */
.faq-section { background: var(--cream); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

details.faq-item summary {
  list-style: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .975rem;
  color: var(--green-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .15s ease;
  user-select: none;
}

details.faq-item summary:hover { background: var(--cream); }
details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-500);
  flex-shrink: 0;
  line-height: 1;
}

details.faq-item[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .925rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: -1px;
}

/* 30. Urgency Badge
   ============================================================ */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: var(--radius-full);
  margin-bottom: .875rem;
}

/* 31. Mobile-First Enhancements
   ============================================================ */

/* All tappable elements: prevent double-tap zoom, remove tap flash */
a, button, [role="button"],
.service-card, .area-card, .gallery-item, .faq-item summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Buttons: enforce 44px minimum touch target */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Form selects: match input sizing */
.form-select {
  min-height: 48px;
  font-size: 1rem;
}

/* form--light: ensure labels are fully visible on white backgrounds */
.form--light .form-label {
  color: var(--text-muted);
  font-size: .8rem;
}

/* form--light textarea */
.form--light .form-textarea {
  background: var(--cream);
  border-color: var(--border);
  color: var(--text-dark);
}
.form--light .form-textarea::placeholder { color: rgba(0,0,0,.35); }

/* Hero form card on dark bg — explicit label color */
.hero__form-card .form-label { color: rgba(255,255,255,.65); }

@media (max-width: 539px) {
  /* Stack 2-col form grids on small screens */
  .form-grid--2col { grid-template-columns: 1fr !important; }

  /* Wider hero form card */
  .hero__form-card { padding: 1.5rem 1.25rem; }

  /* Submit button: full-width, bigger tap area */
  .quote-form [type="submit"] {
    width: 100%;
    min-height: 52px;
    font-size: 1.0625rem;
  }

  /* Town area tags: bigger tap area */
  .area-tag {
    padding: .5rem .875rem;
    font-size: .875rem;
  }

  /* Service cards: full-width on tiny screens */
  .service-card { min-height: auto; }

  /* Testimonial cards: reduce padding */
  .testimonial-card { padding: 1.25rem; }

  /* Section padding reduction */
  .section { padding: 3rem 0; }

  /* CTA banner: stack buttons */
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { justify-content: center; min-height: 52px; }

  /* Footer: single column */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Sticky call: safe area inset for modern iOS */
  .sticky-call {
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
    font-size: .9375rem;
  }
}

@media (max-width: 767px) {
  /* Nav: reduce logo area to give toggle more room */
  .nav__inner { padding: 0 1rem; }

  /* Page headers: tighter padding */
  .page-header { padding: calc(var(--nav-height) + 2rem) 0 2rem; }

  /* Hero text sizing */
  .hero__title { font-size: clamp(1.75rem, 8vw, 2.75rem); }

  /* Stats grid: 2 columns */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* LP hero: full-width form card */
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-form-card { max-width: 100%; }

  /* Gallery grid: 2 columns */
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why-features: stack */
  .why-features-grid { grid-template-columns: 1fr; }

  /* Mobile menu footer: stack buttons */
  .mobile-menu__footer { flex-direction: column; gap: .75rem; }
  .mobile-menu__footer .btn { width: 100%; min-height: 52px; font-size: 1rem; }
}

/* ============================================================
   32. Custom Select Dropdown
   Replaces native <select> for consistent rendering on
   iOS Safari and Chrome mobile — no checkmarks, no native UI
   ============================================================ */

/* Hide native select (stays in DOM for form submission) */
.custom-select select {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
  top: 0; left: 0;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: .875rem 2.75rem .875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--white);
  background-color: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .15s ease, background-color .15s ease;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  outline: none;
}

.custom-select__trigger::after {
  content: '';
  position: absolute;
  right: .875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 16px;
  pointer-events: none;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.custom-select.is-open .custom-select__trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select__trigger:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-color: var(--gold-500);
}

.custom-select.is-open .custom-select__trigger {
  border-color: var(--gold-500);
  background-color: rgba(255,255,255,.09);
}

.custom-select__value { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.custom-select__value.is-placeholder { opacity: .45; }

.custom-select__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--green-900);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-md);
  z-index: 999;
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.custom-select.is-open .custom-select__dropdown { display: block; }

.custom-select__option {
  padding: .8125rem 1rem;
  font-size: .9375rem;
  font-family: inherit;
  color: rgba(255,255,255,.82);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .1s ease;
  line-height: 1.4;
}

.custom-select__option:hover { background-color: rgba(255,255,255,.07); color: var(--white); }
.custom-select__option.is-selected { color: var(--gold-300); font-weight: 600; }
.custom-select__option.is-placeholder { color: rgba(255,255,255,.4); font-style: italic; }

/* form--light context (town pages, contact page) */
.form--light .custom-select__trigger {
  background-color: var(--cream);
  border-color: var(--border);
  color: var(--text-dark);
}

.form--light .custom-select__trigger::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6b5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
}

.form--light .custom-select.is-open .custom-select__trigger {
  border-color: var(--green-500);
  background-color: var(--white);
}

.form--light .custom-select__dropdown {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.form--light .custom-select__option { color: var(--text-dark); }
.form--light .custom-select__option:hover { background-color: var(--cream); }
.form--light .custom-select__option.is-selected { color: var(--green-700); font-weight: 600; }
.form--light .custom-select__option.is-placeholder { color: rgba(0,0,0,.4); font-style: italic; }
.form--light .custom-select__value.is-placeholder { opacity: .55; color: rgba(0,0,0,.5); }

/* ============================================================
   33. Mobile Navigation — Clean Single Row
   ============================================================ */

/* Hide "Free Estimate" btn in nav on mobile — phone + hamburger only */
@media (max-width: 767px) {
  .nav__cta .btn--sm { display: none !important; }
  .nav__phone-link { font-size: .8125rem; padding: .35rem .6rem; }
}

/* Very small phones: icon only (no number text) */
@media (max-width: 389px) {
  .nav__phone-link .phone-number { display: none; }
  .nav__phone-link { padding: .35rem .5rem; }
}

/* ============================================================
   34. Hero — Mobile Compact & Conversion-Focused
   ============================================================ */
@media (max-width: 767px) {
  .hero { min-height: unset; }

  .hero__inner {
    padding-top: calc(var(--nav-height) + 1.25rem);
    padding-bottom: 2rem;
    gap: 1.75rem;
  }

  .hero__eyebrow { font-size: .7rem; padding: .35rem .875rem; margin-bottom: 1rem; }

  .hero__subtitle {
    font-size: .95rem;
    margin-bottom: 1.25rem;
    line-height: 1.65;
  }

  .hero__trust { gap: .4rem 1rem; margin-bottom: 1.5rem; }
  .hero__trust-item { font-size: .78rem; }

  /* Stack CTA buttons full-width for easy tapping */
  .hero__ctas {
    flex-direction: column;
    gap: .625rem;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    font-size: 1rem;
  }

  /* Tighter hours note */
  .hero__content > p[style] { margin-top: .5rem !important; }

  /* Form card */
  .hero__form-card { padding: 1.5rem 1.125rem; }
  .hero__form-title { font-size: 1.2rem; }

  /* LP hero (lawn-care, pressure-washing) */
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-form-card { max-width: 100%; padding: 1.5rem 1.125rem; }
}

@media (max-width: 479px) {
  /* Eyebrow takes too much vertical space on tiny phones */
  .hero__eyebrow { display: none; }
  /* Reduce trust items to save space */
  .hero__trust-item:nth-child(n+3) { display: none; }
}

/* ============================================================
   35. Sticky Call — Show Sooner, Better Mobile Sizing
   ============================================================ */
@media (max-width: 767px) {
  .sticky-call {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: 1rem;
    left: 1rem;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 1rem;
    min-height: 54px;
    padding: 1rem 1.5rem;
  }
}

/* ============================================================
   36. Section & General Mobile Polish
   ============================================================ */
@media (max-width: 767px) {
  /* Tighter section padding */
  .section { padding: 3.5rem 0; }
  .section--sm { padding: 2.5rem 0; }

  /* Container: comfortable horizontal padding */
  .container { padding-left: 1.125rem; padding-right: 1.125rem; }

  /* Section headers: smaller on mobile */
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-header p { font-size: .9375rem; }

  /* Trust bar: 2 items per row */
  .trust-bar__inner { gap: .4rem 1.5rem; }
  .trust-bar__item { font-size: .8rem; }

  /* Service cards: comfortable padding */
  .service-card { padding: 1.375rem; }

  /* Stats: 2-col grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* CTA banner buttons: full width stack */
  .cta-banner__actions { flex-direction: column; align-items: stretch; gap: .625rem; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; min-height: 54px; }

  /* Page header: tighter */
  .page-header { padding: calc(var(--nav-height) + 1.75rem) 0 2rem; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.25rem); }
  .page-header p { font-size: .9375rem; }

  /* Section form wrap (town pages) */
  .section-form-wrap { padding: 1.75rem 1.25rem; }

  /* Form grid: single column on mobile */
  .form-grid--2col { grid-template-columns: 1fr !important; }

  /* Submit buttons: full width, big */
  .quote-form [type="submit"] {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
  }

  /* Footer: single column */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Testimonial cards */
  .testimonial-card { padding: 1.25rem; }

  /* Area cards grid: 2 columns */
  .area-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery: 2 columns */
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
