* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1b1a;
  --muted: #5d5a57;
  --accent: #d0542a;
  --accent-dark: #b0401c;
  --cream: #f7f2ec;
  --sand: #efe6dc;
  --card: #ffffff;
  --border: #e4dbd1;
  --shadow: 0 12px 30px rgba(26, 21, 16, 0.12);
  --radius: 22px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 6vw 60px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.card.soft {
  background: var(--sand);
}

.card.dark {
  background: #22201f;
  color: #f6f2ed;
  border-color: transparent;
}

.card.dark a {
  color: #f6f2ed;
}

.card h3 {
  font-size: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-media {
  min-height: 220px;
  border-radius: var(--radius);
  background-image: url("https://images.unsplash.com/photo-1512058564366-18510be2db19?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.texture {
  background-image: url("https://images.unsplash.com/photo-1495521821757-a1efb6729352?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f3ee;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 10px;
}

.list-item strong {
  font-weight: 600;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button.light {
  background: #fff;
  color: var(--ink);
}

.highlight {
  background: #fff1e6;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.form-card {
  gap: 14px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.95rem;
}

.footer {
  background: #1a1715;
  color: #f6f2ed;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f6f2ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card img {
  border-radius: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.split .card {
  flex: 1 1 320px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.background-panel {
  background: var(--sand);
  padding: 24px;
  border-radius: var(--radius);
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .section-title {
    font-size: 2.2rem;
  }

  .main {
    padding-bottom: 90px;
  }
}
