* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1a1a;
  background: #f8f5f2;
  line-height: 1.6;
}

a {
  color: #3b2a2a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #5a4a4a;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background-color: #5b4a4a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tag {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: #f7f2ef;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 26px;
  background: #e7c7a1;
  color: #2c1f1f;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-dark {
  background: #2c1f1f;
  color: #f7f2ef;
}

.section {
  padding: 70px 0;
}

.section-light {
  background: #f8f5f2;
}

.section-contrast {
  background: #efe6dd;
}

.scent-backdrop {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-deep {
  background: #1f1a1a;
  color: #f7f2ef;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
  background-color: #d8c9bfb8;
}

.split .text {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 380px;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d8c9bf;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.story-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #e2d5cc;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 4px solid #b07a4a;
  background: #fff6ee;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b07a4a;
  margin-top: 6px;
  flex-shrink: 0;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border-radius: 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9cfc7;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 50px 0;
  background: #120f0f;
  color: #e9dfd6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 15, 15, 0.92);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.sticky-cta button {
  max-width: 320px;
  width: 100%;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 80px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.disclaimer {
  font-size: 12px;
  color: #cbbfb6;
  margin-top: 20px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero h1 {
  font-size: 36px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 34px;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
