* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #faf8f6;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 12px;
  border-bottom: 1px solid #e7e1dc;
  background: #fffaf6;
}

.topbar .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: #6b4f3f;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5e9e1;
}

.hero {
  padding: 64px 0 72px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 18, 15, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2a1e17;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.btn-light {
  background: #f6efe8;
  color: #2a1e17;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media-block {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.img-frame {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #e6ded7;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
}

.section-title {
  font-size: 1.9rem;
  margin: 0;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.price {
  font-weight: 700;
  color: #6b4f3f;
}

.layered {
  background: #f1ebe5;
}

.wide-note {
  padding: 32px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.form-section {
  padding: 56px 0 72px;
  background: #fffaf6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d1cb;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 0 60px;
  background: #1e1612;
  color: #f8f3ee;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f8f3ee;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8c8bd;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #2a1e17;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 20;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.band {
  position: relative;
  color: #fff;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 21, 17, 0.7);
}

.band > .container {
  position: relative;
}

.page-hero {
  padding: 60px 0;
  background: #efe7e0;
}

.page-hero .split {
  padding: 0;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    bottom: 12px;
    right: 12px;
  }
}
