:root {
  --ink: #07130c;
  --soft-ink: #3f4e44;
  --muted: #66756c;
  --green-950: #052a13;
  --green-850: #0b461e;
  --green-700: #16752d;
  --green-500: #64b616;
  --green-100: #e9f5df;
  --sun: #e7a82f;
  --sky: #dcecef;
  --paper: #ffffff;
  --warm: #f7faf3;
  --line: #d8e7d1;
  --shadow: 0 22px 55px rgba(7, 19, 12, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(220, 236, 239, .55) 0, rgba(247, 250, 243, .82) 360px, #fff 820px);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.icon-sprite {
  display: none;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(216, 231, 209, .86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 242px;
  min-width: 190px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--soft-ink);
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--green-100);
  color: var(--green-950);
}

.nav-call {
  gap: 8px;
  color: #fff;
  background: var(--green-850);
}

.main-nav .nav-call:hover,
.main-nav .nav-call:focus-visible {
  color: #fff;
  background: var(--green-700);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  align-items: center;
  gap: 30px;
  width: min(1180px, calc(100% - 48px));
  min-height: 560px;
  margin: 0 auto;
  padding: 42px 0 38px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 74px auto 42px 44%;
  width: 360px;
  border-left: 12px solid var(--green-500);
  border-radius: 50%;
  transform: rotate(7deg);
  opacity: .88;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding: 24px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-850);
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow svg {
  color: var(--green-500);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 3.35rem;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-850), var(--green-500));
  box-shadow: 0 14px 34px rgba(22, 117, 45, .24);
}

.button-secondary {
  color: var(--green-950);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 458px);
  aspect-ratio: 316 / 416;
  overflow: hidden;
  box-shadow: var(--shadow);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 9% 62%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0;
}

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

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 34px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-copy h2 {
  max-width: 760px;
  font-size: 2rem;
}

.intro-copy p:not(.eyebrow) {
  max-width: 830px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.intro-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  min-height: 44px;
  padding: 10px 0 10px 32px;
  color: var(--green-950);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 32% 28%, var(--green-500), var(--green-850));
  border-radius: 50%;
}

.section-heading h2,
.contact-details h2,
.contact-form h2 {
  font-size: 2.15rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-item {
  min-height: 202px;
  padding: 22px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 19, 12, .06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #fff;
  background: radial-gradient(circle at 30% 22%, var(--green-500), var(--green-850));
  border-radius: 50%;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-item h3 {
  min-height: 52px;
  font-size: 1.08rem;
}

.service-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.landscape-band {
  position: relative;
  aspect-ratio: 2048 / 683;
  height: auto;
  overflow: hidden;
  border-top: 1px solid rgba(216, 231, 209, .75);
  border-bottom: 1px solid rgba(216, 231, 209, .75);
  background: var(--green-950);
}

.landscape-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 42, 19, .38), rgba(255, 255, 255, 0) 40%, rgba(5, 42, 19, .2));
}

.landscape-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-details,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-details {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.contact-details::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -92px;
  width: 240px;
  height: 240px;
  border: 20px solid rgba(100, 182, 22, .18);
  border-radius: 50%;
}

.contact-details > * {
  position: relative;
  z-index: 1;
}

.contact-lead {
  margin: 16px 0 26px;
  color: var(--soft-ink);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  color: var(--green-950);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 800;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(100, 182, 22, .16);
}

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--soft-ink);
  font-weight: 600;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green-700);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-850);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 88px;
  padding: 22px 24px;
  color: #fff;
  background: var(--green-950);
  font-weight: 700;
}

.site-footer img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-footer a {
  color: #dff3d4;
}

.footer-cookie-button {
  min-height: 34px;
  padding: 0 10px;
  color: #dff3d4;
  background: transparent;
  border: 1px solid rgba(223, 243, 212, .38);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 30;
  padding: 18px;
  background: linear-gradient(180deg, rgba(7, 19, 12, 0), rgba(7, 19, 12, .32));
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(7, 19, 12, .2);
  backdrop-filter: blur(16px);
}

.cookie-kicker {
  margin: 0 0 5px;
  color: var(--green-850);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-copy h2 {
  font-size: 1.35rem;
}

.cookie-copy p:not(.cookie-kicker) {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--soft-ink);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero::before {
    inset: 330px auto 28px 62%;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
    max-height: 430px;
    aspect-ratio: 16 / 9;
  }

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

  .intro-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .hero {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    width: 100%;
    padding: 12px 14px;
  }

  .brand {
    width: 210px;
  }

  .main-nav a {
    min-height: 40px;
    padding: 0 10px;
  }

  .hero {
    padding-top: 26px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .contact-details h2,
  .contact-form h2 {
    font-size: 1.65rem;
  }

  .intro-copy h2 {
    font-size: 1.55rem;
  }

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

  .service-item {
    min-height: 0;
  }

  .service-item h3 {
    min-height: 0;
  }

  .contact-details,
  .contact-form {
    padding: 22px;
  }

  .site-footer {
    flex-wrap: wrap;
    text-align: center;
  }

  .cookie-banner {
    padding: 12px;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
