* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e1c1b;
  background: #faf7f4;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #7a3d2f;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: #f2d7c9;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #5b2f24;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 40px 0 10px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  flex: 0.9;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f5e8df;
  min-height: 380px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #7a3d2f;
  background: #7a3d2f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #7a3d2f;
}

.btn.ghost {
  background: #fff7f1;
  color: #5b2f24;
  border-color: #e4c6b6;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #fff;
}

.section.tint {
  background: #f5ece7;
}

.section.dark {
  background: #2b1a16;
  color: #fef7f2;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #efe2d8;
}

.image-frame.tall {
  min-height: 320px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(26, 16, 12, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.dark {
  background: #3b2420;
  color: #fff2ea;
}

.card img {
  border-radius: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2d7c9;
  color: #5b2f24;
  font-size: 0.85rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid #7a3d2f;
  padding-left: 16px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 250px;
  background: #fff;
  border: 1px solid #e9d2c4;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card h4 {
  margin: 0;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7a3d2f;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8c2b6;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 200px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ead2c2;
  box-shadow: 0 8px 20px rgba(26, 16, 12, 0.1);
}

.footer {
  padding: 40px 0;
  background: #1f120f;
  color: #f6e8df;
}

.footer a {
  color: #f6e8df;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 200px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid #e4c6b6;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(26, 16, 12, 0.15);
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.note {
  font-size: 0.95rem;
  color: #4b3128;
}

.section-bg {
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.pexels.com/photos/8272666/pexels-photo-8272666.jpeg");
}

.bg-story {
  background-image: url("https://images.pexels.com/photos/5731811/pexels-photo-5731811.jpeg");
}

.bg-trust {
  background-image: url("https://images.pexels.com/photos/5731811/pexels-photo-5731811.jpeg");
}

.bg-atelier {
  background-image: url("https://images.pexels.com/photos/8015898/pexels-photo-8015898.jpeg");
}

.bg-palette {
  background-image: url("https://images.pexels.com/photos/7262987/pexels-photo-7262987.jpeg");
}

.mini-hero {
  padding: 40px 0;
}

.mini-hero .hero-inner {
  padding: 0;
}

.notice {
  border-left: 3px solid #7a3d2f;
  padding-left: 14px;
}

@media (max-width: 900px) {
  .hero-inner,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
