:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --ink: #1f2a24;
  --accent: #2b7a4b;
  --accent-dark: #1e5a36;
  --sand: #efe7d8;
  --mist: #e7efe9;
  --stone: #d7d2c4;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(31, 42, 36, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 24px 40px;
  background: #fdfbf7;
  border-right: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #607069;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: var(--mist);
}

.sidebar-cta {
  padding: 16px;
  background: var(--mist);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.sidebar-cta button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: linear-gradient(120deg, rgba(43, 122, 75, 0.15), rgba(246, 244, 239, 0.8)),
    url("images/forest-canopy.svg") center/cover no-repeat;
  color: var(--ink);
}

.hero .section-inner {
  gap: 32px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .image-block {
  flex: 1;
  position: relative;
}

.image-badge {
  position: absolute;
  bottom: -16px;
  right: 12px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  height: 160px;
  object-fit: cover;
}

.layered {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: rgba(43, 122, 75, 0.08);
  border-radius: 40%;
  pointer-events: none;
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: italic;
  background: var(--mist);
  padding: 24px;
  border-radius: var(--radius);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.price-item span {
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cfd6cc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  background: #1e2a23;
  color: #f1f4ef;
  padding: 40px 6vw;
}

.footer .section-inner {
  gap: 10px;
}

.footer a {
  color: #f1f4ef;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent-dark);
  color: #fff;
}

.page-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  padding: 18px;
  background: var(--mist);
  border-radius: 12px;
}

.toggle {
  display: none;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--stone);
  }

  .nav {
    display: none;
  }

  .toggle {
    display: inline-flex;
    align-self: flex-start;
    background: none;
    border: 1px solid var(--accent-dark);
    color: var(--accent-dark);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
  }

  body.nav-open .nav {
    display: flex;
  }

  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
