@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Caveat:wght@600;700&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FBF5E9;
  --cream-2: #F5ECD9;
  --white: #FFFDF6;
  --ink: #3B4636;
  --ink-2: #55624E;
  --muted: #7D786B;
  --sage: #7FA173;
  --sage-soft: #A9C29E;
  --sage-deep: #5C7E52;
  --sage-dark: #3C5236;
  --coral: #E8846B;
  --coral-deep: #CE603F;
  --apricot: #F2B366;
  --apricot-soft: #F8D9A8;
  --wood: #8A6844;
  --border: #EAD9BC;
  --nav-h: 80px;
  --max-w: 1160px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
  --radius: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p { color: var(--muted); }

:focus-visible { outline: 3px solid var(--coral-deep); outline-offset: 3px; border-radius: 6px; }

.hand {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--coral-deep);
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 800;
}
.eyebrow::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--apricot), var(--coral));
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--apricot-soft); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.8rem 1.9rem;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.btn-coral { background: var(--coral-deep); color: var(--white); box-shadow: 0 10px 24px -12px rgba(206, 96, 63, 0.65); }
.btn-coral:hover { background: var(--coral); transform: translateY(-2px); }
.btn-sage { background: var(--sage-deep); color: var(--white); box-shadow: 0 10px 24px -12px rgba(92, 126, 82, 0.6); }
.btn-sage:hover { background: var(--sage); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--sage-deep); color: var(--sage-deep); }
.btn-light { background: var(--cream); color: var(--sage-dark); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

/* --- Nav --- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(251, 245, 233, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 217, 188, 0.7);
  z-index: 200;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
}
.nav-logo {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.45rem; font-weight: 800;
  color: var(--sage-dark);
  display: flex; align-items: center; gap: 0.7rem;
  line-height: 1.1;
}
.nav-logo .mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--apricot-soft), var(--apricot) 55%, var(--coral));
  position: relative; flex-shrink: 0;
}
.nav-logo .mark::before {
  content: ''; position: absolute; inset: -6px;
  border: 2px dashed var(--sage);
  border-radius: 50%;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 700; color: var(--ink-2); transition: color 0.2s; padding: 0.5rem 0; }
.nav-links a:hover { color: var(--coral-deep); }
.nav-links .btn { color: var(--white); padding: 0.55rem 1.5rem; min-height: 46px; }
.nav-links .btn:hover { color: var(--white); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: none; border: none;
  width: 48px; height: 48px; border-radius: 14px;
}
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--sage-dark); border-radius: 3px; transition: 0.3s; }

/* --- Hero --- */
.hero {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero-blob { position: absolute; border-radius: 58% 42% 55% 45% / 52% 58% 42% 48%; pointer-events: none; }
.hero-blob.b1 { width: 420px; height: 420px; top: -140px; left: -160px; background: rgba(169, 194, 158, 0.28); }
.hero-blob.b2 { width: 320px; height: 320px; bottom: -120px; right: -100px; background: rgba(248, 217, 168, 0.45); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; position: relative; }
.hero h1 { margin: 1.1rem 0 1.4rem; }
.hero h1 .hand { font-size: 1.18em; }
.hero-sub { font-size: 1.13rem; line-height: 1.75; max-width: 470px; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-chips { margin-top: 2.4rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 0.45rem 1rem;
  font-size: 0.85rem; font-weight: 700; color: var(--ink-2);
}
.chip::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.chip:nth-child(2)::before { background: var(--coral); }
.chip:nth-child(3)::before { background: var(--apricot); }

/* Hero scene (CSS-drawn) */
.hero-visual { position: relative; }
.scene-frame { position: relative; }
.hero-scene {
  position: relative;
  aspect-ratio: 5 / 4.4;
  border-radius: 36px;
  background: linear-gradient(180deg, #FDF3DD 0%, #FAE7C5 62%, #F6DDB4 100%);
  overflow: hidden;
  box-shadow: 0 40px 70px -35px rgba(60, 82, 54, 0.45);
}
.scene-sun {
  position: absolute; top: 36px; right: 44px;
  width: 72px; height: 72px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FADFA9, var(--apricot) 70%);
}
.scene-sun::after {
  content: ''; position: absolute; inset: -16px;
  border: 3px dashed rgba(242, 179, 102, 0.85);
  border-radius: 50%;
  animation: sunspin 46s linear infinite;
}
@keyframes sunspin { to { transform: rotate(360deg); } }
.scene-cloud { position: absolute; background: rgba(255, 253, 246, 0.95); border-radius: 100px; }
.scene-cloud::before, .scene-cloud::after { content: ''; position: absolute; background: rgba(255, 253, 246, 0.95); border-radius: 50%; }
.scene-cloud.c1 { width: 96px; height: 26px; top: 64px; left: 40px; }
.scene-cloud.c1::before { width: 36px; height: 36px; top: -18px; left: 16px; }
.scene-cloud.c1::after { width: 26px; height: 26px; top: -12px; left: 48px; }
.scene-cloud.c2 { width: 70px; height: 20px; top: 130px; right: 150px; opacity: 0.75; }
.scene-cloud.c2::before { width: 26px; height: 26px; top: -13px; left: 12px; }
.scene-cloud.c2::after { width: 18px; height: 18px; top: -8px; left: 36px; }
.scene-hill { position: absolute; border-radius: 50%; }
.scene-hill.h1 { width: 130%; height: 72%; bottom: -38%; left: -32%; background: linear-gradient(180deg, var(--sage), var(--sage-deep)); }
.scene-hill.h2 { width: 124%; height: 66%; bottom: -40%; right: -44%; background: linear-gradient(180deg, #94B287, var(--sage)); }
.scene-tree { position: absolute; bottom: 24%; right: 15%; display: flex; flex-direction: column; align-items: center; }
.scene-tree .crown {
  display: block; width: 66px; height: 60px;
  border-radius: 50% 50% 46% 46%;
  background: radial-gradient(circle at 35% 30%, #729660, #4C6B43);
}
.scene-tree .trunk { display: block; width: 10px; height: 26px; margin-top: -8px; border-radius: 5px; background: var(--wood); }
.scene-blocks { position: absolute; left: 13%; bottom: 10%; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.scene-blocks span {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--white);
  box-shadow: 0 8px 16px -6px rgba(60, 82, 54, 0.35);
}
.scene-blocks span:nth-child(1) { background: var(--coral); transform: rotate(-7deg); }
.scene-blocks span:nth-child(2) { background: var(--apricot); transform: rotate(4deg); }
.scene-blocks span:nth-child(3) { background: var(--sage-deep); transform: rotate(-2deg); }
.scene-leaf {
  position: absolute; width: 30px; height: 30px;
  background: linear-gradient(135deg, #A5C098, var(--sage-deep));
  border-radius: 0 100% 0 100%;
}
.scene-leaf.l1 { top: 42px; left: 46%; transform: rotate(24deg); opacity: 0.8; }
.scene-leaf.l2 { top: 96px; left: 58%; width: 20px; height: 20px; transform: rotate(-30deg); opacity: 0.6; }
.scene-badge {
  position: absolute; bottom: -18px; left: clamp(1rem, 4vw, 2.2rem);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0.8rem 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 18px 34px -20px rgba(60, 82, 54, 0.5);
}
.scene-badge .badge-sun {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 35%, var(--apricot-soft), var(--coral));
}
.scene-badge .t { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.95rem; line-height: 1.25; }
.scene-badge .s { font-size: 0.78rem; color: var(--muted); line-height: 1.35; }
.scene-note {
  font-family: 'Caveat', cursive; font-weight: 600;
  font-size: 1.45rem; color: var(--ink-2);
  text-align: right; margin-top: 2.4rem;
  transform: rotate(-2deg);
}

/* --- Trust row --- */
.trust { background: var(--cream-2); padding: clamp(2.5rem, 5vw, 3.5rem) 0; border-block: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.trust-item { display: flex; align-items: center; gap: 0.9rem; }
.trust-icon {
  width: 52px; height: 52px; border-radius: 18px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--white); border: 1.5px solid var(--border);
}
.trust-icon svg { width: 24px; height: 24px; stroke: var(--sage-deep); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.trust-item:nth-child(2) .trust-icon svg { stroke: var(--coral-deep); }
.trust-item:nth-child(3) .trust-icon svg { stroke: var(--coral-deep); }
.trust-item:nth-child(4) .trust-icon svg { stroke: var(--sage-deep); }
.trust-item .t { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.3; }
.trust-item .s { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* --- Section head --- */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.8rem); max-width: 640px; }
.section-head .eyebrow { margin-bottom: 0.9rem; }
.section-head p { font-size: 1.06rem; margin-top: 0.9rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* --- Rooms preview --- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.room-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(60, 82, 54, 0.4); }
.room-card-art {
  height: 170px; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.art-acorns-sm { background: radial-gradient(circle at 50% 120%, rgba(232, 132, 107, 0.25), transparent 70%), linear-gradient(180deg, #FDF3DD, #FAE7C5); }
.art-saplings-sm { background: radial-gradient(circle at 50% 120%, rgba(127, 161, 115, 0.28), transparent 70%), linear-gradient(180deg, #FDF3DD, #F4EBCF); }
.art-bigoaks-sm { background: radial-gradient(circle at 50% 120%, rgba(242, 179, 102, 0.32), transparent 70%), linear-gradient(180deg, #FDF3DD, #F9E3BE); }
.room-card-body { padding: 1.6rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.room-card .ages { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; color: var(--coral-deep); margin-bottom: 0.3rem; }
.room-card h3 { margin-bottom: 0.55rem; }
.room-card p { font-size: 0.95rem; }
.room-card .ratio-chip {
  align-self: flex-start;
  margin-top: 1.1rem;
  font-size: 0.8rem; font-weight: 800;
  background: var(--cream-2); color: var(--sage-dark);
  border-radius: 100px; padding: 0.35rem 0.9rem;
}
.room-card .more {
  margin-top: 1.2rem;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--coral-deep);
  display: inline-flex; align-items: center; gap: 0.35rem;
  min-height: 44px;
  transition: gap 0.2s;
}
.room-card:hover .more { gap: 0.6rem; }

/* Small CSS icons for room cards */
.mini-acorn { position: relative; width: 56px; height: 68px; }
.mini-acorn .cap { position: absolute; top: 0; left: 0; width: 56px; height: 28px; border-radius: 28px 28px 8px 8px; background: linear-gradient(180deg, var(--wood), #6E5236); z-index: 2; }
.mini-acorn .cap::after { content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(8deg); width: 7px; height: 13px; border-radius: 4px; background: #6E5236; }
.mini-acorn .nut { position: absolute; top: 16px; left: 5px; width: 46px; height: 50px; border-radius: 46% 46% 50% 50% / 32% 32% 68% 68%; background: linear-gradient(160deg, var(--apricot), var(--coral)); }
.mini-sapling { position: relative; width: 70px; height: 72px; }
.mini-sapling .stem { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 6px; height: 46px; border-radius: 4px; background: var(--sage-deep); }
.mini-sapling .lf { position: absolute; width: 30px; height: 30px; background: linear-gradient(135deg, #A5C098, var(--sage-deep)); }
.mini-sapling .lf.left { bottom: 32px; left: 4px; border-radius: 100% 0 100% 0; transform: rotate(6deg); }
.mini-sapling .lf.right { top: 0; right: 5px; border-radius: 0 100% 0 100%; transform: rotate(-6deg); }
.mini-oak { position: relative; width: 74px; height: 76px; display: flex; flex-direction: column; align-items: center; }
.mini-oak .crown { width: 62px; height: 54px; border-radius: 50% 50% 46% 46%; background: radial-gradient(circle at 35% 30%, #729660, #4C6B43); }
.mini-oak .crown::after { content: ''; position: absolute; top: 10px; left: 8px; width: 12px; height: 12px; border-radius: 50%; background: rgba(253, 243, 221, 0.35); }
.mini-oak .trunk { width: 10px; height: 24px; margin-top: -6px; border-radius: 5px; background: var(--wood); }

/* --- Timeline --- */
.day-section { background: var(--cream-2); border-block: 1px solid var(--border); position: relative; overflow: hidden; }
.timeline { max-width: 700px; margin: 0 auto; position: relative; --tcol: 76px; }
.timeline::before {
  content: ''; position: absolute;
  left: calc(var(--tcol) + 18.5px); top: 14px; bottom: 14px;
  width: 3px; border-radius: 3px;
  background: repeating-linear-gradient(180deg, var(--sage-soft) 0 10px, transparent 10px 18px);
}
.tl-item { display: grid; grid-template-columns: var(--tcol) 40px 1fr; align-items: flex-start; padding: 0.85rem 0; }
.tl-time { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 0.98rem; color: var(--sage-deep); text-align: right; padding-top: 3px; }
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  margin: 8px auto 0;
  background: var(--coral);
  box-shadow: 0 0 0 5px var(--cream-2);
  position: relative; z-index: 1;
}
.tl-item:nth-child(3n+2) .tl-dot { background: var(--apricot); }
.tl-item:nth-child(3n) .tl-dot { background: var(--sage-deep); }
.tl-body { padding-left: 0.6rem; }
.tl-body h3 { font-size: 1.12rem; margin-bottom: 0.15rem; }
.tl-body p { font-size: 0.94rem; }

/* --- Quotes --- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.9rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
}
.quote-card .qmark {
  font-family: 'Caveat', cursive;
  font-size: 3.4rem; line-height: 0.6;
  color: var(--apricot);
  margin-bottom: 1rem;
}
.quote-card p { font-size: 0.98rem; flex: 1; }
.quote-author { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.5rem; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1rem; color: var(--white);
  background: radial-gradient(circle at 35% 35%, var(--sage), var(--sage-deep));
}
.quote-card:nth-child(2) .quote-avatar { background: radial-gradient(circle at 35% 35%, var(--coral), var(--coral-deep)); }
.quote-card:nth-child(3) .quote-avatar { background: radial-gradient(circle at 35% 35%, var(--apricot), #DB9440); }
.quote-author .name { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.98rem; line-height: 1.3; }
.quote-author .meta { font-size: 0.8rem; color: var(--muted); }

/* --- Hours & sessions --- */
.hours-section { background: var(--sage-dark); position: relative; overflow: hidden; }
.hours-section .hero-blob.b1 { background: rgba(169, 194, 158, 0.12); }
.hours-section .hero-blob.b2 { background: rgba(248, 217, 168, 0.1); }
.hours-section h2, .hours-section h3 { color: var(--cream); }
.hours-section > .container { position: relative; }
.hours-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.hours-card {
  background: rgba(255, 253, 246, 0.07);
  border: 1.5px solid rgba(251, 245, 233, 0.18);
  border-radius: var(--radius);
  padding: 2rem;
}
.hours-card h3 { margin-bottom: 1rem; }
.hours-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(251, 245, 233, 0.14);
  font-size: 0.95rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row .k { color: rgba(251, 245, 233, 0.85); font-weight: 700; }
.hours-row .v { color: var(--apricot-soft); font-family: 'Baloo 2', sans-serif; font-weight: 700; text-align: right; }
.hours-note { margin-top: 1.1rem; font-size: 0.85rem; color: rgba(251, 245, 233, 0.6); }
.sessions-copy p { color: rgba(251, 245, 233, 0.75); font-size: 1.05rem; margin: 1rem 0 1.6rem; }
.session-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.session-list li {
  background: rgba(255, 253, 246, 0.07);
  border: 1.5px solid rgba(251, 245, 233, 0.18);
  border-radius: 20px;
  padding: 1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.session-list .n { font-family: 'Baloo 2', sans-serif; font-weight: 700; color: var(--cream); }
.session-list .n span { display: block; font-family: 'Nunito', sans-serif; font-weight: 400; font-size: 0.83rem; color: rgba(251, 245, 233, 0.6); }
.session-list .time { font-family: 'Baloo 2', sans-serif; font-weight: 700; color: var(--apricot-soft); font-size: 0.95rem; white-space: nowrap; }

/* --- CTA band --- */
.cta-band { background: var(--coral-deep); text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 58% 42% 55% 45% / 52% 58% 42% 48%;
  background: rgba(255, 253, 246, 0.09); pointer-events: none;
}
.cta-band::before { width: 300px; height: 300px; top: -120px; left: -80px; }
.cta-band::after { width: 360px; height: 360px; bottom: -160px; right: -100px; }
.cta-band h2 { color: var(--white); margin: 0.9rem 0 1rem; }
.cta-band p { color: rgba(255, 253, 246, 0.9); font-size: 1.1rem; max-width: 50ch; margin: 0 auto 2rem; }
.cta-band .hand { color: var(--apricot-soft); }
.cta-band .container { position: relative; }

/* --- Footer --- */
footer { background: var(--sage-dark); color: var(--cream); padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: rgba(251, 245, 233, 0.65); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251, 245, 233, 0.5); margin-bottom: 1.1rem; font-weight: 800; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: 0.93rem; color: rgba(251, 245, 233, 0.8); }
.footer-col a { transition: color 0.2s; display: inline-block; padding: 0.15rem 0; }
.footer-col a:hover { color: var(--apricot-soft); }
.footer-bottom {
  border-top: 1px solid rgba(251, 245, 233, 0.15);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(251, 245, 233, 0.5);
  flex-wrap: wrap; gap: 0.5rem;
}

/* --- Page header (inner pages) --- */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  background: var(--cream-2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header .container { position: relative; }
.page-header .eyebrow { margin-bottom: 1rem; }
.page-header h1 { max-width: 18ch; font-size: clamp(2.3rem, 5vw, 3.6rem); }
.page-header p { font-size: 1.1rem; margin-top: 1.1rem; max-width: 56ch; }
.ph-sun {
  position: absolute; top: calc(var(--nav-h) + 2rem); right: var(--pad);
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FADFA9, var(--apricot) 70%);
}
.ph-sun::after { content: ''; position: absolute; inset: -14px; border: 3px dashed rgba(242, 179, 102, 0.8); border-radius: 50%; }

/* --- Room detail (rooms.html) --- */
.room-detail { border-bottom: 1px solid var(--border); }
.room-detail:last-of-type { border-bottom: none; }
.room-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.room-detail.flip .room-grid .room-art { order: 2; }
.room-art {
  position: relative;
  border-radius: 32px;
  min-height: 340px;
  overflow: hidden;
  display: grid; place-items: center;
  border: 1.5px solid var(--border);
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.room-art .ground {
  position: absolute; bottom: -46%; left: -20%;
  width: 140%; height: 70%; border-radius: 50%;
  background: linear-gradient(180deg, var(--sage-soft), var(--sage));
}
.art-acorns { background: linear-gradient(180deg, #FDF3DD, #FAE7C5); }
.art-saplings { background: linear-gradient(180deg, #FDF3DD, #F2EBCC); }
.art-bigoaks { background: linear-gradient(180deg, #FDF3DD, #F9E3BE); }
.room-art .big-icon { position: relative; z-index: 1; transform: scale(1.65); margin-bottom: 2rem; }
.room-art .art-label {
  position: absolute; bottom: 1.4rem; left: 0; right: 0;
  text-align: center; z-index: 1;
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.5rem;
  color: var(--white); text-shadow: 0 1px 8px rgba(60, 82, 54, 0.4);
}
.room-info .ages { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800; color: var(--coral-deep); }
.room-info h2 { margin: 0.4rem 0 1.1rem; }
.room-info > p { font-size: 1.03rem; }
.room-info > p + p { margin-top: 0.9rem; }
.room-stats { display: flex; gap: 0.7rem; flex-wrap: wrap; margin: 1.5rem 0; }
.stat-pill {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 18px;
  padding: 0.75rem 1.2rem;
}
.stat-pill .n { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--sage-deep); line-height: 1.2; }
.stat-pill .l { font-size: 0.78rem; color: var(--muted); }
.room-day {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 24px;
  padding: 1.6rem 1.75rem; margin-top: 1.8rem;
}
.room-day h3 { font-size: 1.15rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.room-day h3 .hand { font-size: 1.3em; }
.room-day ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.room-day li { display: flex; gap: 0.9rem; font-size: 0.94rem; color: var(--muted); align-items: baseline; }
.room-day li strong { font-family: 'Baloo 2', sans-serif; color: var(--sage-deep); font-weight: 700; min-width: 58px; font-size: 0.9rem; }

/* --- Key worker band --- */
.keyworker { background: var(--cream-2); border-block: 1px solid var(--border); }
.kw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kw-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem 1.9rem; }
.kw-card .kw-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.5rem; color: var(--white);
  background: radial-gradient(circle at 35% 35%, var(--coral), var(--coral-deep));
  margin-bottom: 1.1rem;
}
.kw-card:nth-child(2) .kw-num { background: radial-gradient(circle at 35% 35%, var(--apricot), #DB9440); }
.kw-card:nth-child(3) .kw-num { background: radial-gradient(circle at 35% 35%, var(--sage), var(--sage-deep)); }
.kw-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.kw-card p { font-size: 0.95rem; }

/* --- Fees table (parents.html) --- */
.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: 0 24px 44px -32px rgba(60, 82, 54, 0.35);
}
.fees-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.fees-table th, .fees-table td { padding: 1.1rem 1.5rem; text-align: left; }
.fees-table thead th {
  background: var(--sage-dark); color: var(--cream);
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.98rem;
  white-space: nowrap;
}
.fees-table thead th small { display: block; font-family: 'Nunito', sans-serif; font-weight: 400; font-size: 0.76rem; color: rgba(251, 245, 233, 0.65); }
.fees-table tbody th { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.fees-table tbody th small { display: block; font-family: 'Nunito', sans-serif; font-weight: 400; font-size: 0.8rem; color: var(--muted); }
.fees-table tbody tr + tr th, .fees-table tbody tr + tr td { border-top: 1px solid var(--border); }
.fees-table td { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--sage-deep); white-space: nowrap; }
.fees-included { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.75rem; }
.fees-note { margin-top: 1.4rem; font-size: 0.9rem; }

/* --- Funded hours --- */
.funded { background: var(--cream-2); border-block: 1px solid var(--border); }
.funded-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.funded-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem 1.9rem; display: flex; flex-direction: column; }
.funded-card .big {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 2.3rem; line-height: 1; color: var(--coral-deep);
  margin-bottom: 0.2rem;
}
.funded-card .big small { font-size: 1rem; color: var(--muted); font-weight: 700; }
.funded-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.funded-card p { font-size: 0.94rem; }
.funded-note {
  margin-top: 2rem;
  background: var(--white); border: 1.5px dashed var(--sage-soft); border-radius: 20px;
  padding: 1.4rem 1.75rem;
  font-size: 0.95rem; color: var(--ink-2);
}

/* --- Settling in steps --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 24px; padding: 1.75rem 1.6rem; position: relative; }
.step-card::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -16px; left: 1.4rem;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--white);
  background: radial-gradient(circle at 35% 35%, var(--coral), var(--coral-deep));
  box-shadow: 0 0 0 5px var(--cream);
}
.step-card:nth-child(2)::before { background: radial-gradient(circle at 35% 35%, var(--apricot), #DB9440); }
.step-card:nth-child(3)::before { background: radial-gradient(circle at 35% 35%, var(--sage), var(--sage-deep)); }
.step-card:nth-child(4)::before { background: radial-gradient(circle at 35% 35%, var(--coral), var(--coral-deep)); }
.step-card h3 { font-size: 1.12rem; margin: 0.6rem 0 0.45rem; }
.step-card p { font-size: 0.92rem; }

/* --- FAQs --- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq { border: 1.5px solid var(--border); border-radius: 20px; background: var(--white); margin-bottom: 0.9rem; }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.05rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1.02rem;
  min-height: 52px; border-radius: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Baloo 2', sans-serif; font-size: 1.6rem; line-height: 1;
  color: var(--coral-deep); flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.5rem 1.25rem; font-size: 0.95rem; color: var(--muted); }

/* --- Book a visit form --- */
.visit-section .section-head { margin-bottom: 2.5rem; }
.visit-wrap {
  max-width: 820px; margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 32px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 30px 60px -40px rgba(60, 82, 54, 0.4);
}
.visit-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1.05rem;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  min-height: 52px;
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(206, 96, 63, 0.45); outline-offset: 0;
  border-color: var(--coral-deep);
}
.visit-form .btn { grid-column: 1 / -1; justify-self: start; }
.form-note { grid-column: 1 / -1; font-size: 0.85rem; }
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success[hidden] { display: none; }
.form-success .big-hand { font-family: 'Caveat', cursive; font-weight: 700; font-size: 2.6rem; color: var(--sage-deep); display: block; margin-bottom: 0.6rem; }
.form-success p { max-width: 44ch; margin: 0 auto; }

/* --- Find us --- */
.findus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.findus-info h2 { margin: 0.6rem 0 1.4rem; }
.findus-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.findus-item svg { width: 22px; height: 22px; stroke: var(--coral-deep); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 4px; }
.findus-item p { color: var(--ink); font-weight: 700; }
.findus-item span { display: block; color: var(--muted); font-weight: 400; font-size: 0.9rem; }
.findus-map {
  position: relative;
  border-radius: 32px;
  min-height: 340px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background:
    radial-gradient(circle at 20% 30%, rgba(169, 194, 158, 0.4), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(248, 217, 168, 0.5), transparent 45%),
    linear-gradient(160deg, #F4EEDD, #EAE2C8);
}
.findus-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(138, 104, 68, 0.14) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 63%, rgba(138, 104, 68, 0.14) 63% 66%, transparent 66%),
    linear-gradient(35deg, transparent 30%, rgba(127, 161, 115, 0.16) 30% 33%, transparent 33%);
}
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.map-pin .ring {
  width: 74px; height: 74px; border-radius: 50%;
  border: 3px dashed var(--coral-deep);
  display: grid; place-items: center;
  margin: 0 auto 0.9rem;
  background: rgba(255, 253, 246, 0.75);
}
.map-pin .ring::after {
  content: '';
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--coral), var(--coral-deep));
}
.map-pin .label { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.map-pin .sub { font-size: 0.85rem; color: var(--muted); }

/* --- Responsive --- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-visual { max-width: 540px; margin-inline: auto; width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid, .quotes-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .room-card-art { height: 150px; }
  .hours-grid, .findus-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; gap: 2rem; }
  .room-art { position: relative; top: auto; min-height: 260px; }
  .room-detail.flip .room-grid .room-art { order: 0; }
  .kw-grid, .funded-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .steps-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 1.25rem var(--pad) 1.75rem;
    gap: 0.25rem;
    box-shadow: 0 30px 40px -30px rgba(60, 82, 54, 0.35);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: flex; align-items: center; min-height: 48px; font-size: 1.05rem; }
  .nav-links .btn { margin-top: 0.75rem; justify-content: center; }
  .nav-toggle { display: flex; }
}

@media (max-width: 540px) {
  .timeline { --tcol: 54px; }
  .tl-time { font-size: 0.88rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .visit-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scene-badge { position: static; margin-top: 1rem; box-shadow: none; }
  .scene-note { text-align: center; margin-top: 1.2rem; }
  .hero-chips { gap: 0.5rem; }
  .ph-sun { display: none; }
  .fees-table th, .fees-table td { padding: 0.9rem 1.1rem; }
  .session-list .time { white-space: normal; }
}

/* Lightwork demo attribution bar */
.lw-demo-bar { display: block; background: #241631; color: rgba(255,255,255,0.85); text-align: center; padding: 9px 16px; font-size: 13px; letter-spacing: 0.02em; text-decoration: none; position: relative; z-index: 200; }
.lw-demo-bar strong { color: #78ffd3; font-weight: 700; }
.lw-demo-bar:hover { background: #2f1d40; }
