:root {
  --forest: #173f32;
  --forest-dark: #0e2d24;
  --leaf: #527a55;
  --sage: #a7b99b;
  --sand: #f3eee3;
  --cream: #fbf9f3;
  --clay: #b56f4a;
  --ink: #203029;
  --muted: #637169;
  --white: #fff;
  --line: rgba(23, 63, 50, 0.14);
  --shadow: 0 18px 48px rgba(20, 48, 38, 0.11);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(14, 45, 36, .96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: .02em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50% 50% 45% 55%;
  transform: rotate(-20deg);
}

.brand-mark::before {
  position: absolute;
  width: 1px;
  height: 25px;
  left: 16px;
  top: 4px;
  background: var(--white);
  content: "";
  transform: rotate(26deg);
}

.brand-mark::after {
  position: absolute;
  width: 11px;
  height: 7px;
  left: 8px;
  top: 9px;
  border-top: 1px solid var(--white);
  content: "";
  transform: rotate(26deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.79);
  font-size: .94rem;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--forest-dark);
  background: var(--sand);
  font-weight: 700;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: var(--forest-dark);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: .2s ease;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 76% 38%, transparent 0 11%, rgba(142,173,120,.4) 11.5% 16%, transparent 16.5%),
    radial-gradient(ellipse at 84% 18%, rgba(180,197,142,.48) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 90% 70%, rgba(107,143,86,.65) 0 13%, transparent 13.5%),
    radial-gradient(ellipse at 70% 76%, rgba(64,108,70,.9) 0 18%, transparent 18.5%),
    linear-gradient(110deg, rgba(8,35,26,.99) 0%, rgba(19,65,48,.92) 52%, rgba(54,95,59,.65) 100%),
    #173f32;
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  content: "";
}

.hero::before {
  width: 430px;
  height: 660px;
  right: -85px;
  bottom: -210px;
  transform: rotate(32deg);
}

.hero::after {
  width: 260px;
  height: 480px;
  right: 160px;
  top: -220px;
  transform: rotate(-35deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 70%);
  padding-block: 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #c5d6af;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display-serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  letter-spacing: -.045em;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--forest-dark);
  background: var(--sand);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.btn-secondary {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.btn-green {
  color: var(--white);
  background: var(--forest);
}

.btn-outline {
  border-color: var(--line);
  color: var(--forest);
  background: transparent;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 24px 0;
  list-style: none;
}

.trust-list li {
  padding: 4px 30px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
}

.trust-list li:last-child {
  border: 0;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--sand);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4rem);
  letter-spacing: -.035em;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255,255,255,.67);
}

.service-grid,
.project-grid,
.review-grid,
.values-grid {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(23,63,50,.02);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 18px;
  color: var(--forest);
  background: #e7ecdf;
  font-size: 1.45rem;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--muted);
}

.text-link {
  color: var(--forest);
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  gap: 70px;
}

.garden-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 180px 180px 24px 24px;
  background:
    radial-gradient(ellipse at 25% 75%, #536f43 0 15%, transparent 15.5%),
    radial-gradient(ellipse at 74% 45%, #87a36d 0 18%, transparent 18.5%),
    radial-gradient(ellipse at 83% 82%, #36573c 0 22%, transparent 22.5%),
    radial-gradient(ellipse at 38% 22%, #b8c99b 0 13%, transparent 13.5%),
    linear-gradient(155deg, #d9d2b8 0 34%, #76906b 34% 58%, #294d3c 58%);
  box-shadow: var(--shadow);
}

.garden-visual::after {
  position: absolute;
  width: 46%;
  height: 110%;
  right: 17%;
  top: 30%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(90deg, #d2b68c, #f0dfbd, #b99c72);
  content: "";
  transform: rotate(18deg);
}

.split-copy {
  align-self: center;
}

.split-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4rem);
  letter-spacing: -.035em;
}

.split-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 13px;
  align-items: center;
}

.check-list li::before {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  content: "✓";
  font-size: .75rem;
  font-weight: 900;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}

.stars {
  margin-bottom: 18px;
  color: #d7b778;
  letter-spacing: .16em;
}

.review-card blockquote {
  margin: 0 0 28px;
  color: rgba(255,255,255,.84);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.reviewer {
  color: rgba(255,255,255,.58);
  font-size: .86rem;
}

.area-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.area-copy {
  padding: 52px;
}

.area-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.area-copy p {
  color: var(--muted);
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.town-list span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--sand);
  font-size: .83rem;
  font-weight: 700;
}

.map-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    linear-gradient(34deg, transparent 46%, rgba(255,255,255,.75) 47% 49%, transparent 50%),
    linear-gradient(118deg, transparent 45%, rgba(255,255,255,.65) 46% 49%, transparent 50%),
    radial-gradient(circle at 65% 52%, rgba(23,63,50,.16) 0 8%, transparent 8.5%),
    #ccd4bd;
}

.map-pin {
  position: absolute;
  left: 63%;
  top: 45%;
  width: 42px;
  height: 42px;
  border: 8px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--forest);
  box-shadow: 0 10px 22px rgba(23,63,50,.23);
  transform: rotate(-45deg);
}

.page-hero {
  padding: 100px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 32%, rgba(154,180,128,.25) 0 13%, transparent 13.5%),
    linear-gradient(120deg, var(--forest-dark), var(--forest));
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.page-hero p {
  max-width: 640px;
  color: rgba(255,255,255,.72);
  font-size: 1.15rem;
}

.detail-list {
  display: grid;
  gap: 25px;
}

.detail-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.detail-number {
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.detail-item h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.detail-item p {
  margin: 0;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 30px;
  border-top: 1px solid rgba(255,255,255,.22);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 34px;
  color: #b8cba2;
  content: "0" counter(process);
  font-weight: 800;
}

.process-step p {
  color: rgba(255,255,255,.62);
  font-size: .93rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.filter-btn {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: var(--forest);
}

.project-grid {
  grid-template-columns: repeat(2, 1fr);
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

.project-card.hidden {
  display: none;
}

.project-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.project-image::before,
.project-image::after {
  position: absolute;
  content: "";
}

.scene-1 {
  background: radial-gradient(ellipse at 78% 70%, #274f38 0 22%, transparent 22.5%), linear-gradient(145deg, #d7c9a8 0 35%, #8fa47a 35% 62%, #456648 62%);
}

.scene-2 {
  background: radial-gradient(circle at 25% 25%, #b5ca98 0 15%, transparent 15.5%), linear-gradient(165deg, #718d67 0 42%, #d4b98a 42% 60%, #3b6249 60%);
}

.scene-3 {
  background: linear-gradient(30deg, transparent 45%, rgba(255,255,255,.35) 45% 50%, transparent 50%), linear-gradient(140deg, #4d7259, #b9c997 48%, #d0b281 49%);
}

.scene-4 {
  background: radial-gradient(ellipse at 55% 60%, #d3c4a2 0 25%, transparent 25.5%), radial-gradient(circle at 15% 30%, #72905f 0 18%, transparent 18.5%), linear-gradient(135deg, #adc28e, #31573f);
}

.scene-5 {
  background: linear-gradient(115deg, transparent 37%, #d5bc91 38% 62%, transparent 63%), radial-gradient(circle at 78% 25%, #a8c18a 0 16%, transparent 16.5%), linear-gradient(150deg, #416747, #829b6e);
}

.scene-6 {
  background: radial-gradient(circle at 70% 40%, #b9cc9c 0 14%, transparent 14.5%), radial-gradient(ellipse at 30% 75%, #365944 0 24%, transparent 24.5%), linear-gradient(140deg, #769365, #d8c69f);
}

.project-image::after {
  width: 65%;
  height: 55%;
  right: -12%;
  bottom: -28%;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
}

.project-body {
  padding: 26px 28px 29px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  color: var(--leaf);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-body h3 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.project-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
}

.contact-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.contact-copy > p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-detail {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-detail small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--forest);
  font-size: 1.08rem;
}

.form-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .83rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #cdd4cc;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #fdfcf8;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(82,122,85,.12);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.form-success {
  display: none;
  padding: 34px;
  border: 1px solid #b9cfb4;
  border-radius: 18px;
  color: var(--forest-dark);
  background: #edf4e8;
  text-align: center;
}

.form-success.visible {
  display: block;
  animation: rise .35s ease;
}

.form-success .success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  font-size: 1.3rem;
}

.cta-band {
  padding: 75px 0;
  color: var(--white);
  background: var(--leaf);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
}

.site-footer {
  padding: 60px 0 26px;
  color: rgba(255,255,255,.7);
  background: #0a251d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 370px;
  margin-top: 20px;
  color: rgba(255,255,255,.55);
}

.footer-column h3 {
  color: var(--white);
  font-size: .92rem;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 9px 0;
  font-size: .9rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 3px;
    padding: 0 20px;
    background: var(--forest-dark);
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
  }

  .nav-links.open {
    max-height: 420px;
    padding-block: 18px 25px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    opacity: 1;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-links .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero-content {
    width: 85%;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid .service-card:last-child,
  .review-grid .review-card:last-child {
    grid-column: 1 / -1;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .garden-visual {
    min-height: 420px;
  }

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

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

  .map-visual {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .navbar {
    min-height: 68px;
  }

  .nav-links {
    inset: 68px 0 auto;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: 100%;
    padding-block: 75px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    padding: 11px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .service-grid,
  .review-grid,
  .project-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .service-card:last-child,
  .review-grid .review-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 28px;
  }

  .split {
    gap: 40px;
  }

  .garden-visual {
    min-height: 350px;
  }

  .area-copy,
  .form-card {
    padding: 28px;
  }

  .page-hero {
    padding: 75px 0 65px;
  }

  .project-image {
    height: 245px;
  }

  .field-full {
    grid-column: auto;
  }

  .form-footer,
  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
