:root {
  color-scheme: light;
  --cream: #f7f4ef;
  --ink: #2b2b2b;
  --accent: #2d3b2d;
  --accent-soft: #b36b2c;
  --stone: #e7e1d8;
  --sand: #f1e7d6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 16px;
  background: #fff;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ad-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: #5a544d;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 64px 6vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-section .media {
  flex: 1 1 320px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-cream {
  background: #e7e1d8;
}

.bg-sand {
  background: #d8d2c9;
}

.bg-warm {
  background: #efe5d7;
}

.bg-soft {
  background: #e2d9cd;
}

.bg-pearl {
  background: #eee5d9;
}

.bg-clay {
  background: #e8dfd2;
}

.split-section .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e7e1d8;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  flex: 1 1 140px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  background: #e7e1d8;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.bg-story {
  background: linear-gradient(120deg, rgba(247, 244, 239, 0.8), rgba(241, 231, 214, 0.8)),
    url("https://images.unsplash.com/photo-1449247709967-d4461a6a6103?w=1400&q=80") center/cover no-repeat;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d0c7;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-soft);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 5;
  font-weight: 600;
}

.site-footer {
  background: #fff;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #5a544d;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #1f1f1f;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-page {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-page h1 {
  margin: 0;
}
