:root {
  --bg: #f7f4ef;
  --ink: #1f2a33;
  --muted: #4f5b66;
  --accent: #f2b072;
  --accent-dark: #d98944;
  --soft: #e7eef2;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(26, 34, 42, 0.12);
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 22px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  border-bottom: 1px solid rgba(31, 42, 51, 0.08);
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 52px 0;
}

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

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

.split .eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22rem;
  color: var(--muted);
}

.split h1,
.split h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.15;
}

.split p {
  margin: 0;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #1f2a33;
  font-weight: 700;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn.alt {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: #1f2a33;
  color: #fdf7f0;
}

.section-dark p,
.section-dark .eyebrow {
  color: rgba(253, 247, 240, 0.8);
}

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

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.card h3 {
  margin: 0;
}

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

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

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 42, 51, 0.08);
  font-size: 0.9rem;
}

.form-panel {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 51, 0.18);
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(31, 42, 51, 0.08);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  background: #1f2a33;
  color: #fdf7f0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

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

.list-split {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-split li {
  background: rgba(31, 42, 51, 0.06);
  padding: 12px 16px;
  border-radius: 14px;
}

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

@media (min-width: 900px) {
  .nav-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

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

  .split .split-content,
  .split .split-media {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
