* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1a1a;
  --muted: #6b5f5d;
  --accent: #8a3e48;
  --accent-dark: #5e2830;
  --sand: #f6f0ea;
  --cream: #fffaf4;
  --stone: #e8ddd4;
  --rose: #f2d7d2;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 12px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 64px;
  background: linear-gradient(120deg, rgba(255, 250, 244, 0.95), rgba(255, 250, 244, 0.6)), url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  margin: 0 5vw;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.15;
}

.hero p {
  max-width: 520px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-contrast {
  background: var(--sand);
}

.section-soft {
  background: var(--rose);
}

.section h2 {
  font-size: 1.7rem;
}

.section p {
  color: var(--muted);
  max-width: 720px;
}

.story-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-layout img {
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(31, 26, 26, 0.08);
}

.card img {
  border-radius: 14px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bullet {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: var(--stone);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 26, 26, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8c9c4;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e5d9d5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(31, 26, 26, 0.2);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(31, 26, 26, 0.18);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.thanks {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .story-layout,
  .two-col,
  .cards,
  .pricing {
    flex-direction: row;
  }

  .story-layout > div,
  .two-col > div,
  .cards .card,
  .pricing-item {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }
}
