* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5e5b57;
  --sand: #f7f0e6;
  --stone: #ece5d9;
  --olive: #7b8450;
  --spice: #d8704f;
  --sage: #d8e0c8;
  --accent: #2b4d3f;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 8vw 8px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: var(--spice);
}

.hero {
  padding: 48px 8vw 24px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--sand);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.hero-card p {
  color: var(--muted);
}

.primary-btn {
  background: var(--spice);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
}

.ghost-btn {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: transparent;
}

.section {
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--stone);
}

.section.soft {
  background: var(--sage);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--olive);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-grid .story-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.split-band {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-band .panel {
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
}

.inline-cta {
  color: var(--spice);
  font-weight: 600;
  text-decoration: underline;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d1c7;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 32px 8vw 48px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal {
  font-size: 0.8rem;
  color: #d7d0c8;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  font-weight: 600;
}

.pill.primary {
  background: var(--accent);
  color: var(--white);
}

@media (min-width: 900px) {
  .hero-wrap {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-image {
    flex: 1;
    display: flex;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-grid .story-row {
    flex: 1;
  }

  .split-band {
    flex-direction: row;
  }

  .split-band .panel {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-row {
    flex: 1 1 45%;
  }

  .form-shell {
    flex-direction: row;
    gap: 28px;
  }

  .form-shell form {
    flex: 1;
  }

  .form-shell .form-aside {
    flex: 1;
  }
}
