* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f6f4f1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  gap: 24px;
  background: #f6f4f1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ece6dd;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: #d7cbbb;
  transform: translateY(-1px);
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5147;
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 70px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 320px;
  padding: 32px 24px 32px 0;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0 0 16px;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #2f4a3b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: #6c6f3e;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: #1f3a2c;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #5a5e34;
}

.hero-media {
  flex: 1 1 320px;
  background: #c6c0b4;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--offset-left {
  margin-left: 6vw;
  background: #fff;
  border-radius: 32px;
  padding: 50px;
}

.section--offset-right {
  margin-right: 6vw;
  background: #efe8dd;
  border-radius: 32px;
  padding: 50px;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.split > * {
  flex: 1 1 280px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(26, 31, 22, 0.08);
}

.card-media {
  background: #c6c0b4;
  border-radius: 18px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 600;
  color: #2f4a3b;
}

.inline-link {
  color: #2f4a3b;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.inline-link:hover,
.inline-link:focus {
  color: #1f3a2c;
}

.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
  position: relative;
}

.bg-forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 24, 0.6);
  border-radius: 32px;
}

.bg-forest > * {
  position: relative;
  z-index: 1;
}

.bg-calm {
  background-image: url("https://images.unsplash.com/photo-1495360010541-f48722b34f7d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
  position: relative;
}

.bg-calm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 35, 40, 0.55);
  border-radius: 32px;
}

.bg-calm > * {
  position: relative;
  z-index: 1;
}

.form-panel {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(38, 44, 33, 0.1);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cfc7bd;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #5a5147;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2f4a3b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #1f3a2c;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1f2328;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #f6f4f1;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus {
  border-bottom-color: #f6f4f1;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d9d4cc;
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: #1f2328;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 6vw 40px;
  align-items: center;
}

.page-hero .hero-media {
  min-height: 280px;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-stack strong {
  display: block;
}

.notice {
  background: #efe8dd;
  border-radius: 18px;
  padding: 18px;
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: 100%;
  }

  .section--offset-left,
  .section--offset-right {
    margin: 0;
    padding: 32px 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
