:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --ink: #1f1c19;
  --muted: #6b625c;
  --accent: #c26b3f;
  --accent-dark: #8d4b2b;
  --card: #ffffff;
  --sand: #eadfd5;
  --line: #e1d5ca;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 32px 20px 120px;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.15;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.layered {
  position: relative;
  padding: 28px;
  background: var(--card);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.layered::after {
  content: "";
  position: absolute;
  inset: 14px -16px -18px 24px;
  background: var(--sand);
  z-index: -1;
  border-radius: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset {
  margin-left: auto;
  max-width: 620px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.badge {
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  width: fit-content;
}

.prices {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 0;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.form-shell button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
}

@media (min-width: 900px) {
  .page {
    padding: 40px 60px 140px;
  }

  .nav-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .prices {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-row {
    flex: 1 1 260px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
  }
}
