.root {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f7f4f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: #6a3f2b;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 6vw;
  background-color: #fff5ee;
  border-bottom: 1px solid #ead7cc;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: #6b4c3c;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 60px 6vw;
  background-color: #fff;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 320px;
  background-color: #eaded6;
  border-radius: 24px;
  overflow: hidden;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #6a3f2b;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cta-button.secondary {
  background-color: #f4d4be;
  color: #3a2116;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background-color: #fffaf7;
}

.bg-playroom {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-playroom .card,
.bg-playroom .quote,
.bg-playroom .banner-note {
  background-color: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(33, 25, 21, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.story-block {
  max-width: 820px;
}

.quote {
  font-style: italic;
  padding: 16px 18px;
  background-color: #fff3ec;
  border-left: 4px solid #c9906b;
  border-radius: 10px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border: 1px solid #f1d9c9;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6a3f2b;
}

.service-select {
  margin-top: auto;
}

.form-wrap {
  background-color: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 26px rgba(33, 25, 21, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9c1b1;
  font-size: 1rem;
}

.footer {
  padding: 40px 6vw;
  background-color: #24150f;
  color: #f9ece4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7d3be;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #6a3f2b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta button {
  background-color: #f4d4be;
  color: #3a2116;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #fffaf7;
  border: 1px solid #e5cdbd;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #6a3f2b;
  color: #fff;
}

.cookie-reject {
  background-color: #f4d4be;
  color: #3a2116;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid #6a3f2b;
}

.section-image {
  background-color: #eaded6;
  border-radius: 20px;
  overflow: hidden;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background-color: #f4d4be;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-list a {
  font-size: 0.9rem;
}

.page-hero {
  padding: 50px 6vw 20px;
}

.page-hero h1 {
  margin-bottom: 8px;
}

.content-block {
  padding: 20px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-strip .section-image {
  flex: 1 1 240px;
}

.banner-note {
  padding: 18px 20px;
  background-color: #fff3ec;
  border-radius: 16px;
  border: 1px solid #f0d1be;
}
