* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f2ee;
  line-height: 1.6;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: #efe5df;
  border-bottom: 1px solid #e0d2ca;
}

.top-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 5%;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #4e3f38;
  background: #f7f0ea;
  border: 1px solid #d9c3b8;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: #1a1a1a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 5% 32px;
  background: #f3e8e1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: #4b3f39;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fefcfb;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
}

.hero-image {
  background: #e4d6cc;
  border-radius: 18px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 42px 5%;
}

.section-dark {
  background: #1f1b18;
  color: #f8f1ec;
}

.section-light {
  background: #f8f3ef;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-row.reverse {
  flex-direction: column-reverse;
}

.story-text {
  max-width: 680px;
}

.inline-image {
  background: #e6d6cc;
  border-radius: 16px;
  overflow: hidden;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ead9cf;
  color: #4b3f39;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-card {
  background: #f7ede6;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e3d3c8;
}

.quote {
  font-style: italic;
}

.services-reveal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff8f3;
  border: 1px solid #e7d7cd;
  border-radius: 16px;
  overflow: hidden;
}

.service-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  height: 200px;
}

.price {
  font-weight: 700;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #efe3da;
  border-radius: 20px;
  padding: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cdbdb2;
  font-size: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta a {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

.footer {
  margin-top: auto;
  background: #151210;
  color: #f8f1ec;
  padding: 28px 5%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d6c6bc;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff8f3;
  border: 1px solid #d8c9bf;
  padding: 16px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
}

.cookie-btn.secondary {
  background: transparent;
  color: #1a1a1a;
}

.legal-page {
  padding: 48px 5%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight {
  background: #f7ede6;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e3d3c8;
}

.bg-petal {
  background: #f2e5dc url("https://images.pexels.com/photos/9130752/pexels-photo-9130752.jpeg") center/cover no-repeat;
}

.bg-atelier {
  background: #f6efe9 url("https://images.pexels.com/photos/16999987/pexels-photo-16999987.jpeg") center/cover no-repeat;
}

@media (min-width: 768px) {
  .top-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-image {
    flex: 1;
    min-height: 360px;
  }

  .story-row,
  .service-cards {
    flex-direction: row;
  }

  .story-row.reverse {
    flex-direction: row-reverse;
  }

  .story-text {
    flex: 1;
  }

  .inline-image,
  .service-card {
    flex: 1;
  }

  .trust-grid {
    flex-direction: row;
  }

  .trust-card {
    flex: 1;
  }

  .service-cards {
    flex-wrap: wrap;
  }

  .service-card {
    max-width: calc(50% - 10px);
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }
}
