/* ============================================================
   HESS PRESCHOOL — REDESIGN 2026
   Editorial, warm, premium. Custom design system, no frameworks.
   ============================================================ */

:root {
  --paper: #FBF6EE;
  --paper-2: #F4EDDF;
  --card: #FFFDF8;
  --ink: #1C2B25;
  --ink-soft: #43554D;
  --green: #0C5B48;
  --green-deep: #084536;
  --green-tint: #E3F0EA;
  --coral: #F2622E;
  --coral-soft: #FFE3D6;
  --sun: #FFB930;
  --sun-soft: #FFF1D4;
  --sky: #2E86AB;
  --sky-soft: #DCEDF3;
  --lilac: #8E7CC3;
  --lilac-soft: #EAE5F6;
  --line: rgba(28, 43, 37, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 10px rgba(28, 43, 37, 0.06);
  --shadow-md: 0 14px 40px -12px rgba(28, 43, 37, 0.18);
  --shadow-lg: 0 30px 80px -20px rgba(28, 43, 37, 0.28);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --wrap: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--sun); color: var(--ink); }

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

a { color: inherit; }

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72;
}

.h-display { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-xl { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.h-lg { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.h-md { font-size: clamp(1.25rem, 2vw, 1.6rem); }

h1 em, h2 em, .display em {
  font-style: italic;
  font-weight: 480;
  color: var(--green);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); line-height: 1.7; }

.marker {
  background: linear-gradient(transparent 62%, var(--sun) 62%, var(--sun) 94%, transparent 94%);
  padding: 0 0.08em;
  white-space: nowrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
  will-change: transform;
}

.btn svg { transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 26px -10px rgba(12, 91, 72, 0.55); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(12, 91, 72, 0.6); }

.btn-sun { background: var(--sun); color: var(--ink); box-shadow: 0 10px 26px -10px rgba(255, 185, 48, 0.7); }
.btn-sun:hover { transform: translateY(-3px) rotate(-1deg); }

.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  transition: padding 0.3s;
}

.site-header.scrolled {
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(28, 43, 37, 0.25);
}

.site-header.scrolled .bar { padding: 10px 0; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 52px; width: auto; transition: height 0.3s; }
.site-header.scrolled .logo img { height: 42px; }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav > a, .nav-item > button {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}

.main-nav > a:hover, .nav-item:hover > button { background: var(--green-tint); color: var(--green); }
.main-nav > a.active { color: var(--coral); }

.nav-item { position: relative; }
.nav-item > button .chev { transition: transform 0.25s; }
.nav-item:hover > button .chev, .nav-item:focus-within > button .chev { transform: rotate(180deg); }

.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 12px);
  min-width: 300px;
  background: var(--card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-drop a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.nav-drop a small { font-weight: 500; color: var(--ink-soft); font-size: 0.78rem; }
.nav-drop a:hover { background: var(--sun-soft); }

.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 46px; height: 46px;
  border-radius: 12px;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 1050;
  padding: 110px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  overflow-y: auto;
}

.drawer.open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 560;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a small { display: block; font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
.drawer .btn { margin-top: 26px; }

body.nav-open { overflow: hidden; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy > * + * { margin-top: 22px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.chip .dot { width: 8px; height: 8px; border-radius: 50%; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-note { display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: 0.92rem; }
.hero-note .avatars { display: flex; }
.hero-note .avatars img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--paper);
  margin-left: -12px;
}
.hero-note .avatars img:first-child { margin-left: 0; }

.hero-visual { position: relative; }

.hero-photo {
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 0.92;
  animation: blobMorph 14s ease-in-out infinite alternate;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }

@keyframes blobMorph {
  0% { border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%; }
  50% { border-radius: 54% 46% 44% 56% / 52% 56% 44% 48%; }
  100% { border-radius: 48% 52% 56% 44% / 56% 44% 52% 48%; }
}

.sticker {
  position: absolute;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  animation: floaty 6s ease-in-out infinite;
}

.sticker small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.78rem; }
.sticker .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.sticker .ic img { width: 28px; height: 28px; object-fit: contain; }

.sticker-1 { top: 6%; left: -34px; transform: rotate(-4deg); }
.sticker-2 { bottom: 12%; right: -26px; transform: rotate(3deg); animation-delay: 1.4s; }
.sticker-3 { bottom: -22px; left: 12%; transform: rotate(-2deg); animation-delay: 2.6s; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.hero-squiggle {
  position: absolute;
  width: 120px;
  top: -30px;
  right: 8%;
  color: var(--coral);
  animation: spinSlow 24s linear infinite;
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ---------- Marquee band ---------- */

.marquee {
  background: var(--green);
  color: var(--paper);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.02);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  white-space: nowrap;
}

.marquee-track span { display: flex; align-items: center; gap: 48px; }
.marquee-track .star { color: var(--sun); font-style: normal; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section { padding: 100px 0; position: relative; }
.section.tight { padding: 70px 0; }
.section.tint { background: var(--paper-2); }
.section.green { background: var(--green); color: var(--paper); }
.section.green .eyebrow { color: var(--sun); }
.section.green .lede { color: rgba(251, 246, 238, 0.82); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head > * + * { margin-top: 18px; }

/* ---------- Cards ---------- */

.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.card .ic {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.card .ic img { width: 40px; height: 40px; object-fit: contain; }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

.card.accent-sun { background: var(--sun-soft); border-color: rgba(255, 185, 48, 0.4); }
.card.accent-coral { background: var(--coral-soft); border-color: rgba(242, 98, 46, 0.3); }
.card.accent-sky { background: var(--sky-soft); border-color: rgba(46, 134, 171, 0.3); }
.card.accent-lilac { background: var(--lilac-soft); border-color: rgba(142, 124, 195, 0.35); }
.card.accent-green { background: var(--green-tint); border-color: rgba(12, 91, 72, 0.25); }

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split + .split { margin-top: 90px; }
.split.flip > .split-media { order: 2; }

.split-media { position: relative; }

.split-media .ph {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
}

.split-media .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1); }
.split-media:hover .ph img { transform: scale(1.05); }

.split-media .badge-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--sun);
  color: var(--ink);
  border-radius: 20px;
  padding: 16px 22px;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
  max-width: 240px;
  line-height: 1.3;
}

.split-copy > * + * { margin-top: 20px; }

.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list li::before {
  content: "";
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C5B48' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 14px no-repeat;
  margin-top: 2px;
}

.check-list li strong { display: block; }
.check-list li span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Stats band ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }

.stat { padding: 20px; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--sun);
  line-height: 1;
}
.stat .lbl { margin-top: 10px; font-size: 0.95rem; opacity: 0.85; }

/* ---------- Programme cards (home / overview) ---------- */

.prog-track { display: grid; gap: 18px; }

.prog-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 34px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.prog-row::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--accent, var(--green));
  border-radius: 6px 0 0 6px;
}

.prog-row:hover { transform: translateX(10px); box-shadow: var(--shadow-md); border-color: var(--accent, var(--green)); }

.prog-row .age {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--accent, var(--green));
  line-height: 1.05;
  text-align: center;
}
.prog-row .age small { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }

.prog-row h3 { font-size: 1.45rem; margin-bottom: 6px; }
.prog-row p { color: var(--ink-soft); font-size: 0.97rem; max-width: 640px; }

.prog-row .arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  flex: none;
}
.prog-row:hover .arrow { background: var(--accent, var(--green)); border-color: var(--accent, var(--green)); transform: rotate(-40deg); }
.prog-row:hover .arrow svg { stroke: #fff; }

/* ---------- Page hero (interior) ---------- */

.page-hero {
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero .crumbs { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; }
.page-hero .crumbs a { text-decoration: none; color: var(--green); }
.page-hero .crumbs a:hover { text-decoration: underline; }

.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.page-hero-grid > div > * + * { margin-top: 22px; }

.page-hero .ph {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.page-hero .ph img { width: 100%; height: 100%; object-fit: cover; }

.blob-deco { position: absolute; pointer-events: none; z-index: -1; }

/* ---------- Timetable ---------- */

.day-table { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--card); }

.day-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 28px;
  align-items: baseline;
}

.day-row:nth-child(odd) { background: var(--paper); }
.day-row .t { font-family: var(--font-display); font-weight: 600; color: var(--green); font-size: 1.05rem; }
.day-row .a { color: var(--ink-soft); }

/* ---------- Accordion (FAQ) ---------- */

.accordion { display: grid; gap: 14px; }

.acc-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.acc-item.open { border-color: var(--green); box-shadow: var(--shadow-md); }

.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.acc-head .plus {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sun-soft);
  display: grid;
  place-items: center;
  transition: transform 0.35s, background 0.35s;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--coral);
  line-height: 1;
}

.acc-item.open .plus { transform: rotate(135deg); background: var(--sun); color: var(--ink); }

.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.acc-body-inner { padding: 0 26px 24px; color: var(--ink-soft); }
.acc-body-inner p + p { margin-top: 12px; }
.acc-body-inner ul { margin: 10px 0 0 20px; }
.acc-body-inner li { margin-top: 6px; }

/* ---------- Gallery ---------- */

.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-grid a {
  display: block;
  margin-bottom: 18px;
  border-radius: var(--r-sm);
  overflow: hidden;
  break-inside: avoid;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-grid img { width: 100%; transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 43, 37, 0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-grid a:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(20, 30, 26, 0.92);
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 86vh; border-radius: 16px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute;
  top: 26px; right: 30px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox .lb-close:hover { background: var(--coral); transform: rotate(90deg); }
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox .lb-nav:hover { background: var(--sun); color: var(--ink); }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }

/* ---------- Testimonials ---------- */

.testi-slider { position: relative; overflow: hidden; border-radius: var(--r-lg); }

.testi-track { display: flex; transition: transform 0.6s cubic-bezier(0.6, 0, 0.2, 1); }

.testi {
  flex: 0 0 100%;
  padding: 60px clamp(28px, 6vw, 80px);
  text-align: center;
}

.testi .quote-mark { font-family: var(--font-display); font-size: 5rem; line-height: 0.6; color: var(--sun); display: block; margin-bottom: 26px; }
.testi blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 500; line-height: 1.45; font-style: italic; }
.testi .who { margin-top: 28px; font-weight: 700; }
.testi .who small { display: block; font-weight: 500; color: var(--ink-soft); }
.testi .stars { color: var(--sun); letter-spacing: 4px; font-size: 1.1rem; margin-bottom: 18px; }

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testi-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testi-dots button.on { background: var(--coral); transform: scale(1.3); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--green);
  border-radius: var(--r-lg);
  padding: clamp(50px, 7vw, 90px) clamp(30px, 6vw, 80px);
  color: var(--paper);
  overflow: hidden;
  text-align: center;
}

.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 185, 48, 0.14);
}
.cta-band::before { width: 340px; height: 340px; top: -140px; left: -100px; }
.cta-band::after { width: 260px; height: 260px; bottom: -120px; right: -80px; }

.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 760px; margin: 0 auto; }
.cta-band h2 em { color: var(--sun); }
.cta-band p { margin: 22px auto 0; max-width: 560px; color: rgba(251, 246, 238, 0.85); font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; margin-top: 36px; }

/* ---------- Blog ---------- */

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

.post-card {
  background: var(--card);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s;
  box-shadow: var(--shadow-sm);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.post-card:hover .thumb img { transform: scale(1.07); }
.post-card .body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card .tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); }
.post-card h3 { font-size: 1.22rem; line-height: 1.3; }
.post-card p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.post-card .more { font-weight: 700; font-size: 0.9rem; color: var(--green); display: inline-flex; align-items: center; gap: 8px; }

.post-body { max-width: 760px; margin: 0 auto; }
.post-body > * + * { margin-top: 22px; }
.post-body h2 { font-size: 1.8rem; margin-top: 46px; }
.post-body h3 { font-size: 1.35rem; margin-top: 36px; }
.post-body p { color: var(--ink-soft); font-size: 1.05rem; }
.post-body ul, .post-body ol { margin-left: 24px; color: var(--ink-soft); display: grid; gap: 8px; }
.post-body img { border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.post-hero-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/8; margin-top: 40px; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Team ---------- */

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

.team-card {
  background: var(--card);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s, box-shadow 0.35s;
}
.team-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: var(--shadow-md); }
.team-card .ph { aspect-ratio: 1; overflow: hidden; }
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 22px; }
.team-card .info h3 { font-size: 1.2rem; }
.team-card .info span { color: var(--coral); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Fees table ---------- */

.fee-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--card); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.fee-table th, .fee-table td { padding: 20px 26px; text-align: left; }
.fee-table thead th { background: var(--green); color: var(--paper); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.fee-table tbody tr + tr td { border-top: 1px solid var(--line); }
.fee-table tbody tr:hover { background: var(--sun-soft); }
.fee-table td:first-child { font-weight: 700; }
.fee-table .age-note { display: block; font-weight: 500; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Forms ---------- */

.form-card {
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(30px, 5vw, 54px);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }

.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 91, 72, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Contact / info ---------- */

.info-tile { display: flex; gap: 18px; align-items: flex-start; padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); transition: transform 0.3s, box-shadow 0.3s; }
.info-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-tile .ic { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--green-tint); color: var(--green); }
.info-tile h3 { font-size: 1.1rem; margin-bottom: 6px; }
.info-tile p, .info-tile a { color: var(--ink-soft); font-size: 0.96rem; text-decoration: none; }
.info-tile a:hover { color: var(--coral); }

.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: rgba(251, 246, 238, 0.75); padding: 80px 0 0; margin-top: 40px; position: relative; overflow: hidden; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }

.site-footer .logo img { height: 56px; filter: brightness(0) invert(1); }
.site-footer h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sun); margin-bottom: 20px; font-weight: 700; }
.site-footer ul { list-style: none; display: grid; gap: 12px; }
.site-footer a { color: rgba(251, 246, 238, 0.75); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.site-footer a:hover { color: var(--sun); padding-left: 6px; }
.site-footer .brand p { margin-top: 18px; font-size: 0.95rem; max-width: 300px; }

.footer-bottom { border-top: 1px solid rgba(251, 246, 238, 0.14); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; font-size: 0.85rem; flex-wrap: wrap; }

/* ---------- Reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .page-hero-grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .split.flip > .split-media { order: 0; }
  .card-grid.cols-3, .card-grid.cols-4, .blog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticker-1 { left: 0; }
  .sticker-2 { right: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4, .blog-grid, .team-grid, .form-grid { grid-template-columns: 1fr; }
  .prog-row { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
  .prog-row .age { text-align: left; }
  .prog-row .arrow { display: none; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .sticker { display: none; }
  .day-row { grid-template-columns: 90px 1fr; padding: 14px 18px; }
  .hero { padding-top: 130px; }
}
