* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1a19;
  background: #f8f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #faf7f3;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 0.95rem;
  align-items: center;
}

.ad-label {
  background: #efe4d7;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  padding: 60px 6vw 80px;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fefcf9;
}

.hero.perfume-hero {
  background-image: url("https://images.unsplash.com/photo-1768025719875-48ed072f3084?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 14, 10, 0.7), rgba(20, 14, 10, 0.15));
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-content p {
  margin: 0;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: #f2cfa6;
  color: #20150f;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #fefcf9;
  border: 1px solid #fefcf9;
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #f1ebe3;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .visual {
  flex: 1 1 280px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e2d7cc;
}

.layered {
  position: relative;
  border-radius: 24px;
  padding: 50px;
  color: #1d1a19;
  background-size: cover;
  background-position: center;
}

.layered.perfume-insight {
  background-image: url("https://images.unsplash.com/photo-1680690653166-1618c3bcdf51?w=1400&q=80");
}

.layered .panel {
  background: rgba(248, 245, 241, 0.9);
  padding: 32px;
  border-radius: 18px;
  max-width: 560px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #eadfd4;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.testimonial .quote {
  flex: 1 1 320px;
  background: #fff5ea;
  padding: 24px;
  border-radius: 18px;
}

.testimonial .photo {
  flex: 1 1 220px;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #e6d8cc;
}

.pricing {
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
  color: #201510;
}

.pricing.perfume-pricing {
  background-image: url("https://images.unsplash.com/photo-1774682060992-46c7e9f2e50b?w=1400&q=80");
}

.pricing .cards {
  margin-top: 18px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.form-image {
  flex: 1 1 260px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e9dfd6;
}

.lead-form {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-form select,
.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9cec2;
  font-size: 0.95rem;
  font-family: inherit;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw;
  background: #2a221c;
  color: #fefcf9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #fefcf9;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #ffffff;
  color: #1d1a19;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #efe4d7;
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 15;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.95rem;
}

.page-hero {
  padding: 60px 6vw 40px;
  background: #efe4d7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-section {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
