* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 18px 0 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe3d2;
  color: #4a3726;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
  min-width: 260px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fffaf3;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 32, 26, 0.55);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.8rem;
}

.headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 12px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #2f5d50;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #f3e7d5;
  color: #2f3a2f;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #2f5d50;
  color: #2f5d50;
}

.btn:hover,
.btn:focus {
  background: #24483e;
  color: #fff;
}

.inline-link {
  color: #2f5d50;
  border-bottom: 1px solid #2f5d50;
  padding-bottom: 2px;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  background: #e2e8da;
  color: #2b3a28;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(32, 35, 28, 0.08);
}

.card img {
  width: 130px;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
  background: #dcd7cc;
}

.card .price {
  font-weight: 700;
  color: #2f5d50;
}

.media {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  background: #dcd7cc;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
}

.muted {
  color: #5e5e5e;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cfc8bb;
  font-size: 1rem;
}

.footer {
  padding: 40px 0 80px;
  background: #e9e3d8;
  margin-top: 60px;
}

.footer .split {
  padding: 0;
}

.disclaimer {
  font-size: 0.88rem;
  color: #4d4d4d;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2d25;
  color: #fff;
  padding: 12px 0;
  z-index: 20;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta button {
  background: #f3e7d5;
  color: #1f2d25;
}

#cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 70px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  display: none;
  z-index: 30;
}

#cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
