@font-face {
  font-family: "Articulat";
  src: url("../assets/fonts/ArticulatCF-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Articulat";
  src: url("../assets/fonts/ArticulatCF-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Articulat";
  src: url("../assets/fonts/ArticulatCF-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --eco-green: #54a851;
  --eco-green-dark: #174b3b;
  --eco-green-deeper: #10392e;
  --eco-mint: #edf7f0;
  --eco-soft: #f5f9f6;
  --eco-ink: #17322d;
  --eco-muted: #60736e;
  --eco-line: #d7e7de;
  --eco-gold: #d89113;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--eco-ink);
  font-family: "Articulat", Arial, sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; }
a { color: inherit; }

.container { max-width: 1320px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.topbar {
  min-height: 60px;
  padding: 1rem 0;
  background: var(--eco-green);
  font-size: 18px;
  font-weight: 600;
}

.site-header .navbar { min-height: 136px; }
.brand-logo img { width: 220px; height: auto; }
.site-header .nav-link { margin: 0 .35rem; color: #fff; font-weight: 600; }
.site-header .navbar-collapse { visibility: visible; }
.site-header .nav-link:hover,
.site-header .nav-link:focus { color: #bde6bc; }
.site-header .navbar-toggler { border-color: rgba(255, 255, 255, .55); }
.site-header .navbar-toggler-icon { filter: invert(1); }

.nav-call,
.nav-book,
.site-button,
.button-outline {
  min-height: 46px;
  padding: .72rem 1.25rem;
  border-radius: .6rem;
  font-weight: 800;
}

.nav-call,
.site-button { border-color: var(--eco-green); background: var(--eco-green); color: #fff; }
.site-button { margin-top: 15px; }
.nav-book { border-color: #fff; background: #fff; color: var(--eco-green-dark); }
.button-outline { border-color: var(--eco-green); background: #fff; color: var(--eco-green-dark); }
.nav-call:hover,
.site-button:hover { border-color: var(--eco-green-dark); background: var(--eco-green-dark); color: #fff; }
.nav-book:hover,
.button-outline:hover { border-color: var(--eco-green); background: var(--eco-green); color: #fff; }

.reference-site em { color: var(--eco-green); font-style: normal; }
.reference-site h1,
.reference-site h2,
.reference-site h3 { text-transform: capitalize; }
.content-section,
.showcase-section { padding: var(--section-space) 0; }

.content-section h2,
.showcase-section h2 {
  margin: 0 0 1.2rem;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1;
}

.section-kicker {
  display: flex;
  align-items: flex-end;
  gap: .6rem;
  margin: 0 0 .9rem;
  color: var(--eco-green);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 1.6rem;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-copy { color: var(--eco-muted); font-size: 1.05rem; line-height: 1.7; }

.hero-section {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 190px 0 52px;
  background: var(--eco-green-dark);
  color: #fff;
}

.hero-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 67, 49, .96) 0%, rgba(13, 73, 54, .82) 42%, rgba(8, 45, 34, .46) 70%, rgba(5, 23, 18, .2) 100%),
    linear-gradient(0deg, rgba(5, 43, 31, .38) 0%, rgba(5, 43, 31, .08) 58%, rgba(3, 20, 15, .18) 100%);
  content: "";
}

.hero-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6%;
  width: 112%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-section .container,
.site-header .navbar .container {
  z-index: 1;
  width: min(calc(100% - 32px), 1437px);
  max-width: 1437px;
}

@media (min-width: 1720px) {
  .hero-section .container,
  .site-header .navbar .container {
    width: min(calc(100% - 32px), 1637px);
    max-width: 1637px;
  }
}
.hero-section h1 { max-width: 900px; margin: 0 0 1.35rem; font-size: 67px; font-weight: 800; letter-spacing: normal; line-height: .98; }
.hero-section h1 em { display: block; color: #77ba65; }
.hero-lead { max-width: 740px; margin-bottom: 1.45rem; color: #f0f5f1; font-size: clamp(.98rem, 1.1vw, 1.08rem); line-height: 1.6; }
.hero-points span,
.hero-summary span { padding: .45rem .7rem; border: 1px solid rgba(255, 255, 255, .4); border-radius: 999px; font-size: .72rem; font-weight: 600; }

.hero-summary { max-width: 470px; margin-left: auto; padding: 1.6rem 0 1.6rem 1.8rem; transform: translateY(98px); }
.hero-summary h2 { max-width: 420px; margin-bottom: .8rem; font-size: 35px; font-weight: 800; letter-spacing: normal; line-height: 1.08; }
.hero-summary > p:not(.section-kicker) { max-width: 440px; margin-bottom: 1rem; color: #e6eee8; font-size: .96rem; line-height: 1.55; }

.proof-section { position: relative; z-index: 2; background: #fff; }
.proof-grid { overflow: hidden; border: 1px solid var(--eco-line); border-radius: 0 0 .9rem .9rem; box-shadow: 0 1rem 2rem rgba(29, 79, 59, .08); }
.proof-grid article { padding: 1.6rem 1.7rem; border-right: 1px solid var(--eco-line); background: #fff; }
.proof-grid article:last-child { border-right: 0; }
.proof-grid b { display: block; color: var(--eco-green); font-size: 32px; font-weight: 800; line-height: 1; }
.proof-grid span { color: var(--eco-muted); font-size: .74rem; font-weight: 600; letter-spacing: normal; text-transform: uppercase; }

.about-image { position: relative; min-height: 560px; overflow: hidden; border-radius: 1.1rem; }
.about-image::after { position: absolute; inset: 0; background: linear-gradient(150deg, transparent 45%, rgba(10, 43, 32, .85)); content: ""; }
.about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-image span { position: absolute; z-index: 1; bottom: 1.6rem; left: 1.6rem; color: #fff; font-size: 32px; font-weight: 800; line-height: 1; }
.about-image b { position: absolute; z-index: 2; top: 1.25rem; right: 1.25rem; padding: 1rem; border-radius: .7rem; background: var(--eco-green); color: #fff; line-height: 1.15; }

@media (min-width: 992px) {
  #why-us .row > .col-lg-6:first-child { padding-right: 48px; }
  #why-us .row > .col-lg-6:last-child { padding-left: 48px; }
}

.trust-list { margin-top: 1.6rem; }
.trust-list article { padding: 1rem 0; border-top: 1px solid var(--eco-line); }
.trust-list article:last-child { border-bottom: 1px solid var(--eco-line); }
.trust-list i { display: grid; width: 2.5rem; height: 2.5rem; flex: 0 0 2.5rem; place-items: center; border: 1px solid var(--eco-green); border-radius: 50%; color: var(--eco-green); font-style: normal; }
.trust-list h3 { margin: 0 0 .2rem; font-size: 18px; font-weight: 800; }
.trust-list p { margin: 0; color: var(--eco-muted); font-size: .94rem; }

.showcase-section { background: var(--eco-mint); }
.service-gallery a { position: relative; display: block; height: 230px; overflow: hidden; border-radius: .8rem; color: #fff; text-decoration: none; }
.service-gallery a::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13, 47, 35, .88), transparent 68%); content: ""; }
.service-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-gallery a:hover img { transform: scale(1.05); }
.service-gallery span { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; left: 1rem; font-weight: 800; }

.showcase-section .button-outline,
.showcase-section .site-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.services-section { background: var(--eco-soft); }
.service-card { position: relative; display: flex; overflow: hidden; flex-direction: column; padding: 10px 10px 0; border: 1px solid #d9eadf; border-radius: 12px; background: #fff; }
.service-card > img { width: 100%; height: 225px; border-radius: 18px; object-fit: cover; object-position: center; transition: transform .5s ease, filter .5s ease; }
.service-card:hover > img { transform: scale(1.025); filter: saturate(1.06); }
.service-card > div { flex: 1; padding: 24px 22px 22px; }
.service-card h3 { margin: 0 0 10px; color: var(--eco-green-deeper); font-size: 24px; font-weight: 600; line-height: 1.18; }
.service-card p { margin: 0 0 22px; color: var(--eco-muted); font-size: 16px; line-height: 1.5; }
.service-link { display: inline-flex; width: fit-content; min-height: 44px; align-items: center; justify-content: center; gap: 8px; padding: 0 16px; border: 1px solid var(--eco-green); border-radius: 8px; background: var(--eco-green); color: #fff; font-size: 15px; font-weight: 600; line-height: 1; text-decoration: none; transition: background .25s ease, border-color .25s ease; }
.service-link span { color: inherit; font-size: 16px; transition: transform .25s ease; }
.service-link:hover { background: var(--eco-green-dark); color: #fff; }
.service-link:hover span { transform: translateX(4px); }
.services-section .row.g-4 { --bs-gutter-x: 28px; --bs-gutter-y: 28px; }

.reviews-section { background: #fff; }
.review-rating { color: var(--eco-gold); font-size: 1.25rem; letter-spacing: normal; }
.review-rating small { display: block; color: var(--eco-muted); font-size: .75rem; font-weight: 400; letter-spacing: normal; }
.review-card { display: flex; min-height: 320px; flex-direction: column; margin: 0; padding: 1.5rem; border: 1px solid var(--eco-line); border-radius: .9rem; background: #fff; }
.review-card i { height: 3rem; color: var(--eco-green); font-size: 3.5rem; font-style: normal; line-height: 1; }
.review-card h3 { margin: .4rem 0 0; font-size: 18px; font-weight: 800; }
.review-card small { color: var(--eco-muted); }
.review-card p { margin: 1rem 0; color: var(--eco-muted); font-size: .92rem; line-height: 1.6; }
.review-card span { margin-top: auto; color: var(--eco-gold); letter-spacing: normal; }

.contact-section { background: var(--eco-mint); }
.contact-list { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.contact-list li { padding: .75rem 0; border-bottom: 1px solid #bfd9c8; color: var(--eco-muted); }
.contact-list b { margin-right: .5rem; color: var(--eco-green); }
.contact-form { padding: 1.75rem; border-radius: .9rem; background: var(--eco-green); box-shadow: 0 1rem 2rem rgba(22, 75, 58, .16); }
.contact-form .form-label { margin-bottom: .35rem; color: #fff; font-size: .82rem; font-weight: 600; }
.contact-form .form-control,
.contact-form .form-select { min-height: 48px; border: 1px solid #dce8e1; border-radius: .45rem; }
.contact-form textarea.form-control { min-height: 120px; }
.contact-form .site-button { border-color: #fff; background: #fff; color: var(--eco-green-dark); }
.contact-form .site-button:hover { border-color: #bde6bc; background: #bde6bc; }

.site-footer { padding: 3.75rem 0 1.4rem; background: var(--eco-green-deeper); color: #d7e8df; }
.footer-logo { display: block; margin-bottom: 1rem; }
.footer-logo img { width: 190px; }
.site-footer strong { display: block; margin-bottom: .8rem; color: #fff; }
.site-footer a { display: block; margin: .4rem 0; color: #d7e8df; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer p { font-size: .9rem; }
.copyright { padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .15); }

.thankyou-wrapper { padding: 1rem; background: #fff; color: var(--eco-green-dark); text-align: center; font-weight: 800; }

@media (max-width: 991.98px) {
  .site-header .navbar { position: relative; min-height: 102px; }
  .site-header .navbar .container { position: relative; flex-wrap: nowrap; }
  .site-header .navbar-collapse { position: absolute; z-index: 40; top: 100%; right: 0; left: 0; margin-top: 0; padding: 1rem 20px; border-radius: 0; background: var(--eco-green-deeper); transition: none !important; }
  .site-header .navbar-collapse.collapsing { height: auto !important; overflow: visible; transition: none !important; }
  .site-header .nav-link { margin: 0; }
  .nav-actions { padding-top: .75rem; }
  .hero-section { min-height: 850px; padding-top: 190px; }
  .hero-section h1 { font-size: 58px; }
  .hero-summary h2 { font-size: 32px; }
  .content-section h2,
  .showcase-section h2 { font-size: 52px; }
  .hero-section .container,
  .site-header .navbar .container { width: 100%; max-width: 960px; padding-right: 20px; padding-left: 20px; }
  .hero-background { left: 0; width: 100%; object-position: 58% center; }
  .hero-summary { max-width: none; margin-left: 0; padding: 1.4rem; border: 1px solid rgba(255, 255, 255, .3); border-radius: .8rem; background: rgba(8, 43, 32, .35); transform: none; }
  .proof-grid article:nth-child(2) { border-right: 0; }
  .proof-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--eco-line); }
}

@media (max-width: 575.98px) {
  :root { --section-space: 4.25rem; }
  html,
  body,
  .reference-site,
  .hero-section { width: 100%; max-width: 100%; margin-right: 0; margin-left: 0; }
  .container { --bs-gutter-x: 2.5rem; }
  .topbar { min-height: 42px; padding: .65rem 0; font-size: .8rem; }
  .brand-logo img { width: 175px; }
  .nav-call { font-size: .78rem; }
  .nav-book { display: none; }
  .hero-section { min-height: 100svh; padding: 170px 0 4rem; }
  .hero-section::after { background: linear-gradient(0deg, rgba(15, 70, 52, .98) 0%, rgba(19, 76, 58, .88) 70%, rgba(7, 24, 19, .4) 100%); }
  .hero-section h1 { font-size: 45px; }
  .hero-points { display: none !important; }
  .hero-summary { margin-top: 1rem; }
  .proof-grid article { padding: 1.1rem; }
  .proof-grid b { font-size: 26px; }
  .proof-grid span { font-size: .65rem; }
  .content-section h2,
  .showcase-section h2 { font-size: 42px; }
  .hero-summary h2 { font-size: 28px; }
  .about-image { min-height: 420px; }
  .service-gallery a { height: 205px; }
  .contact-form { padding: 1.25rem; }
}
