:root {
  color-scheme: light;
  --ink: #1c1f1c;
  --muted: #5c665c;
  --leaf: #2f6b4f;
  --moss: #5f8f72;
  --soil: #efe9e2;
  --stone: #f6f4f0;
  --sand: #f0ece6;
  --accent: #c9a66b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e3dfd6;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 0;
}

.split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.section .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section .media {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--moss);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--leaf);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: var(--accent);
  color: #2a241c;
}

.btn.ghost {
  background: transparent;
  color: var(--leaf);
  border-color: var(--leaf);
}

.link {
  text-decoration: underline;
}

.img-frame {
  background: var(--sand);
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e7e1d6;
}

.card .img-frame {
  padding: 8px;
}

.card .cover-img {
  height: 160px;
}

.card .price {
  font-weight: 700;
  color: var(--leaf);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--soil);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  margin-left: 12px;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e6dfd2;
}

.form-card label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d0c5;
  font-size: 0.95rem;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.bg-seasonal {
  background-image: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.bg-seasonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 20, 0.55);
}

.bg-seasonal .split {
  position: relative;
}

.bg-panel {
  background: #f1f0eb;
}

.footer {
  background: #ffffff;
  padding: 32px 28px 44px;
  border-top: 1px solid #e6e0d5;
}

.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #e7dfd5;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
  background: var(--accent);
  border: none;
  color: #2a241c;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    left: 24px;
    right: 24px;
    text-align: center;
  }
}
