* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1a17;
  background: #f7f3ef;
}

a {
  color: #2d4c5e;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 7vw 10px;
  gap: 20px;
  background: #f2ece6;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  max-width: 280px;
  line-height: 1.3;
  text-align: center;
  color: #5f4a3a;
}

.nav-toggle {
  border: 1px solid #c7b6a8;
  background: #f7f3ef;
  padding: 8px 12px;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: #fff6ef;
  padding: 12px 16px;
  border: 1px solid #e0d3c7;
}

.nav-links.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 7vw 30px;
  background: #efe7de;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(189, 165, 147, 0.35);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: #2d4c5e;
  color: #fff;
  padding: 12px 18px;
  cursor: pointer;
}

.btn.light {
  background: #fff;
  color: #2d4c5e;
  border: 1px solid #2d4c5e;
}

.hero-image {
  align-self: flex-end;
  width: 60%;
  min-width: 240px;
  background-color: #cdbfb2;
  padding: 12px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.section {
  padding: 36px 7vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.asym-left {
  margin-right: 18vw;
  background: #fffdfb;
}

.section.asym-right {
  margin-left: 18vw;
  background: #f1e6db;
}

.section.dark {
  background: #1f2428;
  color: #f5f2ee;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1703034390461-0b978d9bd21d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier .overlay {
  background: rgba(33, 28, 24, 0.72);
  padding: 26px;
}

.bg-spark {
  background-image: url("https://images.unsplash.com/photo-1668365179846-3333fe14f552?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-spark .overlay {
  background: rgba(255, 250, 244, 0.85);
  padding: 24px;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 240px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid #e0d3c7;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .img-frame {
  background-color: #c8b7a9;
  padding: 8px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.inline-image {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.inline-image .img-frame {
  flex: 1 1 240px;
  background-color: #d3c5b6;
  padding: 10px;
}

.inline-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff6ef;
  border-left: 3px solid #b89477;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d8c6b6;
  background: #fff;
}

.form-wrap {
  background: #fff;
  padding: 20px;
  border: 1px solid #e0d3c7;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px;
  border: 1px solid #c7b6a8;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 12px;
  right: 12px;
  background: #2d4c5e;
  color: #fff;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: #2d4c5e;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 30px 7vw;
  background: #f2ece6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-note {
  font-size: 13px;
  color: #4c3b2f;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fffdfb;
  border: 1px solid #e0d3c7;
  padding: 14px;
  max-width: 320px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  cursor: pointer;
  border: 1px solid #2d4c5e;
  background: #2d4c5e;
  color: #fff;
}

.cookie-actions .secondary {
  background: #fff;
  color: #2d4c5e;
}

.contact-block {
  background: #fff;
  padding: 20px;
  border: 1px solid #e0d3c7;
  max-width: 520px;
}

.notice {
  font-size: 14px;
  color: #624b3b;
}

.page-hero {
  padding: 40px 7vw 20px;
  background: #efe7de;
}

.page-hero h1 {
  margin: 0 0 10px;
}

.image-panel {
  background-color: #d0c0b2;
  padding: 12px;
}

.image-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .top-bar {
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }
}
