* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #0f1d18;
  background: #f7f6f2;
}

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

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

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.side-nav {
  background: #0f3c2b;
  color: #f5f7f3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-note {
  font-size: 0.8rem;
  color: #d2e7da;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px 20px 80px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 29, 24, 0.08);
}

.hero {
  color: #f4fff5;
  background-image: url("assets/leaf-hero.svg");
  background-size: cover;
  background-position: center;
  min-height: 340px;
  justify-content: flex-end;
}

.hero .hero-inner {
  max-width: 520px;
  background: rgba(10, 30, 22, 0.6);
  padding: 18px 20px;
  border-radius: 20px;
}

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

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.card {
  padding: 18px;
  border-radius: 20px;
  background: #f2f6f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: #123d2d;
  color: #ecf8ef;
}

.inline-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a6c48;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f6f4a;
  color: #f4fff5;
  font-weight: 600;
  border: none;
}

.btn.outline {
  background: transparent;
  color: #1f6f4a;
  border: 1px solid #1f6f4a;
}

.btn.alt {
  background: #f1b640;
  color: #1b2d22;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: #ecf4ef;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f6f4a;
}

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

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6e4db;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: #4b5b53;
}

.footer {
  background: #0f3c2b;
  color: #dbe9df;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #dbe9df;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0f3c2b;
  color: #f4fff5;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

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

.hero .btn {
  background: #f1b640;
  color: #1b2d22;
}

.section-alt {
  background: #f0f5f1;
}

.section-dark {
  background: #123d2d;
  color: #ecf8ef;
}

.section-scenic {
  background-image: url("assets/forest-inline.svg");
  background-size: cover;
  background-position: center;
  background-color: #0f2f22;
  background-blend-mode: multiply;
  color: #eef8f0;
}

.section-scenic a {
  color: #eef8f0;
  text-decoration: underline;
}

.section-scenic .card {
  background: rgba(255, 255, 255, 0.08);
}

.section-dark a {
  color: #ecf8ef;
  text-decoration: underline;
}

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

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

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

.muted {
  color: #6a7c72;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .side-nav {
    width: 240px;
    min-height: 100vh;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  main {
    padding: 40px 48px 90px;
  }

  .split {
    flex-direction: row;
  }

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

  .card {
    flex: 1;
  }

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