:root {
  --ink: #27302f;
  --muted: #687370;
  --paper: #fffdf9;
  --cream: #f7efe7;
  --sage: #7f9c8e;
  --rose: #d98980;
  --honey: #f0c56f;
  --line: #eadfd4;
  --shadow: 0 22px 60px rgba(70, 56, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(18px, 5vw, 64px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header[data-scrolled="true"] {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 1px 0 rgba(39, 48, 47, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 210px;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--honey);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.78;
}

.nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
}

.header-action {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/hero-playroom.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(39, 48, 47, 0.86) 0%, rgba(39, 48, 47, 0.58) 48%, rgba(39, 48, 47, 0.18) 100%),
    linear-gradient(0deg, rgba(39, 48, 47, 0.7) 0%, rgba(39, 48, 47, 0.04) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  padding: 140px clamp(20px, 5vw, 64px) 52px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.button.primary {
  color: var(--ink);
  background: var(--honey);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 900px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts div {
  min-height: 96px;
  padding: 18px;
  background: rgba(39, 48, 47, 0.48);
}

.hero-facts dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 850;
}

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

.section,
.band {
  padding: clamp(58px, 8vw, 108px) 0;
}

.section-inner {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.intro-grid,
.day-grid,
.trust-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.intro-grid p,
.contact-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading .section-kicker,
.day-section .section-kicker,
.trust-section .section-kicker,
.contact .section-kicker {
  color: var(--rose);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.values-grid article {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(70, 56, 44, 0.05);
}

.values-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--sage);
  font-weight: 900;
}

.values-grid p,
.timeline p,
.check-list {
  color: var(--muted);
}

.day-section {
  background: #fbf7ef;
}

.day-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.day-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.timeline div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline div:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline time {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.05rem;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage);
}

.contact {
  border-top: 1px solid var(--line);
}

.contact-panel {
  padding: 30px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-label {
  margin-bottom: 8px;
  color: var(--rose);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-main {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.05;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    height: 70px;
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

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

  .hero-facts,
  .intro-grid,
  .day-grid,
  .trust-grid,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article {
    min-height: auto;
  }

  .values-grid span {
    margin-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-action {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-facts div {
    min-height: 76px;
    padding: 14px;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
