* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background-color: #faf7f2;
}

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;
}

.topbar {
  padding: 18px 6vw;
  background-color: #efe7dc;
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background-color: #c9b8a3;
  color: #2c241b;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hero {
  padding: 48px 6vw 64px;
  background-color: #f5efe7;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d8cfc1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #6f5b4b;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 38px;
  line-height: 1.1;
}

p {
  margin: 0;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  background-color: #2c241b;
  color: #fff;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #2c241b;
  color: #2c241b;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-light {
  background-color: #fff;
}

.section-contrast {
  background-color: #efe7dc;
}

.section-image {
  background-color: #d9cfc2;
  background-size: cover;
  background-position: center;
  color: #1f1f1f;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1463100099107-aa0980c362e6?w=1400&q=80");
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?w=1400&q=80");
}

.story-blocks {
  display: flex;
  flex-direction: column;
  background-color: #ffffffc7;
  gap: 22px;
}

.story-highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 20px;
  background-color: #f9f5f0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.image-frame {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9cfc2;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(26, 20, 14, 0.08);
}

.card-image {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d6c5b2;
}

.inline-testimonial {
  padding: 16px 20px;
  border-left: 4px solid #2c241b;
  background-color: #fff;
  font-style: italic;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #e0d7cc;
}

.pricing-price {
  font-size: 20px;
  font-weight: 700;
  color: #2c241b;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #e0d7cc;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc2b2;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  padding: 36px 6vw;
  background-color: #1e1a14;
  color: #f7f1e8;
  margin-top: auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.reference-list {
  font-size: 12px;
  color: #d9cdbc;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  padding: 12px 6vw;
  background-color: #efe7dc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #dbcfc0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #e0d7cc;
}

@media (min-width: 900px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual, .hero-copy {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }
}
