:root {
  --ink: #1d2a22;
  --forest: #1f3f2f;
  --moss: #3c6b4b;
  --leaf: #6e9f74;
  --sand: #f4f1ea;
  --stone: #e3e0d7;
  --sun: #f0b04d;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(18, 35, 26, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0 8px;
  position: relative;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--moss);
}

.nav-tagline {
  max-width: 360px;
  font-size: 0.95rem;
  color: #43534a;
  align-self: flex-start;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section.alt {
  background: var(--stone);
}

.section.dark {
  background: var(--forest);
  color: var(--white);
}

.section.dark a {
  color: var(--white);
}

.section-layer {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 32px;
}

.section-offset {
  margin-left: 0;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.flex.row {
  flex-direction: column;
}

.hero {
  padding-top: 32px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.hero-media {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.hero-media.home {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
}

.hero-media.about {
  background-image: url("https://images.unsplash.com/photo-1496567644504-63c9734f76d5?auto=format&fit=crop&w=1600&q=80");
}

.hero-media.services {
  background-image: url("https://images.unsplash.com/photo-1482192505345-5655af888cc4?auto=format&fit=crop&w=1600&q=80");
}

.hero-media.contact {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
}

.hero-media.thanks {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80");
}

.hero-content {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--moss);
}

h1, h2, h3 {
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--moss);
  color: var(--white);
}

.btn.ghost {
  border-color: var(--moss);
  color: var(--moss);
  background: transparent;
}

.btn.sun {
  background: var(--sun);
  color: #3b2a14;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.card-media.biotop {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=900&q=80");
}

.card-media.workshop {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.card-media.water {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=900&q=80");
}

.card-media.masterplan {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a26db0f5b93d?auto=format&fit=crop&w=900&q=80");
}

.card-media.comms {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=900&q=80");
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--moss);
  font-size: 1.1rem;
}

.offset-panel {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7cfc5;
  font-size: 1rem;
  font-family: inherit;
  background: #fdfdfb;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  border-bottom: 1px solid var(--moss);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  box-shadow: var(--shadow);
}

.footer {
  padding: 42px 0 60px;
  background: #151f1a;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 90px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 998;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.asym-image {
  border-radius: 18px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.asym-image.forest {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80");
}

.asym-image.ridge {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a26db0f5b93d?auto=format&fit=crop&w=1600&q=80");
}

.asym-image.mist {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
}

.asym-image.valley {
  background-image: url("https://images.unsplash.com/photo-1496567644504-63c9734f76d5?auto=format&fit=crop&w=1600&q=80");
}

.asym-image.river {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1600&q=80");
}

.list-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice {
  font-size: 0.95rem;
  color: #3f4d43;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-media {
    flex: 1.1;
    min-height: 380px;
  }

  .hero-content {
    flex: 0.9;
    margin-top: 40px;
  }

  .flex.row {
    flex-direction: row;
    align-items: flex-start;
  }

  .section-offset {
    margin-left: 8%;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 300px;
  }

  .stats {
    flex-direction: row;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }

  .list-split {
    flex-direction: row;
  }

  .offset-panel {
    transform: translateX(-40px);
  }
}
