* {
  box-sizing: border-box;
}

:root {
  --forest: #0e3b2e;
  --moss: #2a6b54;
  --leaf: #6aa84f;
  --sand: #f4f0e6;
  --mist: #eef4f1;
  --ink: #1a1f1c;
  --accent: #ef8b5a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--mist);
}

a {
  color: var(--moss);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--sand);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e0d9cc;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.sidebar-note {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  padding: 56px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 34, 26, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.stacked {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--forest);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 4px solid var(--leaf);
  background: #fff;
  border-radius: 12px;
}

.quote {
  background: var(--moss);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-band {
  background: var(--sand);
  border-top: 1px solid #e2dacd;
  border-bottom: 1px solid #e2dacd;
}

.cta-band .btn {
  align-self: flex-start;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery img {
  width: 100%;
  border-radius: 18px;
  height: 220px;
  object-fit: cover;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: #fff;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: var(--forest);
}

.form-panel {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7dcd7;
  font-size: 14px;
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
}

.footer {
  padding: 30px 8%;
  background: #111916;
  color: #d7e3dc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #d7e3dc;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d1c16;
  color: #fff;
  padding: 16px 8%;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .split-row {
    flex-direction: row;
    align-items: stretch;
  }

  .split-row > div,
  .split-row > img {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery img {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }
}

@media (max-width: 720px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0d9cc;
  }
}
