/* ============================================
   LAWN & POWER PRO v2 — STYLES
   Modern / Organic-Refined / Image-Forward
   ============================================ */

:root {
  /* Greens — deep, natural tones */
  --pine: #1b2e1b;
  --forest: #243a24;
  --moss: #2f5e2f;
  --fern: #3d8b3d;
  --sage: #6aae6a;
  --mint: #d0e8d0;
  --frost: #eef6ee;

  /* Earths */
  --bark: #3a2e22;
  --soil: #5c4a3a;
  --clay: #a08872;
  --sand: #d8ccbe;
  --linen: #f5f1ec;

  /* Accent — warm gold */
  --gold: #b8962e;
  --gold-light: #d4b44a;
  --gold-glow: rgba(184,150,46,0.12);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-50: #f6f7f5;
  --gray-100: #edeee9;
  --gray-200: #ddddd6;
  --gray-300: #c0c1b8;
  --gray-500: #7a7d72;
  --gray-700: #464940;
  --gray-800: #2c2f27;
  --gray-900: #1a1c17;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --nav-h: 76px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── ANIMATIONS ── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-anim].is-visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-transform: none;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--pine);
  border-color: var(--pine);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,46,27,0.25);
}

.btn-accent {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-accent:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,46,0.3);
}

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

.btn-white {
  background: var(--white);
  color: var(--pine);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--frost);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

.btn-full { width: 100%; }

/* ── SECTION HEADERS ── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--fern);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--gray-900);
  margin-bottom: 18px;
  font-optical-sizing: auto;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }
.section-header-light .section-label { color: var(--sage); }
.section-header-light .section-title { color: var(--white); }
.section-header-light .section-sub { color: rgba(255,255,255,0.6); }


/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark { color: var(--fern); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--pine);
}
.logo-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13.5px; font-weight: 600; color: var(--gray-500); transition: color 0.2s; }
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  padding: 10px 22px !important;
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: 60px;
  font-size: 12.5px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover { background: var(--pine) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27,46,27,0.92) 0%,
    rgba(36,58,36,0.82) 35%,
    rgba(47,94,47,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
}
.hero-proof-stars { color: var(--gold-light); font-size: 16px; letter-spacing: 2px; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }


/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  padding: 0;
  margin-top: -1px;
  background: var(--pine);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}
.trust-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 110px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-wide { grid-column: 1 / -1; }
.service-card-wide .service-img { height: 300px; }

.service-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-body { padding: 28px 28px 32px; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--fern);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.service-link:hover { color: var(--forest); }

.services-bottom {
  text-align: center;
  margin-top: 48px;
}
.services-bottom p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 16px;
}


/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 110px 0;
  background: var(--linen);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.gallery-location {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 110px 0;
  background: var(--off-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 45%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -16px;
  right: 40px;
  background: var(--forest);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.about-badge-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.about-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--frost);
  color: var(--fern);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ============================================
   SERVICE AREA
   ============================================ */
.area {
  padding: 110px 0;
  background: var(--pine);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
}

.area-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-light);
}
.area-card-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}

.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-towns span {
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 60px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.area-towns span:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.area-note {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 110px 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: all 0.35s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial blockquote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--frost);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--gray-900);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gray-300);
}


/* ============================================
   QUOTE FORM
   ============================================ */
.quote {
  padding: 110px 0;
  background: var(--off-white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.quote-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.quote-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.quote-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--frost);
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.quote-step strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
}
.quote-step span {
  font-size: 14px;
  color: var(--gray-500);
}

.quote-contact {
  padding: 20px 24px;
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184,150,46,0.15);
  margin-bottom: 28px;
}
.quote-contact p { font-size: 14px; color: var(--gray-700); margin: 0; }
.quote-contact a { color: var(--gold); font-weight: 700; }

.quote-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
}
.contact-row a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
}
.contact-row a:hover { color: var(--forest); }

/* FORM */
.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.quote-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.req { color: var(--fern); }

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: var(--gray-300); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--fern);
  box-shadow: 0 0 0 3px rgba(61,139,61,0.1);
  background: var(--white);
}

.quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a7d72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* PHOTO UPLOAD */
.photo-upload {
  position: relative;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s;
  cursor: pointer;
}
.photo-upload:hover { border-color: var(--sage); }
.photo-upload.dragging {
  border-color: var(--fern);
  background: var(--frost);
}

.photo-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.photo-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 24px;
  text-align: center;
  color: var(--gray-300);
  pointer-events: none;
}
.photo-upload-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
}
.photo-upload-hint {
  font-size: 12px;
  color: var(--gray-300);
}

.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.photo-previews:not(:empty) {
  padding: 12px;
}

.photo-preview {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 2px solid var(--gray-100);
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-300);
  margin-top: 16px;
}
.form-note a { color: var(--fern); font-weight: 600; }


/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,46,27,0.92), rgba(47,94,47,0.85));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 18px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-logo .logo-mark { color: var(--sage); }
.footer-logo .logo-name { color: var(--white); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--gray-500);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; }
  .about-layout { gap: 48px; }
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--gray-100);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block !important;
    padding: 16px 0 !important;
    font-size: 16px !important;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0 !important;
    background: none !important;
    color: var(--gray-700) !important;
  }
  .nav-cta-wrap { margin-top: 12px; }
  .nav-cta {
    text-align: center;
    justify-content: center;
    background: var(--forest) !important;
    color: var(--white) !important;
    padding: 16px !important;
    border-radius: 12px !important;
    margin-top: 8px;
  }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: 1 / -1; }
  .gallery-overlay { opacity: 1; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { right: 16px; bottom: -16px; }

  .area-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .quote-layout { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-content { padding: 120px 20px 70px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { flex-direction: column; gap: 6px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 18px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: auto; }

  .about-highlights { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }

  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .quote-form-wrap { padding: 28px 20px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
