* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --deep-green: #0f2b20;
  --forest: #1f4a39;
  --moss: #5f7a63;
  --sand: #f1efe9;
  --clay: #d5c9b8;
  --sun: #f2c76d;
  --ink: #162019;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav__brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav__cta {
  margin-left: auto;
  background: var(--deep-green);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 60px 0 80px;
}

.hero__wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__content {
  max-width: 540px;
}

.hero__kicker {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--moss);
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 16px 0;
}

.hero__summary {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.hero__image {
  position: relative;
  margin-left: auto;
  max-width: 560px;
}

.hero__image img {
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(15, 43, 32, 0.15);
}

.hero__badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  width: min(220px, 80%);
  box-shadow: 0 18px 40px rgba(15, 43, 32, 0.15);
  font-size: 0.9rem;
}

.section {
  padding: 80px 0;
}

.section--tint {
  background: var(--sand);
}

.section--deep {
  background: var(--deep-green);
  color: var(--white);
}

.section--forest {
  background-image: linear-gradient(rgba(15, 43, 32, 0.65), rgba(15, 43, 32, 0.65)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}

.section__eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--moss);
  margin-bottom: 10px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split__media {
  position: relative;
}

.split__media img {
  border-radius: 20px;
}

.split__overlay {
  position: absolute;
  right: -12px;
  top: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(15, 43, 32, 0.12);
  width: min(240px, 80%);
  font-size: 0.9rem;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 25px rgba(15, 43, 32, 0.12);
}

.offset-card:nth-child(2) {
  transform: translateX(12px);
}

.offset-card:nth-child(3) {
  transform: translateX(-8px);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  border: 1px solid var(--clay);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item__price {
  font-weight: 700;
  color: var(--forest);
}

.cta-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  border-left: 3px solid var(--sun);
  padding-left: 16px;
}

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(15, 43, 32, 0.15);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--clay);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

button {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-row img {
  border-radius: 18px;
}

.footer {
  padding: 40px 0 60px;
  background: var(--ink);
  color: var(--white);
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(15, 43, 32, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(360px, 90%);
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(15, 43, 32, 0.2);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-actions .secondary {
  background: var(--clay);
  color: var(--ink);
}

.sidebar-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-card {
  background: var(--sand);
  border-radius: 18px;
  padding: 20px;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.highlight-box {
  border-radius: 18px;
  padding: 22px;
  background: rgba(242, 199, 109, 0.2);
}

.spacer-sm {
  height: 16px;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal {
  padding: 60px 0;
}

.legal p {
  margin-bottom: 16px;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
  }

  .hero__wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset-stack {
    flex-direction: row;
  }

  .service-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .metrics {
    flex-direction: row;
  }

  .image-row {
    flex-direction: row;
  }

  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .sidebar-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .sidebar-layout .sidebar-card {
    flex: 0 0 240px;
  }

  .sidebar-layout .main-content {
    flex: 1;
  }
}
