/* ============================================================
   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: 40px; height: 40px;
  border: none;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.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;
}

/* Override for cream/light-background contexts */
.section--cream .why-feature__icon {
  background: rgba(46,100,69,.12);
  color: var(--green-600);
}
.section--cream .why-feature__title { color: var(--green-900); }
.section--cream .why-feature__desc  { color: var(--text-muted); }

.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: .75rem 1rem;
  color: var(--white);
  font-size: .9rem;
  transition: border-color .15s ease, background .15s ease;
  outline: none;
  width: 100%;
}

.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;
  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/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  min-height: 52px;
}

.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: 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: 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/polyline%3E%3C/svg%3E");
}
.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;
  font-size: 1.05rem;
}

.form-success:not([hidden]) { display: block; }

/* 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: .9rem;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-full);
  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; } }

/* Sticky call bar: hide while any form input or custom select is active */
.sticky-call.form-active {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(100px) !important;
}

/* Prevent iOS zoom (inputs must be ≥16px on mobile) */
@media (max-width: 1023px) {
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }
}

/* Validation error state */
.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #e05252 !important;
  animation: formShake 250ms ease;
}

@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

/* Inline validation error messages */
.form-error {
  display: none;
  color: #f87171;
  font-size: .8rem;
  font-weight: 500;
  margin-top: .3rem;
  line-height: 1.4;
}

.form-error:not([hidden]) { display: block; }

/* Light forms get a slightly darker red so it reads on white */
.form--light .form-error { color: #dc2626; }

/* Submit button shake on failed validation */
@keyframes btnShake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-7px); }
  30%       { transform: translateX(7px); }
  45%       { transform: translateX(-5px); }
  60%       { transform: translateX(5px); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
}

.btn--shake {
  animation: btnShake 550ms ease;
}

/* Top-of-form required fields banner */
.form-banner-error {
  display: none;
  background: rgba(224,82,82,.12);
  border: 1px solid rgba(224,82,82,.35);
  border-left: 3px solid #e05252;
  border-radius: var(--radius-sm);
  color: #f87171;
  font-size: .875rem;
  font-weight: 600;
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.form-banner-error:not([hidden]) { display: block; }

.form--light .form-banner-error {
  background: rgba(220,38,38,.07);
  border-color: rgba(220,38,38,.25);
  border-left-color: #dc2626;
  color: #dc2626;
}

/* Submit-level error banner (shown when Web3Forms POST fails) */
.form-submit-error {
  display: none;
  background: rgba(224,82,82,.12);
  border: 1px solid rgba(224,82,82,.4);
  border-radius: var(--radius-sm);
  color: #f87171;
  font-size: .875rem;
  font-weight: 500;
  padding: .75rem 1rem;
  margin-top: .75rem;
  line-height: 1.5;
}

.form-submit-error:not([hidden]) { display: block; }

.form--light .form-submit-error {
  background: rgba(220,38,38,.07);
  border-color: rgba(220,38,38,.3);
  color: #dc2626;
}

/* 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; }
