@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --ink: #1e1c1a;
  --muted: #6c625b;
  --paper: #f7f1ea;
  --wash: #efe5db;
  --accent: #b55c4a;
  --accent-dark: #8f3f32;
  --leaf: #c9b89e;
  --deep: #2a2520;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 20px 100px;
}

.nav-floating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 40px rgba(30, 28, 26, 0.08);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  gap: 16px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--paper);
}

.cta-primary,
.cta-secondary,
.cta-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: var(--accent);
  color: var(--white);
}

.cta-secondary {
  background: transparent;
  color: var(--accent);
}

.cta-inline {
  border: none;
  padding: 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--wash);
  padding: 30px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  background: var(--leaf);
  border-radius: 60% 40% 45% 55%;
  opacity: 0.7;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.asym-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(30, 28, 26, 0.08);
}

.asym-panel h2,
.asym-panel h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.85rem;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.quote {
  background: var(--deep);
  color: var(--white);
  padding: 24px;
  border-radius: 24px;
  font-style: italic;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid #e6d8cb;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 28px rgba(30, 28, 26, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cbbd;
  font-size: 1rem;
  font-family: inherit;
  background: #fffdfb;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: var(--deep);
  color: var(--white);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  background: var(--wash);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(30, 28, 26, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  .page {
    padding: 40px 50px 120px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .asym-row,
  .asym-row.reverse {
    flex-direction: row;
    align-items: stretch;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .asym-panel {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .form-grid {
    display: flex;
    gap: 16px;
  }

  .form-grid .form-row {
    flex: 1;
  }
}
