* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c2b1f;
  --muted: #4f5f54;
  --bg: #f6f4ee;
  --surface: #ffffff;
  --accent: #2c6e49;
  --accent-2: #d08c2d;
  --line: #d9d4c8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #eef0e6;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand {
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.5rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(120deg, rgba(28, 43, 31, 0.75), rgba(28, 43, 31, 0.15)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: var(--surface);
  padding: 3rem 2rem;
  border-radius: 24px;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--surface);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(19, 32, 22, 0.08);
}

.section.light {
  background: #f0efe9;
  box-shadow: none;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split .copy {
  flex: 1;
}

.split .visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #e4eadf;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  background: var(--surface);
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  border-left: 4px solid var(--accent-2);
  padding-left: 1rem;
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #2c6e49;
  color: var(--surface);
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-band img {
  border-radius: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.5rem;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 16px;
}

.footer {
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  max-width: 320px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  display: none;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.legal {
  max-width: 860px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-inline {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    border-bottom: none;
    border-right: 1px solid var(--line);
    min-height: 100vh;
    position: relative;
  }

  .content {
    padding: 2.5rem 3rem;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    width: calc(50% - 0.6rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .image-band {
    flex-direction: row;
  }
}
