:root {
  --bg: #f3f7f2;
  --surface: rgba(255,255,255,0.96);
  --text: #132216;
  --muted: #5e7366;
  --line: rgba(16, 34, 23, 0.10);
  --primary: #0f3b1d;
  --primary-2: #1f6b34;
  --shadow: 0 20px 60px rgba(16, 34, 23, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 240, 106, 0.18), transparent 25%),
    linear-gradient(180deg, #f8fbf8 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 248, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 34, 23, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.logo-image {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain;
  display: block;
  flex: 0 0 44px;
  border-radius: 12px;
}

.logo-text { display: grid; gap: 0.1rem; }
.logo-text strong { font-size: 1rem; }
.logo-text small { color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a {
  color: var(--muted);
  font-weight: 700;
}
.site-nav a:hover { color: var(--text); }
.nav-cta {
  color: #fff !important;
  background: var(--primary);
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.section-pad { padding: 5.5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(238,245,239,0.84)); }
.section-dark {
  color: #fff;
  background: linear-gradient(135deg, #0d3118, #1c5d2d 60%, #26743a);
}
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-2);
  margin: 0 0 0.8rem;
}
.section-tag.light,
.light-copy { color: rgba(255,255,255,0.84); }
.section-head {
  max-width: 700px;
  margin-bottom: 2rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}
h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(197, 240, 106, 0.35);
  font-weight: 800;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #173a22;
}
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,18,11,0.78) 0%, rgba(8,18,11,0.60) 38%, rgba(8,18,11,0.28) 100%),
    linear-gradient(180deg, rgba(8,18,11,0.16), rgba(8,18,11,0.34));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: 2rem;
  align-items: end;
  padding: 5rem 0 4rem;
}
.hero-copy {
  color: #fff;
  max-width: 720px;
}
.hero-copy .lead { color: rgba(255,255,255,0.88); }
.hero-actions,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-badges span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  font-weight: 600;
  color: rgba(255,255,255,0.96);
}
.hero-panel {
  display: flex;
  justify-content: flex-end;
}
.panel-card,
.service-card,
.contact-card,
.quote-form,
.info-panel,
.gallery-card,
.metrics article {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}
.panel-card {
  max-width: 360px;
  border-radius: 30px;
  padding: 1.4rem;
}
.panel-tag {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  background: rgba(197, 240, 106, 0.26);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 1rem;
}
.mini-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.mini-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  font-weight: 600;
}
.mini-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-2);
  font-weight: 900;
}

.metrics { margin-top: -2.1rem; position: relative; z-index: 3; }
.metrics-grid,
.service-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}
.metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metrics article {
  padding: 1.35rem;
  border-radius: 24px;
}
.metrics p,
.contact-card span,
.info-panel p,
.faq-list p,
.form-help { color: var(--muted); margin-bottom: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: #ffffff;
  border: 1px solid rgba(15, 59, 29, 0.14);
  color: #1b4d28;
  box-shadow: var(--shadow);
  text-shadow: none;
}
.btn-light { background: #fff; color: var(--primary); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.full-width { width: 100%; }

.area-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  padding: 1.5rem;
  border-radius: 28px;
}
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-card.featured {
  background: linear-gradient(135deg, #103d1e, #1d6b34);
  color: #fff;
}
.service-card.featured p { color: rgba(255,255,255,0.84); }
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 900;
  background: rgba(197,240,106,0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}
.gallery-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
}
.gallery-large {
  grid-row: span 2;
  min-height: 580px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(10, 20, 12, 0.60);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.area-cards article {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}
.faq-list details {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.cta-band {
  background: linear-gradient(135deg, #112b17, #1d5b2d 60%, #2b7c40 100%);
  color: #fff;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.contact-grid { align-items: start; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0;
}
.contact-card {
  padding: 1.1rem;
  border-radius: 22px;
}
.info-panel {
  padding: 1.25rem;
  border-radius: 24px;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
}
.quote-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f9fbf9;
  color: var(--text);
}
.quote-form textarea { resize: vertical; }

.site-footer {
  padding: 3rem 0 5.5rem;
  background: #0f1f13;
  color: rgba(255,255,255,0.85);
}
.footer-grid {
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}
.footer-grid p {
  color: rgba(255,255,255,0.78);
  margin: 0 0 0.6rem;
}
.footer-grid a { color: #fff; }

.sticky-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 0.7rem;
  border-radius: 22px;
  background: rgba(15, 31, 19, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.sticky-bar a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 800;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-large {
    grid-row: span 1;
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .hero-content,
  .area-grid,
  .contact-grid,
  .faq-grid,
  .metrics-grid,
  .service-grid,
  .footer-grid,
  .contact-cards,
  .area-cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .hero { min-height: auto; }
  .hero-content {
    padding: 4rem 0 3rem;
    align-items: start;
    grid-template-columns: 1fr;
  }
  .hero-panel {
    justify-content: stretch;
  }
  .panel-card {
    max-width: none;
  }
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section-pad { padding: 4rem 0; }
  .hero-content { padding: 3.6rem 0 2.6rem; }
  .sticky-bar { display: grid; }
  .site-footer { padding-bottom: 7rem; }
  h1 { max-width: 12ch; }
  .gallery-card,
  .gallery-large { min-height: 260px; }
}


/* Strong fixes */
.hero .btn-secondary,
.btn-secondary {
  background: #ffffff !important;
  color: #1b4d28 !important;
  border: 1px solid rgba(15, 59, 29, 0.16) !important;
  text-shadow: none !important;
  opacity: 1 !important;
}
.hero .btn-secondary:hover,
.btn-secondary:hover {
  color: #12371d !important;
}


/* V4 hard fixes */
.logo-image{
  width:52px !important;
  height:52px !important;
  max-width:52px !important;
  max-height:52px !important;
  object-fit:contain !important;
  display:block !important;
  flex:0 0 52px !important;
}
.hero .btn-secondary{
  background:linear-gradient(135deg,#166534,#2f7d32) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.16) !important;
}


.facebook-wrap {
  display: grid;
}
.facebook-card {
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,245,239,0.92));
  border: 1px solid rgba(16, 34, 23, 0.08);
  box-shadow: var(--shadow);
  max-width: 900px;
}
.facebook-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
  font-weight: 800;
}
