* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f5f3ef;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  overflow: hidden;
}

.site-header {
  padding: 28px 6vw 18px;
  background-color: #fdfbf7;
  border-bottom: 1px solid #e7e1d8;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f0e6da;
  color: #4a3c2a;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 6vw 40px;
  background-color: #fdfbf7;
}

.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 280px;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.hero-media {
  flex: 1 1 45%;
  position: relative;
  min-width: 260px;
}

.hero-media .image-frame {
  transform: translateY(18px);
  box-shadow: 0 24px 50px rgba(26, 26, 26, 0.18);
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.intro-tags span {
  background-color: #e7dfd3;
  padding: 4px 10px;
  border-radius: 12px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #2c2c2c;
  font-size: 14px;
  cursor: pointer;
  background-color: #2c2c2c;
  color: #fdfbf7;
}

.ghost-button {
  background-color: transparent;
  color: #2c2c2c;
}

.primary-button:hover,
.ghost-button:hover {
  opacity: 0.85;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  background-color: #2c2c2c;
  color: #fdfbf7;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.floating-cta:hover {
  opacity: 0.9;
}

.section {
  padding: 60px 6vw;
}

.section h2 {
  margin-top: 0;
  font-size: 28px;
}

.asymmetric {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.asymmetric .block {
  flex: 1 1 280px;
  padding: 22px;
  background-color: #f0ebe4;
  border-radius: 10px;
}

.asymmetric .block.shift {
  transform: translateY(20px);
  background-color: #e8e0d6;
}

.story {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.story .text {
  flex: 1 1 320px;
}

.story .image-frame {
  flex: 1 1 300px;
}

.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
}

.step .index {
  font-size: 22px;
  font-weight: 700;
  color: #8a6a4b;
  min-width: 32px;
}

.testimonial {
  padding: 20px;
  border-left: 3px solid #8a6a4b;
  background-color: #fdfbf7;
  margin: 18px 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2c2c2c;
}

.image-frame {
  background-color: #dcd4c8;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-ritual {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfbf7;
}

.bg-ritual .overlay {
  background: rgba(32, 28, 24, 0.65);
  padding: 50px 6vw;
}

.form-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background-color: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(20, 20, 20, 0.1);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d7d2c9;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #51483d;
}

.footer {
  padding: 50px 6vw 70px;
  background-color: #1d1b18;
  color: #efe9e1;
}

.footer a {
  color: #efe9e1;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-grid div {
  flex: 1 1 180px;
}

.legal {
  font-size: 13px;
  color: #c9c1b6;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background-color: #fdfbf7;
  border: 1px solid #e7e1d8;
  border-radius: 10px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-banner.is-hidden {
  display: none;
}

.page-title {
  padding: 50px 6vw 30px;
  background-color: #fdfbf7;
}

.page-title h1 {
  margin: 0;
  font-size: 34px;
}

.content-wrap {
  padding: 30px 6vw 60px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.content-main {
  flex: 1 1 360px;
}

.content-side {
  flex: 1 1 260px;
}

.highlight-box {
  background-color: #f0ebe4;
  border-radius: 10px;
  padding: 20px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-media .image-frame {
    transform: none;
  }
}
