/* ============================================================
   Mulberry Learning @ Lentor Central
   Design system + page styles
   ============================================================ */

:root {
  /* Brand palette */
  --berry: #E5147D;
  --berry-deep: #B01463;
  --plum: #5B2A86;
  --plum-deep: #3F1D63;
  --grape: #7B3FA0;
  --peach: #FF9E7A;
  --gold: #F6B93B;
  --teal: #3FBFA0;

  /* Neutrals */
  --ink: #2B2340;
  --ink-soft: #4a4360;
  --muted: #746c88;
  --cream: #FFF8F1;
  --lilac-50: #FBF6FD;
  --lilac-100: #F5EAFA;
  --lilac-200: #EBD9F3;
  --line: rgba(91, 42, 134, .12);
  --white: #ffffff;

  /* Gradients */
  --grad-berry: linear-gradient(120deg, #E5147D 0%, #7B3FA0 100%);
  --grad-berry-soft: linear-gradient(120deg, #F04C9E 0%, #8E56B4 100%);
  --grad-warm: linear-gradient(120deg, #FF9E7A 0%, #F6B93B 100%);

  /* Shape + depth */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --shadow-sm: 0 4px 16px rgba(59, 29, 99, .06);
  --shadow: 0 18px 44px rgba(59, 29, 99, .10);
  --shadow-lg: 0 30px 70px rgba(59, 29, 99, .16);
  --shadow-berry: 0 16px 34px rgba(224, 20, 125, .28);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-round: "Baloo 2", var(--font-body);

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 40px);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(229, 20, 125, .18); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }
em { font-style: italic; color: var(--berry); }

.section { padding-block: clamp(64px, 9vw, 120px); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--berry);
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.eyebrow--light { color: #ffd9ec; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.lead { font-size: 1.12rem; color: var(--muted); margin-top: 16px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-round); font-weight: 700; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--grad-berry); color: #fff; box-shadow: var(--shadow-berry); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px rgba(224, 20, 125, .38); }
.btn--ghost { background: rgba(255, 255, 255, .7); color: var(--plum); box-shadow: inset 0 0 0 1.5px var(--lilac-200); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--berry); transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--berry), var(--shadow-sm); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

.text-link { font-family: var(--font-round); font-weight: 700; color: var(--berry); display: inline-flex; gap: .4em; align-items: center; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(4px); }

/* ---------- Topbar ---------- */
.topbar { background: var(--grad-berry); color: #fff; font-size: .86rem; }
.topbar .wrap { display: flex; align-items: center; gap: 12px; justify-content: center; padding-block: 9px; text-align: center; }
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: #ffd9ec; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 2.2s infinite; flex: none; }
.topbar p { font-weight: 500; }
.topbar__link { font-family: var(--font-round); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.6);} 70% { box-shadow: 0 0 0 8px rgba(255,255,255,0);} 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0);} }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 248, 241, .82);
  backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255, 248, 241, .95); }
.site-header__inner { display: flex; align-items: center; gap: 24px; padding-block: 9px; }

.brand { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; line-height: 1; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand__loc { font-family: "Chewy", var(--font-round), cursive; font-weight: 400; font-size: 1rem; letter-spacing: .02em; color: var(--plum); }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink-soft); position: relative; padding-block: 6px; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--grad-berry); border-radius: 2px; transition: width .28s ease; }
.nav a:hover { color: var(--berry); }
.nav a:hover::after { width: 100%; }

.site-header__cta { display: flex; gap: 10px; align-items: center; }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; margin-left: auto; border-radius: 12px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--plum); border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px); z-index: 70; background: var(--cream); box-shadow: var(--shadow-lg); padding: 92px 28px 28px; transform: translateX(100%); transition: transform .34s cubic-bezier(.5,0,.2,1); display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu[hidden] { display: flex; } /* keep transformable */
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 1.4rem; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu nav a:hover { color: var(--berry); }
.mobile-menu__cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }
.backdrop { position: fixed; inset: 0; background: rgba(43, 35, 64, .4); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.backdrop.show { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 96px) clamp(60px, 8vw, 110px); overflow: hidden; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; }
.hero__orb--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(229,20,125,.45), transparent 70%); top: -180px; right: -120px; }
.hero__orb--2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(123,63,160,.4), transparent 70%); bottom: -200px; left: -160px; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__title { font-size: clamp(2.35rem, 5.2vw, 4rem); margin: 18px 0 20px; }
.hero__lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 33ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; }
.hero__chips li { font-family: var(--font-round); font-weight: 600; font-size: .92rem; color: var(--plum); display: inline-flex; align-items: center; gap: 8px; }
.hero__chips span { font-size: 1.1rem; }

/* Hero gallery */
.hero__gallery { position: relative; min-height: 520px; }
.hero__card { position: absolute; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid #fff; }
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--a { width: 50%; aspect-ratio: 3/4; top: 0; right: 0; z-index: 2; }
.hero__card--b { width: 55%; aspect-ratio: 4/3; bottom: 0; left: 3%; z-index: 3; }
.hero__card--c { width: 39%; aspect-ratio: 3/4; top: 5%; left: 0; z-index: 1; }
.hero__card--a { animation: floaty 7s ease-in-out infinite; }
.hero__card--b { animation: floaty 8s ease-in-out .6s infinite; }
.hero__badge { position: absolute; z-index: 4; background: #fff; border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; flex-direction: column; line-height: 1.1; }
.hero__badge strong { font-family: var(--font-round); font-weight: 800; font-size: 1.3rem; color: var(--berry); }
.hero__badge span { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.hero__badge--1 { top: -4%; left: 1%; animation: floaty 6s ease-in-out .3s infinite; }
.hero__badge--2 { bottom: 7%; right: -1%; animation: floaty 7s ease-in-out 1s infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* ---------- Stats ---------- */
.stats { background: var(--grad-berry); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: clamp(36px, 5vw, 56px); }
.stat { text-align: center; display: flex; flex-direction: column; gap: 6px; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.25); }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; }
.stat__label { font-size: .92rem; color: rgba(255,255,255,.88); max-width: 22ch; margin-inline: auto; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.1; object-fit: cover; width: 100%; }
.about__stamp { position: absolute; bottom: -26px; right: -18px; width: 128px; height: 128px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid; place-content: center; text-align: center; color: var(--berry); gap: 4px; }
.about__stamp svg { width: 54px; margin-inline: auto; }
.about__stamp span { font-family: var(--font-round); font-weight: 700; font-size: .74rem; color: var(--plum); text-transform: uppercase; letter-spacing: .08em; }
.about__copy h2 { margin: 12px 0 18px; }
.about__copy p { color: var(--ink-soft); margin-bottom: 16px; }

.ticks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; }
.ticks li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--grad-berry); color: #fff; font-size: .72rem; font-weight: 700; display: grid; place-content: center; }

/* ---------- Cards (why) ---------- */
.cards { display: grid; gap: 22px; }
.why__grid { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-content: center; font-size: 1.6rem; font-family: var(--font-round); font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--c1), var(--c2)); margin-bottom: 18px; box-shadow: 0 8px 18px color-mix(in srgb, var(--c1) 35%, transparent); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ---------- Curriculum ---------- */
.curriculum { background: var(--lilac-50); }
.peda { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.peda__card { background: #fff; border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.peda__card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad-berry); }
.peda__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.peda__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--lilac-200); font-weight: 600; line-height: 1; display: block; margin-bottom: 12px; }
.peda__card h3 { margin-bottom: 10px; }
.peda__card p { color: var(--muted); font-size: .98rem; }

/* ---------- Curated spaces gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.tile { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); grid-column: span 1; grid-row: span 1; }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(43,20,55,.86) 0%, rgba(43,20,55,.28) 42%, transparent 68%); opacity: .92; transition: opacity .3s ease; }
.tile:hover img { transform: scale(1.07); }
.tile figcaption { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 22px; color: #fff; }
.tile__zh { font-family: var(--font-round); font-weight: 700; font-size: .82rem; color: #ffd9ec; letter-spacing: .06em; display: block; }
.tile__en { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; display: block; margin-top: 2px; }
.tile figcaption p { font-size: .9rem; color: rgba(255,255,255,.9); margin-top: 8px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s ease, opacity .3s ease, margin .3s ease; }
.tile:hover figcaption p { max-height: 120px; opacity: 1; }
.tile::before { content: "⤢"; position: absolute; top: 14px; right: 16px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.22); backdrop-filter: blur(4px); color: #fff; display: grid; place-content: center; font-size: 1rem; opacity: 0; transform: scale(.8); transition: opacity .3s ease, transform .3s ease; }
.tile:hover::before { opacity: 1; transform: scale(1); }

/* ---------- Bilingual band ---------- */
.bilingual { background:
    radial-gradient(1200px 400px at 90% -10%, rgba(63,191,160,.12), transparent 60%),
    var(--cream); }
.bilingual__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.bilingual__media img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.1; object-fit: cover; width: 100%; }
.bilingual__copy h2 { margin: 12px 0 18px; }
.bilingual__copy > p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Programmes ---------- */
.programmes { background: var(--lilac-50); }
.prog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prog { background: #fff; border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; transition: transform .3s ease, box-shadow .3s ease; overflow: hidden; }
.prog:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prog__age { font-family: var(--font-round); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--grad-berry); display: inline-block; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.prog h3 { font-size: 1.5rem; margin-bottom: 6px; }
.prog__ratio { font-family: var(--font-round); font-weight: 700; color: var(--berry); font-size: .92rem; margin-bottom: 12px; }
.prog p:last-child { color: var(--muted); font-size: .95rem; }
.prog__note { text-align: center; margin-top: 34px; color: var(--muted); }
.prog__note a { color: var(--berry); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Nutrition ---------- */
.nutrition__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.nutrition__copy h2 { margin: 12px 0 18px; }
.nutrition__copy > p { color: var(--ink-soft); }
.nutrition__art { display: grid; place-content: center; }
.nutrition__plate { width: min(360px, 80%); aspect-ratio: 1; margin-inline: auto; border-radius: 50%; background: var(--grad-warm); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; place-items: center; gap: 10px; position: relative; }
.nutrition__plate::after { content: ""; position: absolute; inset: 18px; border: 3px dashed rgba(255,255,255,.6); border-radius: 50%; }
.nutrition__plate span { font-size: clamp(2.4rem, 6vw, 3.6rem); filter: drop-shadow(0 6px 10px rgba(0,0,0,.12)); }

/* ---------- Testimonials ---------- */
.testi { background: var(--lilac-50); }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: #fff; border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.quote__stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.quote blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.quote figcaption { margin-top: 18px; font-family: var(--font-round); font-weight: 700; color: var(--berry); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc { background: #fff; border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.acc summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); position: relative; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--lilac-100); color: var(--berry); font-size: 1.3rem; display: grid; place-content: center; transition: transform .3s ease, background .3s ease; }
.acc[open] summary::after { content: "–"; transform: translateY(-50%) rotate(180deg); background: var(--grad-berry); color: #fff; }
.acc__body { padding: 0 24px 22px; color: var(--muted); }
.acc__body a { color: var(--berry); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Tour / contact ---------- */
.tour { position: relative; background: linear-gradient(150deg, #3F1D63 0%, #6E2C7E 55%, #B01463 120%); color: #fff; overflow: hidden; }
.tour__orb { position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(246,185,59,.28), transparent 70%); top: -220px; right: -160px; filter: blur(30px); }
.tour__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.tour__copy h2 { color: #fff; margin: 12px 0 16px; }
.tour__copy > p { color: rgba(255,255,255,.85); max-width: 46ch; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 30px 0; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list__ico { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.14); display: grid; place-content: center; font-size: 1.3rem; flex: none; }
.contact-list strong { display: block; font-family: var(--font-round); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: #ffd9ec; margin-bottom: 3px; }
.contact-list a { color: #fff; font-size: 1.05rem; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.tour__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,.14); margin-top: 8px; }
.tour__map iframe { width: 100%; height: 240px; border: 0; display: block; filter: saturate(1.05); }

/* Form */
.tour__formwrap { background: #fff; border-radius: var(--r-xl); padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-lg); color: var(--ink); }
.tour__form h3 { font-size: 1.55rem; }
.tour__form-sub { color: var(--muted); font-size: .96rem; margin: 6px 0 22px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-family: var(--font-round); font-weight: 700; font-size: .84rem; color: var(--plum); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--lilac-200);
  background: var(--lilac-50); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--berry); background: #fff; box-shadow: 0 0 0 4px rgba(229,20,125,.12); }
.field textarea { resize: vertical; }
.tour__form .btn { margin-top: 8px; }
.tour__form-hint { text-align: center; font-size: .86rem; color: var(--muted); margin-top: 14px; }
.tour__form-hint a { color: var(--berry); text-decoration: underline; text-underline-offset: 2px; }
.field.invalid input, .field.invalid select { border-color: #e23; box-shadow: 0 0 0 4px rgba(238,34,51,.1); }

/* ---------- Footer ---------- */
.site-footer { background: #26183a; color: rgba(255,255,255,.72); padding-block: clamp(48px, 6vw, 72px) 28px; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; }
.site-footer__brand p { margin-top: 16px; font-size: .95rem; max-width: 36ch; }
.brand--footer .brand__logo { height: 54px; }
.brand--footer .brand__loc { color: #fff; }
.site-footer__col h4 { font-family: var(--font-round); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer__col a { display: block; margin-bottom: 11px; font-size: .96rem; color: rgba(255,255,255,.72); transition: color .2s ease, transform .2s ease; }
.site-footer__col a:hover { color: #ffb3d8; transform: translateX(3px); }
.site-footer__bar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .84rem; color: rgba(255,255,255,.5); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 55; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-content: center; box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: transform .25s ease; animation: waPop .5s .8s both; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); }
@keyframes waPop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(30, 15, 40, .92); display: grid; place-content: center; padding: 5vw; opacity: 0; transition: opacity .3s ease; }
.lightbox.show { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__figure { max-width: 92vw; max-height: 88vh; }
.lightbox__figure img { max-width: 92vw; max-height: 78vh; border-radius: var(--r); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__figure figcaption { color: #fff; text-align: center; font-family: var(--font-round); font-weight: 700; margin-top: 16px; letter-spacing: .04em; }
.lightbox__close { position: absolute; top: 20px; right: 26px; color: #fff; font-size: 2.6rem; line-height: 1; width: 48px; height: 48px; border-radius: 50%; transition: background .2s ease; }
.lightbox__close:hover { background: rgba(255,255,255,.14); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__card, .hero__badge, .topbar__dot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .why__grid, .peda, .prog__grid, .testi__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat:nth-child(2)::after { display: none; }
}

@media (max-width: 860px) {
  .nav, .site-header__cta { display: none; }
  .hamburger { display: flex; }
  .site-header__inner { gap: 12px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__gallery { min-height: 400px; max-width: 480px; margin-inline: auto; width: 100%; }
  .about__grid, .bilingual__grid, .nutrition__grid, .tour__grid { grid-template-columns: 1fr; }
  .bilingual__media { order: -1; }
  .about__stamp { width: 104px; height: 104px; right: 8px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat::after { display: none !important; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .tile--wide { grid-column: span 2; }
  .tile--tall { grid-row: span 2; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar__link { display: none; }
  .why__grid, .peda, .prog__grid, .testi__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__gallery { min-height: 360px; }
  .hero__card--c { display: none; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tile--wide, .tile--tall { grid-column: span 1; grid-row: span 1; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .about__stamp { display: none; }
  .site-footer__bar { flex-direction: column; gap: 6px; }
}
