:root {
  --green: #657b50;
  --dark-green: #173323;
  --cream: #f6f4ed;
  --white: #ffffff;
  --ink: #182119;
  --muted: #647067;
  --line: #dfe4dc;
  --shadow: 0 18px 45px rgba(20, 38, 25, .10);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23,51,35,.08);
}
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 92px; height: 70px; object-fit: contain; display: block; }
nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .95rem; }
nav a:hover { color: var(--green); }
.nav-cta { padding: 10px 17px; border: 1px solid var(--green); border-radius: 999px; color: var(--dark-green); }
.hero {
  min-height: 650px; display: flex; align-items: center; position: relative;
  background:
    linear-gradient(90deg, rgba(16,31,21,.88), rgba(16,31,21,.50), rgba(16,31,21,.15)),
    url("assets/logo.jpeg") center/cover no-repeat;
  background-color: #26392a;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,20,13,.35), transparent 50%); }
.hero-content { position: relative; z-index: 1; color: white; padding: 80px 0; max-width: 760px; }
.eyebrow { letter-spacing: .16em; font-size: .78rem; font-weight: 800; color: var(--green); margin: 0 0 12px; }
.hero .eyebrow { color: #dce5d5; }
h1 { font-size: clamp(3.2rem, 8vw, 6.5rem); line-height: .94; margin: 0 0 24px; letter-spacing: -.055em; }
.hero-text { max-width: 620px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: #eef2eb; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 23px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800; cursor: pointer;
  font: inherit;
}
.button.primary { background: var(--green); color: white; }
.button.primary:hover { background: #536741; }
.button.secondary { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.55); }
.button.light { background: white; color: var(--dark-green); }
.full { width: 100%; }
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 25px 18px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--dark-green); }
.trust-grid span { color: var(--muted); font-size: .88rem; }
.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
h2 { color: var(--dark-green); font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 18px; }
.section-heading p:last-child, .about p { color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: white; box-shadow: 0 4px 20px rgba(20,38,25,.03);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); transition: .2s ease; }
.icon { color: var(--green); font-weight: 900; letter-spacing: .08em; font-size: .8rem; }
.service-card h3 { font-size: 1.35rem; margin: 14px 0 8px; color: var(--dark-green); }
.service-card p { margin: 0; color: var(--muted); }
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.about-logo { background: white; border-radius: 24px; padding: 30px; box-shadow: var(--shadow); }
.about-logo img { width: 100%; display: block; }
.check-list { padding: 0; list-style: none; margin: 28px 0; }
.check-list li { padding: 8px 0 8px 28px; position: relative; color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.text-link { color: var(--dark-green); font-weight: 900; }
.callout { background: var(--dark-green); color: white; padding: 58px 0; }
.callout h2 { color: white; margin: 0; }
.callout-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.callout .eyebrow { color: #aebeaa; }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-card { border-left: 3px solid var(--green); padding: 8px 0 8px 18px; margin-top: 28px; display: grid; gap: 2px; }
.contact-card a { font-size: 1.15rem; font-weight: 800; color: var(--green); }
.quote-form { display: grid; gap: 16px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
label { font-weight: 800; font-size: .9rem; color: var(--dark-green); display: grid; gap: 7px; }
input, select, textarea {
  width: 100%; border: 1px solid #cfd8cf; border-radius: 11px; padding: 13px 14px;
  font: inherit; background: #fbfcfa; color: var(--ink); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(101,123,80,.12); }
footer { background: #0f2418; color: white; padding: 36px 0 18px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-inner strong, .footer-inner span { display: block; }
.footer-inner span { color: #aebeaa; font-size: .85rem; }
.footer-inner a { color: #dbe6d5; font-weight: 800; }
.copyright { color: #7e9184; font-size: .78rem; padding-top: 30px; margin-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
@media (max-width: 800px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 610px; background-position: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid, .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .about-grid, .quote-grid { gap: 40px; }
  .callout-inner { align-items: flex-start; flex-direction: column; }
  .section { padding: 75px 0; }
}
@media (max-width: 500px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { height: 70px; }
  .brand img { width: 78px; height: 58px; }
  .hero-content { padding: 65px 0; }
  h1 { font-size: 3.3rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .service-card { padding: 24px; }
}


.gallery-section { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 270px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe4dc;
  box-shadow: 0 8px 25px rgba(20,38,25,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8,20,12,.72));
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: white;
  font-weight: 800;
  font-size: .95rem;
}
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }
  .gallery-large { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }
  .gallery-large, .gallery-wide { grid-column: auto; grid-row: auto; }
}
