* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1b16;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1b5c4b;
  text-decoration: none;
}

button {
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  background: #1b5c4b;
  color: #fff;
  border-radius: 999px;
}

button.secondary {
  background: #f0e7de;
  color: #1e1b16;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #f2efe9;
  color: #5a4a3a;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw 40px;
}

.hero-visual {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-image {
  flex: 1.1;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d8c9be;
}

.hero-copy {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 2.7rem;
  margin: 0;
  line-height: 1.2;
}

.hero-copy p {
  margin: 0;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .visual {
  flex: 1;
  min-width: 280px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #e2d4c9;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #d7c3b7;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 14px;
  background: #f0e7de;
  border-radius: 999px;
  font-size: 0.9rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing .card {
  background: #fdfbf8;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: #5b4c40;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4c9bd;
  font-size: 1rem;
}

.footer {
  padding: 30px 6vw 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.85rem;
  color: #5b4c40;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  background: #1b5c4b;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.bg-ritual {
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-soft {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.wide-note {
  background: #f0e7de;
  padding: 18px;
  border-radius: 16px;
}

.inline-cta {
  font-weight: 600;
}

.spacer {
  height: 12px;
}

.quote {
  font-style: italic;
  background: #fdfbf8;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero-visual {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
