* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2b2b2b;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 5vw 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.9rem;
  color: #6d6d6d;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: #efe2d9;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 40px 5vw 20px;
  align-items: flex-start;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 24px;
  color: #4a4a4a;
}

.hero-media {
  flex: 1;
  max-width: 520px;
  align-self: stretch;
  margin-top: 20px;
}

.image-frame {
  background: #e6ddd4;
  border-radius: 22px;
  overflow: hidden;
}

.section {
  display: flex;
  gap: 36px;
  padding: 40px 5vw;
  align-items: center;
}

.section.asym-left {
  flex-direction: row-reverse;
}

.section .text-block {
  flex: 1;
  max-width: 520px;
}

.section .media-block {
  flex: 1;
  max-width: 520px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.inline-link {
  text-decoration: underline;
}

.rituale-bg {
  background: url("https://images.unsplash.com/photo-1629198688000-71f23e745b6e?w=1400&q=80") center/cover no-repeat;
  color: #f7f3ef;
}

.rituale-overlay {
  background: rgba(25, 22, 20, 0.6);
  padding: 32px;
  border-radius: 18px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 600;
  color: #5b3a2f;
}

.cta-button {
  background: #5b3a2f;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ghost-button {
  background: transparent;
  border: 1px solid #5b3a2f;
  color: #5b3a2f;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-card label {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7ccc4;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta button.close-sticky {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.page-hero {
  display: flex;
  gap: 32px;
  padding: 40px 5vw 20px;
  align-items: center;
}

.page-hero .text-block {
  flex: 1;
}

.page-hero .media-block {
  flex: 1;
}

.footer {
  padding: 32px 5vw 50px;
  background: #efe7df;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .section,
  .page-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media,
  .section .media-block,
  .page-hero .media-block {
    width: 100%;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
