@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --bg: #f7f5f2;
  --bg-alt: #ece7e1;
  --ink: #201a16;
  --muted: #6f645c;
  --accent: #5b3f6b;
  --accent-soft: #e4d6ee;
  --warm: #f5cfa1;
  --border: #d6ccc2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  background: linear-gradient(130deg, rgba(91, 63, 107, 0.15), rgba(245, 207, 161, 0.3)),
    url("../img/hero-texture.svg");
  background-size: cover;
  padding: 64px 0 80px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 18px;
}

.section-intro {
  max-width: 650px;
  color: var(--muted);
  margin: 0 0 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(32, 26, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border-left: 4px solid var(--accent);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.service-selectors {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.service-button.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.form-wrap label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #15110f;
  color: #f8f5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(32, 26, 22, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2a2420;
  color: #fdfbf9;
  padding: 18px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #fdfbf9;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #fdfbf9;
  color: #2a2420;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  margin-top: 16px;
}

.background-panel {
  background: url("../img/section-wave.svg");
  background-size: cover;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal {
  max-width: 760px;
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }

  .price-list {
    flex-direction: row;
  }

  .service-selectors {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
