:root {
  --forest: #1b4332;
  --forest-l: #d8f3dc;
  --moss: #40916c;
  --moss-l: #b7e4c7;
  --sage: #74c69d;
  --sage-l: #ecfaf0;
  --sand: #d4a373;
  --sand-l: #fefae0;
  --sand-d: #a0785a;
  --clay: #bc6c25;
  --clay-l: #fff3e6;
  --petal: #e07a5f;
  --petal-l: #fdeee9;
  --sky: #457b9d;
  --sky-l: #e8f4f8;
  --cream: #fefae0;
  --ivory: #fafaf7;
  --earth: #3d2b1f;
  --earth-2: #5c3d2e;
  --muted: #8a7060;
  --border: #e8e0d5;

  --g-forest: linear-gradient(135deg, #07d698, #048830);
  --g-warm: linear-gradient(135deg, #d4a373, #bc6c25);
  --g-petal: linear-gradient(135deg, #e07a5f, #d4a373);
  --g-sky: linear-gradient(135deg, #457b9d, #40916c);
  --g-full: linear-gradient(135deg, #1b4332, #40916c, #d4a373);

  --sh-sm: 0 2px 12px rgba(61, 43, 31, 0.06);
  --sh-md: 0 6px 28px rgba(61, 43, 31, 0.09);
  --sh-lg: 0 16px 56px rgba(61, 43, 31, 0.12);
  --sh-forest: 0 8px 32px rgba(27, 67, 50, 0.28);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--ivory);
  color: var(--earth);
  overflow-x: hidden;
  line-height: 1.6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  cursor: pointer;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--g-forest);
  border-radius: 99px;
}

/* ── Display Typography ── */
.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.t-display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.93;
}
.t-h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.07;
}
.t-h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}
.t-body {
  font-size: 0.975rem;
  line-height: 1.82;
  color: var(--muted);
}

/* Gradient text */
.gt-forest {
  background: var(--g-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-warm {
  background: var(--g-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-petal {
  background: var(--g-petal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-full {
  background: var(--g-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: "Nunito", sans-serif;
}
.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}
.btn-md {
  padding: 12px 28px;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}
.btn-forest {
  background: var(--g-forest);
  color: #fff;
  box-shadow: var(--sh-forest);
}
.btn-forest:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(27, 67, 50, 0.38);
}
.btn-warm {
  background: var(--g-warm);
  color: #fff;
  box-shadow: 0 8px 32px rgba(212, 163, 115, 0.35);
}
.btn-warm:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(212, 163, 115, 0.45);
}
.btn-outline-forest {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline-forest:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}
.btn-cream {
  background: var(--cream);
  color: var(--earth);
  box-shadow: var(--sh-md);
}
.btn-cream:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}
.ripple {
  position: relative;
  overflow: hidden;
}
.rpl {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rplAnim 0.65s linear forwards;
  pointer-events: none;
}
@keyframes rplAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── Scroll reveal ── */
[data-sr] {
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  opacity: 0;
}
[data-sr="up"] {
  transform: translateY(40px);
}
[data-sr="left"] {
  transform: translateX(-40px);
}
[data-sr="right"] {
  transform: translateX(40px);
}
[data-sr].on {
  opacity: 1;
  transform: none;
}
[data-sd="1"] {
  transition-delay: 0.1s;
}
[data-sd="2"] {
  transition-delay: 0.2s;
}
[data-sd="3"] {
  transition-delay: 0.3s;
}
[data-sd="4"] {
  transition-delay: 0.4s;
}
[data-sd="5"] {
  transition-delay: 0.5s;
}
[data-sd="6"] {
  transition-delay: 0.6s;
}

/* ══════════════════════════════════════════════
   ① NAVBAR — Transparent with leaf accent + center logo
   Unique: Logo centred, links split left/right, earthy pill
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
.nav-wrap {
  /* max-width: 1280px; */
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  background: #fafaf7e0;
  border-bottom: 1px solid #e8e0d599;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}
#navbar.scrolled .nav-wrap {
  background: rgba(250, 250, 247, 0.97);
  box-shadow: 0 2px 24px rgba(61, 43, 31, 0.08);
  border-color: var(--border);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-leaf {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  background: var(--g-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transform: rotate(-45deg);
}
.logo-leaf i {
  transform: rotate(45deg);
  display: block;
}
.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--earth);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-name em {
  color: var(--moss);
  font-style: italic;
}
.logo-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.nl {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--earth-2);
  transition: all 0.22s;
}
.nl:hover {
  color: var(--forest);
  background: var(--forest-l);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}
.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--earth);
  border-radius: 99px;
  transition: all 0.3s;
}
.ham.open .ham-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ham.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.open .ham-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile full-screen menu */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 247, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.35s;
}
.mob-menu.open {
  display: flex;
  opacity: 1;
}
.mob-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(61, 43, 31, 0.35);
  padding: 5px 24px;
  transition: color 0.22s;
}
.mob-link:hover {
  color: var(--forest);
}
.mob-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-2);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.mob-close:hover {
  background: var(--petal-l);
  color: var(--petal);
  border-color: var(--petal);
}

/* ══════════════════════════════════════════════
   ② HERO — Full-screen with organic shapes
   Unique: Wavy organic blob bg, text+image overlap, no grid
══════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  padding-top: 70px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-blob-2 {
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 38%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand-l), var(--cream));
  border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  opacity: 0.5;
  pointer-events: none;
  animation: blobMorph2 10s ease-in-out infinite;
}
@keyframes blobMorph1 {
  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }
  33% {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  }
  66% {
    border-radius: 50% 50% 60% 40% / 40% 70% 30% 60%;
  }
}
@keyframes blobMorph2 {
  0%,
  100% {
    border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  }
  50% {
    border-radius: 30% 70% 40% 60% / 60% 40% 60% 40%;
  }
}
/* Floating leaf particles */
.leaf-particle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.12;
  animation: leafFloat var(--dur, 6s) var(--delay, 0s) ease-in-out infinite
    alternate;
  pointer-events: none;
}
@keyframes leafFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-24px) rotate(20deg);
  }
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
}

/* Handwritten-style kicker */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 22px;
  padding: 6px 16px 6px 10px;
  background: var(--forest-l);
  border-radius: 999px;
  border: 1.5px solid var(--moss-l);
}
.kicker-leaf {
  font-size: 1rem;
}

/* Large leaf-bordered image block */
.hero-visual {
  position: relative;
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 520px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(160deg, var(--forest-l), var(--moss-l));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  font-size: clamp(6rem, 12vw, 10rem);
}
.hero-badge-float {
  position: absolute;
  bottom: 10%;
  right: -12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--sh-lg);
  animation: hbFloat 4s ease-in-out infinite;
}
@keyframes hbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-badge-float-2 {
  position: absolute;
  top: 8%;
  left: -12px;
  background: var(--forest);
  color: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--sh-forest);
  animation: hbFloat 5s ease-in-out infinite reverse;
}

/* Stats strip */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.hs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.28s;
}
.hs:hover {
  background: var(--forest-l);
  border-color: var(--moss-l);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.hs-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--earth);
  line-height: 1;
}
.hs-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero marquee */
.hero-ticker {
  border-top: 1px solid var(--border);
  background: var(--cream);
  overflow: hidden;
  height: 44px;
  position: relative;
  z-index: 2;
}
.ticker-wrap {
  display: flex;
  animation: tkr 28s linear infinite;
}
.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--earth-2);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}
.ti-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--moss);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes tkr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════
   ③ ABOUT — CURVED SECTION with overlapping text+image
   Unique: wave-top, dark forest bg, reversed white text
══════════════════════════════════════════════ */
#about {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
}
/* SVG wave top */
#about::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ivory);
  clip-path: ellipse(55% 100% at 50% 0);
}
/* Leaf watermark */
.about-watermark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-size: clamp(14rem, 22vw, 20rem);
  opacity: 0.05;
  pointer-events: none;
  color: #fff;
  line-height: 1;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 960px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* Left: text on dark bg */
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.ae-line {
  width: 36px;
  height: 2px;
  background: var(--sage);
  border-radius: 1px;
}
.ae-text {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
}

/* Right: image collage on dark bg */
.about-visual {
  position: relative;
}
.av-main {
  /* width: 80%; */
  /* margin-left: 10%; */
  /* aspect-ratio: 4/5; */
  /* border-radius:36% 10% 34% 31% / 37% 0% 40% 24% ; */
  /* background: linear-gradient(135deg, #74c69d33, #d4a37326); */
  /* border: 1px solid #ffffff1f; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5rem, 10vw, 8rem);
  backdrop-filter: blur(4px);
}
.av-badge {
  position: absolute;
  bottom: -12px;
  left: 0;
  background: var(--sand);
  color: var(--earth);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 28px #d4a37366;
}
.avb-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--earth);
}
.avb-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--earth-2);
  margin-top: 4px;
}

/* Feature grid on dark */
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-block: 24px;
}
.af-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s;
}
.af-item:hover {
  background: rgba(116, 198, 157, 0.1);
  border-color: rgba(116, 198, 157, 0.25);
}
.af-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--g-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.af-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: #fff;
}
.af-sub {
  font-size: 0.72rem;
  color: #ffffff9a;
  margin-top: 3px;
}

/* ══════════════════════════════════════════════
   ④ WHY US — 
══════════════════════════════════════════════ */
#why {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--forest);
  clip-path: ellipse(55% 100% at 50% 0);
}

.why-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 3.5rem;
}
.why-pill {
  flex: 1 0 clamp(220px, 28%, 280px);
  background: #fff;
  border-radius: 28px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.why-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pill-accent, var(--g-forest));
  border-radius: 28px 28px 0 0;
}
.why-pill:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.wp-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.wp-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(61, 43, 31, 0.05);
  line-height: 1;
  pointer-events: none;
}
.wp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 8px;
}
.wp-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.76;
}

/* ══════════════════════════════════════════════
   ⑤ PROGRAMS — ARCHED CARDS in scrollable row
   Unique: top arch shape on each card, big icon above fold
══════════════════════════════════════════════ */
#programs {
  background: var(--ivory);
}
.prog-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.prog-scroller::-webkit-scrollbar {
  display: none;
}

.prog-arch-card {
  flex: 0 0 clamp(240px, 28vw, 290px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 50% 50% 16px 16px / 24px 24px 16px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.prog-arch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.pac-arch {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 0 0 / 24px 24px 0 0;
  font-size: 4rem;
  position: relative;
}
.pac-body {
  padding: 16px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pac-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pac-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 7px;
}
.pac-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.pac-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.pac-age {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.scroll-nav-btns {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}
.snb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-2);
  transition: all 0.22s;
}
.snb:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

/* ══════════════════════════════════════════════
   ⑥ STATS — Full-bleed warm sand section
   Unique: Large Cormorant numerals, warm sand background
══════════════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, var(--sand-l), var(--cream));
  position: relative;
  overflow: hidden;
}
.stats-leaf-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30rem;
  pointer-events: none;
  color: var(--forest);
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.si-icon {
  font-size: 1.5rem;
  color: var(--moss);
  margin-bottom: 8px;
}
.si-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--earth);
  line-height: 1;
  margin-bottom: 6px;
  font-style: italic;
}
.si-lbl {
  font-size: 1rem;
  padding-top: 5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
}
.s-div {
  width: 1px;
  background: var(--border);
  height: 60px;
  align-self: center;
  display: none;
}
@media (min-width: 640px) {
  .s-div {
    display: block;
  }
}

/* ══════════════════════════════════════════════
   ⑦ GALLERY — Mosaic with rounded nature feel
   Unique: varied border-radius per cell, caption on hover
══════════════════════════════════════════════ */
#gallery {
  background: var(--ivory);
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mc {
  background: var(--cream);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}
.mc.r1 {
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
}
.mc.r2 {
  border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
}
.mc.r3 {
  border-radius: 30% 70% 70% 30% / 50% 50% 50% 50%;
}
.mc.r4 {
  border-radius: 20px;
}
.mc.r5 {
  border-radius: 50%;
  aspect-ratio: 1;
}
.mc.r6 {
  border-radius: 60% 40% 30% 70% / 40% 50% 50% 60%;
}
.mc.tall {
  grid-row: span 2;
  min-height: 0;
}
.mc.wide {
  grid-column: span 2;
}
.mc-icon {
  font-size: 3rem;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 4px 8px rgba(61, 43, 31, 0.12));
}
.mc:hover {
  transform: scale(1.04);
  box-shadow: var(--sh-lg);
  z-index: 1;
}
.mc:hover .mc-icon {
  transform: scale(1.15);
}
.mc-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.75), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: inherit;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.mc:hover .mc-caption {
  opacity: 1;
}
.mc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}
.mc-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════
   ⑧ TEACHERS — Two-row horizontal track
   Unique: Circular photo cards, staggered two-row layout
══════════════════════════════════════════════ */
#teachers {
  background: var(--cream);
}
.teachers-outer {
  overflow: hidden;
  position: relative;
}
.teachers-outer::before,
.teachers-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.teachers-outer::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}
.teachers-outer::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}
.tc-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scrollbar-width: none;
}
.tc-track::-webkit-scrollbar {
  display: none;
}

.tc-card {
  flex: 0 0 clamp(190px, 22vw, 230px);
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s ease;
}
.tc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.tc-photo {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tc-av-icon {
  font-size: 4.5rem;
  transition: transform 0.4s ease;
}
.tc-card:hover .tc-av-icon {
  transform: scale(1.1);
}
.tc-hover-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.85), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.tc-card:hover .tc-hover-layer {
  opacity: 1;
}
.tc-socs {
  display: flex;
  gap: 5px;
}
.tc-soc {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.tc-soc:hover {
  background: var(--moss);
  border-color: var(--moss);
}
.tc-info {
  padding: 14px 16px 18px;
}
.tc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 3px;
  font-style: italic;
}
.tc-role {
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.tc-chip {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* ══════════════════════════════════════════════
   ⑨ TESTIMONIALS — Warm cards with leaf quote mark
   Unique: Warm background, leaf quote icon, auto-play swiper
══════════════════════════════════════════════ */
#testimonials {
  background: var(--ivory);
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: "🌿";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 3rem;
  opacity: 0.08;
  pointer-events: none;
}
.testi-card:hover {
  /* box-shadow: var(--sh-lg); */
  border-color: #e2a54933;
  transform: translateY(-7px);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--sand);
  font-size: 0.9rem;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 800;
  color: var(--earth);
  font-size: 0.9rem;
}
.testi-meta {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Swiper override (warm palette) */
.swiper-button-next,
.swiper-button-prev {
  width: 42px !important;
  height: 42px !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 50% !important;
  color: var(--forest) !important;
  box-shadow: var(--sh-md) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--forest) !important;
  color: #fff !important;
  border-color: var(--forest) !important;
}
.swiper-pagination-bullet {
  background: var(--border) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
}
.swiper-pagination-bullet-active {
  background: var(--moss) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════════════
   ⑩ EVENTS — CARD DECK layout on warm bg
   Unique: Cards stacked with color-coded side accent, warm cream bg
══════════════════════════════════════════════ */
#events {
  background: var(--sand-l);
}
.ev-deck {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ev-row-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--card-accent, var(--forest));
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  transition: all 0.3s;
  cursor: pointer;
}
.ev-row-card:hover {
  box-shadow: var(--sh-md);
  transform: translateX(5px);
  border-color: var(--card-accent, var(--forest));
}
.ev-date-block {
  text-align: center;
  min-width: 56px;
}
.edb-day {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--earth);
  line-height: 1;
  font-style: italic;
}
.edb-mon {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.ev-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}
.ev-info {
  flex: 1;
  min-width: 0;
}
.ev-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 4px;
  font-style: italic;
}
.ev-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
.ev-meta {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.ev-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ══════════════════════════════════════════════
   ⑪ FAQ — Nature-inspired with leaf dividers
   Unique: Leaf icons, warm accordion on sand bg
══════════════════════════════════════════════ */
#faq {
  background: var(--ivory);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .faq-layout {
    grid-template-columns: 2fr 3fr;
  }
}
.faq-left-nature h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--earth);
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    border-color 0.28s,
    box-shadow 0.28s;
  margin-bottom: 8px;
}
.faq-item.open {
  border-color: rgba(64, 145, 108, 0.4);
  box-shadow:
    0 0 0 4px rgba(64, 145, 108, 0.07),
    var(--sh-sm);
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  background: none;
  border: none;
}
.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--earth);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-qi {
  color: var(--moss);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.faq-tog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  transition: all 0.28s;
}
.bi-plus-lg {
  height: 17px;
  /* background: red; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-tog {
  background: var(--moss);
  color: #fff;
  border-color: var(--moss);
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-ans {
  max-height: 260px;
}
.faq-ans p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ══════════════════════════════════════════════
   ⑫ ADMISSION — TWO-TONE organic split
   Unique: Forest green left + cream right with arch divider
══════════════════════════════════════════════ */
#admission {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.adm-arch-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background: var(--cream);
  clip-path: ellipse(100% 50% at 100% 50%);
  display: none;
}
@media (min-width: 960px) {
  .adm-arch-bg {
    display: block;
  }
}

.adm-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}
@media (min-width: 960px) {
  .adm-layout {
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin-inline: auto;
  }
}

.adm-left {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.adm-step {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.adm-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.adm-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.adm-step-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.adm-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.adm-call-ic {
  font-size: 1.5rem;
  color: var(--sand);
}
.adm-call-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}
.adm-call-lbl {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff61;
  display: flex;
  align-items: center;
  gap: 4px;
}

.adm-right {
  background: var(--cream);
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  /* border-radius: 60px; */
}

/* Form fields */
.f-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.f-label i {
  color: var(--moss);
  font-size: 0.80rem; 

}
.f-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 15px;
  background: #fff;
  color: var(--earth);
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.22s,
    box-shadow 0.22s;
}
.f-input:focus {
  border-color: rgba(64, 145, 108, 0.45);
  box-shadow: 0 0 0 4px rgba(64, 145, 108, 0.09);
}
.f-input::placeholder {
  color: rgba(138, 112, 96, 0.35);
  font-weight: 400;
}
textarea.f-input {
  resize: vertical;
  min-height: 88px;
}
select.f-input option {
  background: #fff;
  color: var(--earth);
}

/* ══════════════════════════════════════════════
   ⑬ CONTACT — Clean grid on white
══════════════════════════════════════════════ */
#contact {
  background: var(--ivory);
}
.ct-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.3s;
}
.ct-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: #40916c33;
}
.ct-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}
.ct-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--earth);
  margin-bottom: 7px;
  font-style: italic;
}
.ct-card p {
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.65;
}
.ct-form-box {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.ct-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-forest);
}

/* ══════════════════════════════════════════════
   ⑭ FOOTER — Forest dark with organic shape top
══════════════════════════════════════════════ */
#footer {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.footer-leaf-bg {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-size: 20rem;
  opacity: 0.04;
  color: #fff;
  pointer-events: none;
}
.footer-col-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffffcc;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff14;
  font-style: italic;
}
.ft-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff91;
  transition: color 0.2s;
}
.ft-link:hover {
  color: #ffffffd1;
}
.ft-link i {
  font-size: 0.7rem;
  color: #74c69d99;
  transition: color 0.2s;
}
.ft-link:hover i {
  color: var(--sage);
}
.ft-soc {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: all 0.22s;
}
.ft-soc:hover {
  background: var(--moss);
  border-color: var(--moss);
  color: #fff;
  transform: translateY(-2px);
}
.ft-ct-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
}
.ft-ct-row i {
  color: var(--sage);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.ft-ct-row p {
  font-size: 0.82rem;
  color: #ffffffa4;
  line-height: 1.6;
}

/* Back to top */
#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 0;
  background: var(--g-forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--sh-forest);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
#btt.on {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
#btt:hover {
  transform: scale(1.15) !important;
}

/* Responsive */
@media (max-width: 479px) {
  .hero-visual {
    display: none;
  }

  .av-main {
    width: 100%;
  }
  .adm-arch-bg {
    display: none;
  }
  .mosaic-grid .mc.wide {
    grid-column: span 1;
  }
  .mosaic-grid .mc.tall {
    grid-row: span 1;
    min-height: 160px;
  }
}
