/* ============================================================
   CHITI KIDS SPACE — Design System
   Warm Montessori / natural. Forest green + soft yellow + cream.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@1,6..72,400;1,6..72,500&display=swap');

:root {
  /* Brand */
  --green-900: #2c5417;
  --green-800: #34631c;
  --green-700: #3d6b22;
  --green-600: #4e7e2e;
  --green-500: #629a3c;
  --sage:      #93a884;
  --sage-soft: #c5d2b8;

  --yellow:      #f4df8c;
  --yellow-deep: #ecc94a;
  --yellow-soft: #faefc3;

  --clay:      #d98e6a;
  --clay-soft: #f0cdb8;

  --cream:    #faf5ea;
  --cream-2:  #f4ecda;
  --cream-3:  #ece1c9;
  --paper:    #fffdf7;

  --ink:      #2a2c21;
  --ink-soft: #5e6150;
  --ink-faint:#8a8c7c;

  /* Type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;

  /* Geometry */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(44, 84, 23, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(44, 84, 23, 0.18);
  --shadow-lg: 0 30px 70px -30px rgba(44, 84, 23, 0.30);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--yellow); color: var(--green-900); }

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

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--green-600);
}
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; color: var(--green-900); }

.h-display { font-size: clamp(2.6rem, 6.4vw, 5.3rem); font-weight: 700; }
.h-section { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--ink-soft); line-height: 1.55; max-width: 42ch; }

.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---- Buttons ---- */
.btn {
  --bg: var(--green-700); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  background: var(--bg); color: var(--fg);
  border: none; cursor: pointer; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  box-shadow: 0 8px 20px -8px rgba(44,84,23,0.5);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(44,84,23,0.55); }
.btn:active { transform: translateY(-1px); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: var(--green-800); border: 1.5px solid var(--sage-soft); box-shadow: none; }
.btn--ghost:hover { background: var(--paper); border-color: var(--green-600); box-shadow: var(--shadow-sm); }
.btn--yellow { --bg: var(--yellow); --fg: var(--green-900); box-shadow: 0 8px 20px -8px rgba(236,201,74,0.6); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }

/* ---- Reveal animations ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 18px;
}
.header.scrolled {
  background: rgba(250, 245, 234, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(44,84,23,0.08);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; transition: height .4s var(--ease); }
.header.scrolled .brand img { height: 42px; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--green-800); letter-spacing: -0.01em; line-height: 1; }
.brand-name small { display: block; font-family: var(--body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 500; font-size: 0.96rem; color: var(--ink-soft);
  padding: 9px 16px; border-radius: var(--r-pill); position: relative;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--green-800); background: rgba(98,154,60,0.10); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex; background: rgba(98,154,60,0.12); border-radius: var(--r-pill);
  padding: 3px; gap: 2px;
}
.lang-toggle button {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: 0.82rem; color: var(--ink-soft);
  padding: 6px 13px; border-radius: var(--r-pill); transition: all .25s;
}
.lang-toggle button.active { background: var(--paper); color: var(--green-800); box-shadow: var(--shadow-sm); }

.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--sage-soft);
    background: var(--paper); cursor: pointer;
  }
  .nav-toggle span { position: relative; width: 18px; height: 2px; background: var(--green-800); border-radius: 2px; transition: .3s; }
  .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--green-800); border-radius: 2px; transition: .3s; }
  .nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
  body.menu-open .nav-toggle span { background: transparent; }
  body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
  body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 clamp(20px,6vw,56px); transform: translateY(-100%);
  transition: transform .5s var(--ease); visibility: hidden;
}
body.menu-open .mobile-menu { transform: none; visibility: visible; }
.mobile-menu a { font-family: var(--display); font-size: clamp(2rem,8vw,3rem); font-weight: 700; color: var(--green-900); padding: 8px 0; border-bottom: 1px solid var(--cream-3); }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(130px, 18vh, 200px); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { margin-bottom: 22px; font-size: clamp(2.6rem, 6.4vw, 5.3rem); }
.hero h1 .pop { color: var(--green-600); position: relative; white-space: nowrap; }
.hero h1 .pop svg { position: absolute; left: -4%; bottom: -10px; width: 108%; height: auto; pointer-events: none; }
.hero .lead { margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta .num { font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: var(--green-800); line-height: 1; }
.hero-meta .lab { font-size: 0.86rem; color: var(--ink-soft); margin-top: 4px; }

/* Hero visual collage */
.hero-visual { position: relative; height: clamp(420px, 52vw, 600px); }
.hero-photo {
  position: absolute; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--cream-3);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo.main { inset: 0 0 14% 18%; z-index: 2; border-radius: var(--r-xl); }
.hero-photo.sub { width: 42%; height: 40%; left: -2%; bottom: 4%; z-index: 3; border: 6px solid var(--cream); border-radius: var(--r-lg); }
.hero-blob {
  position: absolute; z-index: 1; border-radius: 48% 52% 58% 42% / 52% 44% 56% 48%;
  background: var(--yellow); inset: 6% 8% 22% 26%;
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 48% 52% 58% 42% / 52% 44% 56% 48%; transform: rotate(0deg); }
  50% { border-radius: 56% 44% 42% 58% / 44% 56% 50% 50%; transform: rotate(6deg) scale(1.02); }
}
.hero-badge {
  position: absolute; z-index: 4; right: -2%; top: 8%;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--paper); box-shadow: var(--shadow-md);
  display: grid; place-items: center; text-align: center;
  animation: spin 26s linear infinite;
}
.hero-badge svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-badge .ic { font-size: 2rem; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-badge, .hero-blob { animation: none; } }

.float-dot { position: absolute; border-radius: 50%; z-index: 1; opacity: .9; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: clamp(360px, 80vw, 480px); order: -1; }
  .hero .lead { max-width: none; }
}

/* ============================================================
   MARQUEE strip
   ============================================================ */
.strip { background: var(--green-800); color: var(--yellow-soft); padding-block: 16px; overflow: hidden; position: relative; z-index: 2; }
.marquee { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: var(--display); font-weight: 600; font-size: 1.1rem; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; color: var(--cream); }
.marquee span::after { content: "✿"; color: var(--yellow); font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.strip:hover .marquee { animation-play-state: paused; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; }
.sec-head .h-section { max-width: 18ch; }
.sec-head p { max-width: 38ch; color: var(--ink-soft); }

.programs { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.2vw, 28px); }
.prog-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: var(--shadow-md);
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prog-card .bg { position: absolute; inset: 0; z-index: -2; }
.prog-card .bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.prog-card:hover .bg img { transform: scale(1.07); }
.prog-card .scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(28,48,14,0.92) 0%, rgba(28,48,14,0.55) 38%, rgba(28,48,14,0.05) 75%); }
.prog-card .pc-inner { padding: clamp(22px, 2.4vw, 32px); position: relative; }
.prog-card .pc-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,223,140,0.92); color: var(--green-900); font-weight: 600; font-size: 0.78rem; letter-spacing: .03em; padding: 6px 13px; border-radius: var(--r-pill); margin-bottom: 14px; }
.prog-card h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 8px; }
.prog-card .pc-desc {
  color: rgba(255,255,255,0.86); font-size: 0.98rem; max-width: 34ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .55s var(--ease), opacity .45s var(--ease), margin .45s var(--ease);
}
.prog-card:hover .pc-desc, .prog-card.open .pc-desc { max-height: 160px; opacity: 1; margin-top: 4px; }
.prog-card .pc-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-weight: 600; font-size: 0.92rem; color: var(--yellow);
}
.prog-card .pc-more .arrow { transition: transform .35s var(--ease); }
.prog-card:hover .pc-more .arrow { transform: translateX(5px); }

@media (max-width: 760px) {
  .programs { grid-template-columns: 1fr; }
  .prog-card { min-height: 320px; }
  .prog-card .pc-desc { max-height: 160px; opacity: 1; margin-top: 4px; }
}

/* ============================================================
   PROVIDE (features)
   ============================================================ */
.provide { background: var(--cream-2); }
.provide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.feature {
  background: var(--paper); border-radius: var(--r-lg); padding: clamp(24px,2.6vw,34px);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  border: 1px solid rgba(44,84,23,0.05);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature .ficon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px; background: var(--yellow-soft); }
.feature:nth-child(2) .ficon { background: var(--clay-soft); }
.feature:nth-child(3) .ficon { background: var(--sage-soft); }
.feature:nth-child(4) .ficon { background: #d9e7f0; }
.feature .ficon svg { width: 34px; height: 34px; }
.feature h4 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { font-size: 0.95rem; color: var(--ink-soft); }

@media (max-width: 860px) { .provide-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .provide-grid { grid-template-columns: 1fr; } }

/* ============================================================
   APPROACH
   ============================================================ */
.approach { background: var(--green-800); color: var(--cream); position: relative; overflow: hidden; }
.approach::before {
  content: ""; position: absolute; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -16%; top: -22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,223,140,0.16), transparent 62%);
}
.approach .eyebrow { color: var(--yellow); }
.approach .eyebrow::before { background: var(--yellow); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; position: relative; z-index: 2; }
.approach h2 { color: var(--cream); }
.approach .big-quote { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.18; color: var(--yellow); margin: 8px 0 26px; letter-spacing: -0.01em; }
.approach p { color: rgba(255,253,247,0.82); font-size: 1.1rem; max-width: 46ch; margin-bottom: 26px; }
.pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar {
  background: rgba(255,253,247,0.06); border: 1px solid rgba(255,253,247,0.12);
  border-radius: var(--r-md); padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start;
  transition: background .3s, transform .3s var(--ease);
}
.pillar:hover { background: rgba(255,253,247,0.10); transform: translateX(6px); }
.pillar .pn { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--yellow); line-height: 1; min-width: 42px; }
.pillar h4 { color: var(--cream); font-size: 1.18rem; margin-bottom: 4px; }
.pillar p { color: rgba(255,253,247,0.74); font-size: 0.96rem; margin: 0; max-width: none; }
@media (max-width: 880px) { .approach-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DAY IN THE LIFE — timeline
   ============================================================ */
.day-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.day-tab {
  border: 1.5px solid var(--cream-3); background: var(--paper); cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: 0.95rem; color: var(--ink-soft);
  padding: 11px 20px; border-radius: var(--r-pill); transition: all .3s var(--ease);
}
.day-tab.active { background: var(--green-700); color: #fff; border-color: var(--green-700); box-shadow: var(--shadow-sm); }
.day-tab:hover:not(.active) { border-color: var(--green-500); color: var(--green-800); }

.timeline { position: relative; }
.tl-track { display: grid; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 22px 0;
  border-top: 1px solid var(--cream-3); align-items: start;
  opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.tl-item.show { opacity: 1; transform: none; }
.tl-time { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--green-700); padding-top: 2px; }
.tl-body { display: flex; gap: 16px; align-items: flex-start; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--yellow-deep); margin-top: 7px; flex-shrink: 0; box-shadow: 0 0 0 5px var(--yellow-soft); }
.tl-item:nth-child(even) .tl-dot { background: var(--clay); box-shadow: 0 0 0 5px var(--clay-soft); }
.tl-h { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--green-900); margin-bottom: 3px; }
.tl-p { color: var(--ink-soft); font-size: 0.98rem; max-width: 52ch; }
@media (max-width: 600px) { .tl-item { grid-template-columns: 84px 1fr; gap: 14px; } .tl-time { font-size: 1rem; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream-2); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: clamp(12px,1.6vw,18px); }
.gal-item { position: relative; overflow: hidden; border-radius: var(--r-md); cursor: pointer; box-shadow: var(--shadow-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,48,14,0.4), transparent 55%); opacity: 0; transition: opacity .4s; }
.gal-item:hover::after { opacity: 1; }
.gal-item .gal-zoom { position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,253,247,0.92); display: grid; place-items: center; opacity: 0; transform: scale(.7); transition: all .4s var(--ease); z-index: 2; }
.gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }
.gal-item.big { grid-column: span 2; grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
@media (max-width: 760px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal-item.big { grid-column: span 2; grid-row: span 2; }
  .gal-item.wide { grid-column: span 2; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,32,10,0.92); backdrop-filter: blur(6px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); transform: scale(.94); transition: transform .45s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; border: none; background: rgba(255,253,247,0.14); color: #fff; font-size: 1.6rem; cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.lb-btn:hover { background: rgba(255,253,247,0.28); }
.lb-prev { left: 4vw; } .lb-next { right: 4vw; }
.lb-close { position: absolute; top: 4vh; right: 4vw; width: 50px; height: 50px; border-radius: 50%; border: none; background: rgba(255,253,247,0.14); color: #fff; font-size: 1.4rem; cursor: pointer; }
.lb-close:hover { background: rgba(255,253,247,0.28); }
.lb-count { position: absolute; bottom: 4vh; left: 50%; transform: translateX(-50%); color: var(--cream); font-weight: 600; letter-spacing: .1em; }

/* ============================================================
   BOOK / CONTACT
   ============================================================ */
.book { background: var(--cream); }
.book-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px,5vw,72px); align-items: stretch; }
.contact-list { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--cream-3); }
.contact-row .ci { width: 46px; height: 46px; border-radius: 14px; background: var(--yellow-soft); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row .ck { font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.contact-row .cv { font-size: 1.06rem; color: var(--green-900); font-weight: 500; }
.contact-row a.cv:hover { color: var(--green-600); }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a { width: 48px; height: 48px; border-radius: 50%; background: var(--paper); border: 1px solid var(--cream-3); display: grid; place-items: center; transition: all .3s var(--ease); }
.socials a:hover { background: var(--green-700); transform: translateY(-3px); }
.socials a:hover svg { stroke: #fff; fill: #fff; }
.socials a svg { width: 22px; height: 22px; }

/* Form card */
.book-card { background: var(--paper); border-radius: var(--r-xl); padding: clamp(28px,3.4vw,48px); box-shadow: var(--shadow-md); border: 1px solid rgba(44,84,23,0.05); position: relative; overflow: hidden; }
.steps-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.steps-head .sdot { height: 6px; border-radius: 3px; background: var(--cream-3); flex: 1; transition: background .4s; }
.steps-head .sdot.active { background: var(--green-600); }
.steps-head .sdot.done { background: var(--sage); }
.step { display: none; animation: fadeStep .5s var(--ease); }
.step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.step h3 { font-size: 1.5rem; margin-bottom: 6px; }
.step .step-sub { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.98rem; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  border: 1.5px solid var(--cream-3); border-radius: var(--r-md); padding: 18px; cursor: pointer;
  display: flex; gap: 14px; align-items: center; transition: all .3s var(--ease); background: var(--cream);
}
.choice:hover { border-color: var(--green-500); }
.choice.sel { border-color: var(--green-600); background: var(--yellow-soft); }
.choice .cemoji { font-size: 1.6rem; }
.choice .ctitle { font-weight: 600; color: var(--green-900); font-size: 1rem; }
.choice .csub { font-size: 0.82rem; color: var(--ink-soft); }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.86rem; color: var(--green-800); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--cream-3);
  background: var(--cream); transition: border .25s, box-shadow .25s; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(98,154,60,0.12); background: var(--paper); }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.row2 > div { margin: 0; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.link-back { background: none; border: none; cursor: pointer; color: var(--ink-soft); font-family: var(--body); font-weight: 600; font-size: 0.95rem; padding: 12px 4px; }
.link-back:hover { color: var(--green-800); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1.5px solid var(--cream-3); background: var(--cream); border-radius: var(--r-pill); padding: 9px 16px; cursor: pointer; font-weight: 500; font-size: 0.92rem; color: var(--ink-soft); transition: all .25s; }
.chip.sel { background: var(--green-700); color: #fff; border-color: var(--green-700); }

.success { text-align: center; padding: 20px 0; }
.success .tick { width: 84px; height: 84px; border-radius: 50%; background: var(--yellow-soft); display: grid; place-items: center; margin: 0 auto 22px; }
.success .tick svg { width: 42px; height: 42px; }
.success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.success p { color: var(--ink-soft); max-width: 36ch; margin: 0 auto 8px; }
.success .recap { background: var(--cream); border-radius: var(--r-md); padding: 18px; margin-top: 22px; text-align: left; font-size: 0.95rem; }
.success .recap b { color: var(--green-800); }

@media (max-width: 880px) { .book-grid { grid-template-columns: 1fr; } .choice-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); color: var(--cream); padding-block: clamp(50px,6vw,80px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,253,247,0.12); }
.footer .brand-name { color: var(--cream); }
.footer-blurb { color: rgba(255,253,247,0.7); max-width: 32ch; margin-top: 16px; font-size: 0.98rem; }
.footer-col h5 { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--yellow); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,253,247,0.78); font-size: 0.96rem; padding: 5px 0; transition: color .25s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; color: rgba(255,253,247,0.6); font-size: 0.88rem; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: span 2; } }

/* Scroll progress + back to top */
.scroll-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--yellow-deep); z-index: 150; width: 0; }
.to-top { position: fixed; right: 24px; bottom: 24px; width: 52px; height: 52px; border-radius: 50%; background: var(--green-700); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px) scale(.9); transition: all .4s var(--ease); z-index: 120; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--green-800); transform: translateY(-3px); }

/* ============================================================
   PREMIUM LAYER — preloader, grain, cursor, parallax, waves, FAQ
   ============================================================ */

/* ---- Preloader ---- */
.preloader {
  position: fixed; inset: 0; z-index: 500; background: var(--cream);
  display: grid; place-items: center; transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; }
.pl-bird { width: 96px; height: 96px; margin: 0 auto 22px; position: relative; animation: plFloat 2.4s ease-in-out infinite; }
.pl-bird img { width: 100%; height: 100%; object-fit: contain; }
@keyframes plFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
.pl-word { font-family: var(--display); font-weight: 700; font-size: 1.6rem; color: var(--green-800); letter-spacing: .02em; overflow: hidden; }
.pl-bar { width: 180px; height: 4px; border-radius: 4px; background: var(--cream-3); margin: 18px auto 0; overflow: hidden; }
.pl-bar i { display: block; height: 100%; width: 0; background: var(--green-600); border-radius: 4px; transition: width .3s linear; }
@media (prefers-reduced-motion: reduce) { .pl-bird { animation: none; } }

/* ---- Film grain overlay ---- */
.grain {
  position: fixed; inset: 0; z-index: 400; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---- Custom cursor companion (desktop, fine pointer only) ---- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 450; pointer-events: none; border-radius: 50%; will-change: transform; }
.cursor-dot { width: 7px; height: 7px; background: var(--green-700); transform: translate(-50%, -50%); }
.cursor-ring { width: 38px; height: 38px; border: 1.6px solid rgba(78,126,46,0.45); transform: translate(-50%, -50%); transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s; }
.cursor-ring.hot { width: 60px; height: 60px; background: rgba(244,223,140,0.25); border-color: rgba(78,126,46,0.0); }
body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor .choice, body.has-cursor .chip, body.has-cursor .gal-item, body.has-cursor [data-prog] { cursor: none; }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ---- Magnetic buttons ---- */
.btn { will-change: transform; }

/* ---- 3D tilt cards ---- */
.prog-card, .feature { transform-style: preserve-3d; }

/* ---- Organic wave dividers ---- */
.wave-top, .wave-bottom { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; pointer-events: none; }
.wave-top { top: -1px; } .wave-bottom { bottom: -1px; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }

/* ---- Ambient floating shapes ---- */
.ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.ambient .shape { position: absolute; border-radius: 50%; opacity: .5; animation: drift 18s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(14px,-18px) rotate(8deg); } 66% { transform: translate(-12px,12px) rotate(-6deg); } }
@media (prefers-reduced-motion: reduce) { .ambient .shape { animation: none; } }
.section > .wrap, .hero > .wrap { position: relative; z-index: 2; }
.approach-grid, .provide-grid, .sec-head, .programs, .timeline, .day-tabs, .gal-grid, .book-grid, .faq-wrap { position: relative; z-index: 2; }

/* ---- FAQ ---- */
.faq { background: var(--cream); }
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px,5vw,72px); align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid rgba(44,84,23,0.07); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .35s var(--ease), border-color .35s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(78,126,46,0.25); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem,1.7vw,1.25rem); color: var(--green-900); }
.faq-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--yellow-soft); display: grid; place-items: center; position: relative; transition: background .3s, transform .4s var(--ease); }
.faq-item.open .faq-ic { background: var(--green-700); transform: rotate(135deg); }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--green-800); border-radius: 2px; transition: background .3s; }
.faq-ic::before { width: 13px; height: 2px; } .faq-ic::after { width: 2px; height: 13px; }
.faq-item.open .faq-ic::before, .faq-item.open .faq-ic::after { background: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; max-width: 56ch; }
.faq-aside { position: sticky; top: 110px; }
.faq-aside .card { background: var(--green-800); color: var(--cream); border-radius: var(--r-lg); padding: clamp(28px,3vw,40px); position: relative; overflow: hidden; }
.faq-aside .card h3 { color: var(--cream); font-size: 1.6rem; margin-bottom: 10px; }
.faq-aside .card p { color: rgba(255,253,247,0.82); margin-bottom: 22px; }
.faq-aside .card .btn { width: 100%; }
@media (max-width: 880px) { .faq-wrap { grid-template-columns: 1fr; } .faq-aside { position: static; } }

/* ---- Sticky mobile CTA ---- */
.sticky-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 110; display: none; }
.sticky-cta .btn { width: 100%; box-shadow: var(--shadow-lg); }
@media (max-width: 940px) { .sticky-cta { display: block; transform: translateY(140%); transition: transform .45s var(--ease); } .sticky-cta.show { transform: none; } }

/* ---- Section number watermark ---- */
.sec-num { position: absolute; right: clamp(20px,5vw,56px); top: clamp(30px,5vw,70px); font-family: var(--display); font-weight: 800; font-size: clamp(5rem, 12vw, 11rem); color: rgba(78,126,46,0.05); line-height: 1; z-index: 0; pointer-events: none; user-select: none; }

/* ============================================================
   POLISH LAYER — a11y, scrollspy, map, open-now, timeline line
   ============================================================ */

/* anchors land below the fixed header */
section[id] { scroll-margin-top: 92px; }

/* keyboard focus */
:focus-visible { outline: 3px solid var(--yellow-deep); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible { outline-color: var(--green-600); }

/* active nav link (scrollspy) */
.nav-links a.active { color: var(--green-800); background: rgba(98,154,60,0.14); }

/* open-now badge */
.open-now { display: inline-flex; align-items: center; gap: 7px; margin-top: 5px; font-size: 0.82rem; font-weight: 600; }
.open-now i { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(98,154,60,0.2); animation: pulse 2.2s ease-in-out infinite; }
.open-now.closed i { background: var(--clay); box-shadow: 0 0 0 3px rgba(217,142,106,0.2); animation: none; }
.open-now span { color: var(--green-700); }
.open-now.closed span { color: var(--clay); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(98,154,60,0.2); } 50% { box-shadow: 0 0 0 6px rgba(98,154,60,0.08); } }

/* map */
.map-card { margin-top: 26px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(44,84,23,0.08); line-height: 0; }
.map-card iframe { width: 100%; height: 240px; border: 0; filter: saturate(0.85) contrast(1.02); }

/* timeline progress line */
.tl-track { position: relative; }
.tl-track::before { content: ""; position: absolute; left: calc(120px + 28px + 6px); top: 28px; bottom: 28px; width: 2px; background: var(--cream-3); border-radius: 2px; }
.tl-line { position: absolute; left: calc(120px + 28px + 6px); top: 28px; width: 2px; background: var(--green-500); border-radius: 2px; height: 0; transition: height .25s linear; max-height: calc(100% - 56px); }
.tl-item { position: relative; z-index: 1; }
@media (max-width: 600px) {
  .tl-track::before, .tl-line { left: calc(84px + 14px + 6px); }
}
