:root {
  --bg: #f8f4ef;
  --ink: #1b1b1b;
  --muted: #5d5d5d;
  --accent: #c05621;
  --accent-soft: #f6d4c2;
  --dark: #2c1c12;
  --card: #ffffff;
  --stroke: #e6ddd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

header {
  padding: 28px 6vw 48px;
  background: linear-gradient(120deg, #fff2e9, #f8f4ef 40%, #ffffff 100%);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

nav .brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav .nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

nav .nav-links a {
  text-decoration: none;
  color: var(--muted);
}

nav .nav-cta a {
  background: var(--dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.split .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-card {
  background: var(--card);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px rgba(44, 28, 18, 0.08);
}

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

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

section {
  padding: 54px 6vw;
}

.section-highlight {
  background: #fff8f2;
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark a {
  color: #fff;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--accent-soft);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.card img {
  border-radius: 16px;
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  margin: 0;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-size: 1rem;
}

footer {
  background: #1c1a18;
  color: #f0e9e1;
  padding: 32px 6vw;
}

footer .footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f0e9e1;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

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

.cookie-actions button {
  flex: 1;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .split,
  .section-split {
    flex-direction: row;
    align-items: center;
  }

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

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  footer .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
