* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1d;
  --muted: #5a5e66;
  --brand: #2e5b4f;
  --accent: #f2b45c;
  --cream: #f7f4ef;
  --sand: #efe7db;
  --rose: #f0d6cc;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", Arial, 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 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-direction: column;
  padding: 22px 6vw;
  gap: 18px;
  background: var(--card);
  border-bottom: 1px solid #e5e0d8;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.hero {
  padding: 48px 6vw 32px;
}

.hero-card {
  background: var(--card);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 18px 40px rgba(18, 24, 26, 0.1);
}

.hero-card .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.alt {
  background: var(--accent);
  color: #1c1a16;
}

.pill-link {
  color: var(--brand);
  font-weight: 600;
}

.section {
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--sand);
}

.section.rose {
  background: var(--rose);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(18, 24, 26, 0.08);
}

.card img {
  border-radius: 14px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chip {
  align-self: flex-start;
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #d8d0c7;
  font-size: 0.95rem;
  background: #fff;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #111917;
  color: #f8f5f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f8f5f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: var(--accent);
  color: #1c1a16;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 9;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fineprint {
  color: var(--muted);
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: #fff;
  padding: 14px;
  border-radius: 18px;
}

.inline-cta {
  color: var(--brand);
  font-weight: 700;
}

@media (min-width: 880px) {
  .hero-card {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .split {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 220px;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-row .card {
    flex: 1 1 260px;
  }
}
