* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand: #f3f1ea;
  --leaf: #2d4a3a;
  --pine: #1f3328;
  --mist: #e6ece8;
  --stone: #c9d2cc;
  --sun: #c9a66b;
  --charcoal: #1b1b1b;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--pine);
  color: #ffffff;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 1.4;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-link {
  display: inline-block;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--sun);
}

.sidebar-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 40px 80px;
  background: var(--sand);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
}

.hero-image {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: var(--mist);
  min-height: 220px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.section {
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-box {
  flex: 1;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layered {
  background: var(--mist);
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: rgba(45, 74, 58, 0.08);
  border-radius: 50%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--mist);
}

.price {
  font-weight: 600;
  color: var(--leaf);
}

.btn {
  background: var(--leaf);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
}

.btn:hover,
.btn:focus {
  background: var(--pine);
}

.text-link {
  color: var(--leaf);
  font-weight: 600;
  text-decoration: underline;
}

.text-link:hover,
.text-link:focus {
  color: var(--pine);
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.footer {
  padding: 26px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #4b4b4b;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: 1px solid var(--leaf);
  background: transparent;
  color: var(--leaf);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.primary {
  background: var(--leaf);
  color: #ffffff;
}

.background-forest {
  background-image: url("https://images.unsplash.com/photo-1426604966848-d7adac402bff?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-forest .section-title,
.background-forest p {
  color: #ffffff;
}

.background-overlay {
  background: rgba(31, 51, 40, 0.72);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-headline {
  font-size: 28px;
  margin-bottom: 8px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .content {
    padding: 28px 24px 90px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
