:root {
  --ink: #241b17;
  --text: #4d4039;
  --muted: #75665d;
  --cream: #fff7e7;
  --paper: #fffdf8;
  --sun: #f9c84a;
  --coral: #df5b46;
  --leaf: #35785f;
  --sky: #88c7d8;
  --plum: #5b3d68;
  --line: rgba(36, 27, 23, 0.14);
  --shadow: 0 22px 44px rgba(63, 44, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.wrap {
  margin: 0 auto;
  max-width: 1180px;
  width: min(calc(100% - 40px), 1180px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(17, 12, 9, 0.78), rgba(17, 12, 9, 0.48) 48%, rgba(17, 12, 9, 0.12)),
    url("./assets/hero-playroom.webp") center / cover no-repeat;
  color: #fff;
  min-height: 92vh;
  overflow: hidden;
  padding: 18px 0 96px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), var(--paper));
  bottom: -1px;
  content: "";
  height: 88px;
  left: 0;
  position: absolute;
  right: 0;
}

.site-nav {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 12, 8, 0.14);
  color: var(--ink);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 50%;
  max-width: 1180px;
  padding: 10px 14px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), 1180px);
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 64px;
  object-fit: contain;
  padding: 3px;
  width: 64px;
}

.brand strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 6px;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 11px 13px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(249, 200, 74, 0.22);
}

.nav-links .nav-cta {
  background: var(--coral);
  color: #fff;
}

.nav-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 48px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 22px;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero-content {
  margin: 0 auto;
  max-width: 1180px;
  padding-top: clamp(190px, 28vh, 260px);
  position: relative;
  width: min(calc(100% - 40px), 1180px);
  z-index: 2;
}

.eyebrow {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 960px;
  text-wrap: balance;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  max-width: 720px;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-align: center;
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 14px 26px rgba(223, 91, 70, 0.28);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.intro-band {
  margin-top: -44px;
  position: relative;
  z-index: 3;
}

.intro-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intro-grid article {
  border-right: 1px solid var(--line);
  min-height: 126px;
  padding: 24px;
}

.intro-grid article:last-child {
  border-right: 0;
}

.intro-grid strong {
  color: var(--coral);
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.intro-grid span {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 8px;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.gallery-section,
.questions {
  background: #fff;
}

.split,
.offer-grid,
.booking-grid {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.section-copy h2,
.section-heading h2,
.booking-copy h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 20px;
  text-wrap: balance;
}

.section-copy p,
.section-heading p,
.booking-copy p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 820px;
  text-align: center;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div,
.offer-card,
.faq-grid article,
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(63, 44, 31, 0.08);
}

.feature-list div {
  display: grid;
  gap: 8px 18px;
  grid-template-columns: auto 1fr;
  padding: 22px;
}

.feature-list span {
  align-items: center;
  background: var(--leaf);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 950;
  grid-row: span 2;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.feature-list h3,
.offer-card h3,
.faq-grid h3 {
  font-size: 1.28rem;
  margin-bottom: 0;
}

.feature-list p,
.offer-card li,
.faq-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  aspect-ratio: 1 / 1;
  background: #f2eee8;
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-item.wide {
  aspect-ratio: 2 / 1;
  grid-column: span 2;
}

.gallery-item.tall {
  aspect-ratio: 1 / 2;
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
  width: 100%;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.offer-grid {
  align-items: center;
}

.offer-card {
  background:
    linear-gradient(135deg, rgba(249, 200, 74, 0.22), rgba(136, 199, 216, 0.18)),
    #fff;
  padding: 30px;
}

.pricing-card {
  display: grid;
  gap: 18px;
}

.pricing-card h3 {
  margin-bottom: 0;
}

.price-group {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 18px;
}

.price-group h4 {
  font-size: 1rem;
  margin: 0 0 12px;
}

.price-group dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.price-group dl div {
  align-items: center;
  border-top: 1px solid rgba(36, 27, 23, 0.1);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 10px;
}

.price-group dl div:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-group dt {
  color: var(--text);
  font-weight: 800;
}

.price-group dd {
  color: var(--coral);
  font-weight: 950;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.price-options dd {
  color: var(--leaf);
}

.promo-box {
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  padding: 18px;
}

.promo-box strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.promo-box p {
  color: rgba(255, 255, 255, 0.78);
  margin: 6px 0 0;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.offer-card li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  font-weight: 850;
  padding: 14px 16px;
}

.booking-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.booking-copy {
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
  padding: 34px;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 850;
  padding: 14px;
}

.booking-form {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

label {
  display: grid;
  gap: 7px;
}

label.full {
  grid-column: 1 / -1;
}

label span {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  background: #fffaf0;
  border: 1px solid rgba(117, 102, 93, 0.26);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 48px;
  outline: 0;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(53, 120, 95, 0.12);
}

.message-preview {
  background: #f4f7f1;
  border: 1px solid rgba(53, 120, 95, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  line-height: 1.65;
  margin-top: 18px;
  min-height: 96px;
  padding: 16px;
  white-space: pre-wrap;
}

.form-status {
  color: var(--leaf);
  font-weight: 850;
  margin: 14px 0 0;
}

.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.seo-copy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.seo-copy-grid article,
.faq-grid article {
  padding: 24px;
}

.seo-copy-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(63, 44, 31, 0.08);
}

.seo-copy-grid h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.seo-copy-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 34px 0;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto auto;
}

.footer-brand img {
  height: 56px;
  width: 56px;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  margin: 0;
}

.lightbox {
  background: transparent;
  border: 0;
  height: 100vh;
  max-height: none;
  max-width: none;
  padding: 0;
  width: 100vw;
}

.lightbox::backdrop {
  background: rgba(18, 13, 10, 0.88);
}

.lightbox img {
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  height: min(86vh, 980px);
  left: 50%;
  object-fit: contain;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 1200px);
}

.lightbox-close {
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  height: 48px;
  line-height: 1;
  position: fixed;
  right: 22px;
  top: 22px;
  width: 48px;
  z-index: 2;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 20px;
    padding: 12px;
    position: fixed;
    right: 20px;
    top: 96px;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    width: 100%;
  }

  .intro-grid,
  .split,
  .offer-grid,
  .booking-grid,
  .seo-copy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }

  .intro-grid article:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap,
  .hero-content,
  .site-nav {
    width: min(calc(100% - 28px), 1180px);
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 74px;
  }

  .hero-content {
    padding-top: 168px;
  }

  .brand img {
    height: 56px;
    width: 56px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 70px 0;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    aspect-ratio: 1 / 1;
    grid-column: span 1;
    grid-row: span 1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .booking-copy,
  .booking-form {
    padding: 20px;
  }
}
