* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1f2520;
  --muted: #5e6a60;
  --accent: #1f6b54;
  --accent-dark: #15513f;
  --sand: #efe8df;
  --leaf: #dde9df;
  --sun: #f4e5c8;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--sand);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent-dark);
}

.sidebar .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  background: var(--leaf);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 0.9;
  background: #cfdcd2;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 28px;
  background: var(--card);
  display: flex;
  gap: 24px;
}

.section-alt {
  background: var(--sun);
}

.section-dark {
  background: #243128;
  color: #f4f6f4;
}

.section-dark a {
  color: #f4f6f4;
  text-decoration: underline;
}

.section-column {
  flex-direction: column;
}

.section-split {
  align-items: center;
}

.section-split .text {
  flex: 1.1;
}

.section-split .media {
  flex: 0.9;
  background: #d9e2da;
}

.section-split .media img {
  width: 100%;
  height: 100%;
}

.highlight {
  font-size: 1.1rem;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid #e3ded7;
  padding: 20px;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #e2e7e1;
}

.card-media img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: var(--leaf);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7cfc6;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-start;
  margin-top: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d7d2cb;
  padding: 16px;
  width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.note {
  background: #f0f3ef;
  padding: 16px;
  border-left: 4px solid var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-banner {
  background: #2b3a30 url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1400&q=80") center/cover no-repeat;
  padding: 64px 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-banner .btn {
  align-self: flex-start;
}

@media (max-width: 980px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: auto;
  }

  .hero,
  .section {
    flex-direction: column;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}
