* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f2;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background-color: #f0ede9;
  border-bottom: 1px solid #d8d0c6;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #6a5e52;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  background-color: #e5ddd2;
  border-radius: 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw;
  background-color: #1e1e22;
  color: #f6f4f2;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #d2c6bb;
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #f2a154;
  color: #1b1b1b;
  font-weight: 600;
}

.btn.secondary {
  background-color: #f6f4f2;
  color: #1b1b1b;
  border: 1px solid #f2a154;
}

.section {
  padding: 60px 6vw;
}

.section.dark {
  background-color: #222327;
  color: #f6f4f2;
}

.section.light {
  background-color: #ffffff;
}

.section-accent {
  background-color: #efe7de;
}

.bg-atelier {
  background-color: #2b2c31;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f2;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background-color: #f6f4f2;
  color: #1b1b1b;
}

.price {
  font-weight: 700;
  color: #9c4b14;
}

.inline-note {
  background-color: #ffffff;
  padding: 18px;
  border-left: 4px solid #f2a154;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.badge {
  background-color: #2f3036;
  color: #f6f4f2;
  padding: 6px 12px;
  border-radius: 16px;
}

.form-wrap {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section textarea {
  padding: 10px 12px;
  border: 1px solid #c9c1b6;
  border-radius: 12px;
  font-size: 14px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #efe7de;
  padding: 10px 12px;
  border-radius: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background-color: #2f3036;
  color: #f6f4f2;
  font-weight: 600;
  cursor: pointer;
}

.site-footer {
  margin-top: auto;
  padding: 40px 6vw;
  background-color: #1e1e22;
  color: #f6f4f2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  color: #f6f4f2;
  background-color: #2f3036;
  padding: 6px 10px;
  border-radius: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #d8d0c6;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 9;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  padding: 8px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background-color: #f2a154;
  color: #1b1b1b;
  font-weight: 600;
}

.cookie-btn.secondary {
  background-color: #e5ddd2;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subtle {
  color: #6a5e52;
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
