:root {
    --navy: #1E1B4B;
    --navy-soft: #2A2758;
    --purple: #341C75;
    --pink: #E86A9E;
    --pink-dark: #C44D82;
    --pale: #FBE4EC;
    --bg: #F5F5F7;
    --white: #FFFFFF;
    --text: #25252B;
    --muted: #62626D;
    --line: #E4E4EA;
    --max: 1240px;
    --header-h: 88px;
    --topbar-h: 40px;
    --ease: 220ms ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--pink-dark); }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    line-height: 1.18;
    color: var(--navy);
    margin: 0 0 0.75rem;
}
h1 { font-size: clamp(1.85rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 0.6rem 1rem;
    z-index: 1000;
}
.skip-link:focus { left: 0; }

.shell {
    width: min(var(--max), calc(100% - 2.4rem));
    margin-inline: auto;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pink-dark);
    margin-bottom: 0.55rem;
}

.lede { font-size: 1.08rem; color: var(--muted); max-width: 42rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0.65rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 3px;
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--purple); color: #fff; }
.btn-accent { background: var(--pink); color: #fff; }
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:focus-visible,
.btn-accent:active { background: var(--pink-dark); color: #fff; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-line {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-line:hover { background: var(--navy); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }

:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
}

/* Top bar */
.topbar {
    background: var(--navy);
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    height: var(--topbar-h);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}
.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    min-width: 0;
}
.top-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    color: #fff;
}
.top-contact-phone i { color: #E86A9E; }
.top-contact-phone a { color: #fff; }
.top-contact-phone a:hover { color: #E86A9E; }
.contact-divider {
    opacity: 0.55;
    padding: 0 0.15rem;
}
.topbar-place {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}
.topbar-place i { color: #E86A9E; }
.topbar-email {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}
.topbar-email i { color: #E86A9E; }
.topbar-email:hover { color: #E86A9E; }
.top-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}
.top-socials a {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.top-socials a i {
    font-size: inherit;
    color: inherit;
    line-height: 1;
}
.top-socials a:hover {
    color: #E86A9E;
    transform: translateY(-1px);
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 8px 0;
    gap: 1rem;
    flex-wrap: nowrap;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand-logo {
    width: 108px;
    height: auto;
    object-fit: contain;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-text strong {
    font-family: Poppins, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
}
.brand-text span {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}
.site-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(2px, 0.7vw, 10px);
}
.site-nav ul a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0.4rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.site-nav ul a:hover,
.site-nav ul a.is-active {
    color: var(--purple);
    border-bottom-color: var(--pink);
}
.nav-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.5rem 1rem;
    background: #E86A9E;
    color: #FFFFFF !important;
    border: 1px solid #E86A9E;
    border-radius: 3px;
    font-family: Inter, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--ease), border-color var(--ease);
}
.nav-enquire-btn:hover,
.nav-enquire-btn:focus,
.nav-enquire-btn:focus-visible,
.nav-enquire-btn:active {
    background: #C44D82;
    border-color: #C44D82;
    color: #FFFFFF !important;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #1E1B4B;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1E1B4B;
    margin: 3px 0;
}

html.mobile-menu-open,
body.mobile-menu-open { overflow: hidden; }

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #1E1B4B;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.mobile-nav-inner {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0 2.4rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6rem;
    gap: 0.75rem;
}
.mobile-nav-logo {
    width: 96px;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
}
.mobile-nav-top .brand-text strong { color: #fff; }
.mobile-nav-top .brand-text span { color: rgba(255,255,255,0.78); }
.mobile-nav-close {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-nav-links ul a {
    display: block;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 21px;
    font-weight: 600;
    padding: 0.55rem 0;
    text-decoration: none;
}
.mobile-nav-links ul a.is-active,
.mobile-nav-links ul a:hover { color: #E86A9E; }
.mobile-nav-cta {
    margin-top: 1.4rem;
    width: 100%;
    min-height: 48px;
}
.mobile-nav-meta {
    margin-top: auto;
    padding-top: 2rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
}
.mobile-nav-meta .top-contact-phone,
.mobile-nav-meta .topbar-place,
.mobile-nav-meta > a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
    flex-wrap: wrap;
}
.mobile-nav-meta i { color: #E86A9E; }
.mobile-nav-socials {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.8rem;
}
.mobile-nav-socials a {
    color: #fff;
    font-size: 20px;
    margin: 0;
}
.mobile-nav-socials a:hover { color: #E86A9E; }

/* Inner-page heroes */
.hero {
    position: relative;
    min-height: min(78vh, 720px);
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(30,27,75,0.82) 0%, rgba(30,27,75,0.45) 48%, rgba(30,27,75,0.18) 100%),
        linear-gradient(0deg, rgba(30,27,75,0.35), transparent 45%);
}
.hero-copy {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0 3.4rem;
    max-width: 38rem;
}
.hero-copy .eyebrow { color: var(--pale); }
.hero-copy h1 { color: #fff; margin-bottom: 1rem; }
.hero-copy p { color: rgba(255,255,255,0.92); font-size: 1.08rem; }
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1.4rem;
    font-size: 0.92rem;
}
.hero-meta a, .hero-meta span { color: #fff; display: inline-flex; align-items: center; gap: 0.4rem; }

.page-hero { min-height: min(52vh, 460px); align-items: flex-end; }
.page-hero .hero-copy { padding: 3.4rem 0 2.6rem; }

/* Internal page banner */
.inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #1E1B4B;
    isolation: isolate;
}
.inner-hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}
.inner-hero-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}
.inner-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(30, 27, 75, 0.96) 0%,
            rgba(30, 27, 75, 0.90) 28%,
            rgba(30, 27, 75, 0.70) 48%,
            rgba(30, 27, 75, 0.38) 68%,
            rgba(30, 27, 75, 0.12) 86%,
            rgba(30, 27, 75, 0.03) 100%
        );
}
.inner-hero-container {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 2.4rem));
    margin-inline: auto;
    display: flex;
    align-items: center;
    min-height: inherit;
    padding-top: 65px;
    padding-bottom: 65px;
}
.inner-hero-content {
    max-width: 680px;
    margin: 0;
    color: #FFFFFF;
}
.inner-hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #F178B6;
}
.inner-hero-content h1 {
    margin: 0;
    max-width: 760px;
    font-family: Poppins, sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: #FFFFFF;
}
.inner-hero-line {
    width: 62px;
    height: 3px;
    margin: 22px 0 20px;
    background: #E86A9E;
}
.inner-hero-content p {
    max-width: 640px;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* Homepage hero — one full-width image + left-to-right overlay */
.school-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #1E1B4B;
    isolation: isolate;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
}
.hero-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 55% 18%;
}
.hero-slide-1 .hero-image {
    object-position: 55% 18%;
}
.hero-slide-2 .hero-image {
    object-position: 50% 20%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(30, 27, 75, 0.98) 0%,
            rgba(30, 27, 75, 0.96) 23%,
            rgba(30, 27, 75, 0.88) 38%,
            rgba(30, 27, 75, 0.64) 52%,
            rgba(30, 27, 75, 0.30) 68%,
            rgba(30, 27, 75, 0.08) 84%,
            rgba(30, 27, 75, 0.02) 100%
        );
}
.school-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02) 40%,
            rgba(15,10,45,0.20) 100%
        );
}
.hero-container {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 130px;
}
.hero-content {
    width: min(610px, 50%);
    color: #ffffff;
}
.hero-slide-copies {
    display: grid;
}
.hero-slide-copy {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}
.hero-slide-copy.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hero-eyebrow {
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F178B6;
    margin-bottom: 18px;
}
.hero-content h1 {
    font-family: Poppins, sans-serif;
    font-size: clamp(46px, 4.5vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    max-width: 600px;
}
.hero-heading-line {
    width: 62px;
    height: 3px;
    background: #F178B6;
    margin: 25px 0 20px;
}
.hero-description {
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.93);
    max-width: 520px;
    margin: 0;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}
.hero-btn {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.hero-btn-primary {
    background: #E86A9E;
    color: #ffffff;
    border: 1px solid #E86A9E;
}
.hero-btn-primary:hover {
    background: #d9588d;
    border-color: #d9588d;
    color: #ffffff;
    transform: translateY(-2px);
}
.hero-btn-outline {
    background: rgba(255,255,255,0.03);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.75);
}
.hero-btn-outline:hover {
    background: #ffffff;
    color: #1E1B4B;
    border-color: #ffffff;
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 125px;
    z-index: 4;
    pointer-events: none;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}
.wave-pink-light { fill: #FBE4EC; }
.wave-pink { fill: #E86A9E; }
.wave-white { fill: #ffffff; }

.crumbs {
    font-size: 0.82rem;
    margin-bottom: 0.8rem;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; padding: 0; color: rgba(255,255,255,0.8); }
.crumbs a { color: #fff; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 0.45rem; opacity: 0.65; }
.crumbs-dark ol { color: var(--muted); }
.crumbs-dark a { color: var(--purple); }

/* Sections */
.section { padding: 4.2rem 0; }
.section-soft { background: var(--bg); }
.section-pale { background: var(--pale); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p, .section-navy li { color: rgba(255,255,255,0.88); }

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.frame {
    position: relative;
}
.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.frame::after {
    content: "";
    position: absolute;
    width: 42%;
    height: 42%;
    border: 3px solid var(--pink);
    right: -12px;
    bottom: -12px;
    z-index: -1;
    pointer-events: none;
}

/* Nursery / Primary pair */
.stage-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.stage {
    position: relative;
    min-height: 460px;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.stage:hover img { transform: scale(1.04); }
.stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,27,75,0.15), rgba(30,27,75,0.78));
}
.stage-copy {
    position: relative;
    z-index: 1;
    padding: 2.4rem;
    max-width: 28rem;
}
.stage h2 { color: #fff; }
.stage p { color: rgba(255,255,255,0.92); }

/* Approach */
.approach {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.approach article {
    padding: 1.6rem 1.4rem 1.6rem 0;
    border-right: 1px solid var(--line);
    padding-right: 1.6rem;
    margin-right: 1.6rem;
}
.approach article:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.approach i {
    font-size: 1.35rem;
    color: var(--pink);
    display: block;
    margin-bottom: 0.7rem;
}
.approach h3 { margin-bottom: 0.4rem; }
.approach p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* Homepage: Supporting the Whole Child */
.approach-section {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}
.approach-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: -190px;
    border-radius: 50%;
    background: rgba(232, 106, 158, 0.055);
    pointer-events: none;
}
.approach-section::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 260px;
    left: -130px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(251, 228, 236, 0.55);
    pointer-events: none;
}
.approach-section .shell {
    position: relative;
    z-index: 2;
}
.approach-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 3rem 4rem;
    align-items: center;
}
.section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E86A9E;
}
.approach-intro h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.13;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #1E1B4B;
}
.approach-title-line {
    width: 70px;
    height: 3px;
    margin: 28px 0 26px;
    background: #E86A9E;
}
.approach-intro > p {
    max-width: 450px;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #62626D;
}
.approach-promise {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
}
.approach-promise-icon {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 106, 158, 0.35);
    border-radius: 50%;
    color: #E86A9E;
    font-size: 27px;
}
.approach-promise strong {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1E1B4B;
}
.approach-promise span {
    display: block;
    margin-top: 4px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #8A8993;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.approach-card {
    min-height: 330px;
    padding: 38px 38px 34px;
    background: #ffffff;
    border: 1px solid #ECECF1;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(30, 27, 75, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.approach-card-soft {
    background: linear-gradient(135deg, #ffffff 0%, #FFF8FB 100%);
    border-color: rgba(232, 106, 158, 0.22);
}
.approach-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 106, 158, 0.28);
    box-shadow: 0 18px 42px rgba(30, 27, 75, 0.08);
}
.approach-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 50%;
    background: #FFF7FA;
    border: 1px solid rgba(232, 106, 158, 0.25);
    color: #E86A9E;
}
.approach-icon i {
    font-size: 28px;
    line-height: 1;
}
.approach-card h3 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    color: #1E1B4B;
}
.approach-card-line {
    width: 46px;
    height: 3px;
    margin: 18px 0 20px;
    background: #E86A9E;
}
.approach-card p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #62626D;
}

/* Mission / vision */
.mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.mv article {
    padding: 1.6rem 1.5rem 1.6rem 1.4rem;
    border-left: 3px solid var(--pink);
}
.mv .mission {
    background: #F3F4F6;
}
.mv .vision {
    background: #FBE4EC;
}
.note {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

/* School life mosaic */
.mosaic {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    grid-template-rows: 240px 240px;
    gap: 0.85rem;
}
.mosaic figure { margin: 0; overflow: hidden; background: var(--navy); }
.mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.mosaic figure:hover img { transform: scale(1.05); }
.mosaic .wide { grid-row: 1 / span 2; }
.mosaic figcaption {
    position: absolute;
    left: 0.8rem;
    bottom: 0.7rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.mosaic figure { position: relative; }

/* Homepage: Life at Wisdom Valley */
.school-life-section {
    position: relative;
    padding: 110px 0 140px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FB 55%, #FFFFFF 100%);
    overflow: hidden;
}
.school-life-section .shell {
    position: relative;
    z-index: 2;
}
.school-life-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 2fr);
    gap: 62px;
    align-items: center;
}
.school-life-content .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
}
.school-life-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(44px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: #1E1B4B;
}
.school-life-title-line {
    width: 70px;
    height: 3px;
    margin: 26px 0;
    background: #E86A9E;
}
.school-life-intro {
    max-width: 470px;
    margin: 0 0 30px;
    font-family: Inter, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #62626D;
}
.school-life-points {
    margin-top: 28px;
}
.school-life-point {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 21px 0;
    border-bottom: 1px solid #ECECF1;
}
.school-life-point:first-child {
    padding-top: 0;
}
.school-life-point:last-child {
    border-bottom: 0;
}
.school-life-point-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 106, 158, 0.22);
    border-radius: 12px;
    background: #FFFFFF;
    color: #E86A9E;
    box-shadow: 0 8px 24px rgba(30, 27, 75, 0.04);
}
.school-life-point-icon i {
    font-size: 25px;
    line-height: 1;
}
.school-life-point-content h3 {
    margin: 2px 0 6px;
    font-family: Poppins, sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    color: #1E1B4B;
}
.school-life-point-content p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: #62626D;
}
.school-life-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
.school-life-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.school-life-btn-primary {
    background: #E86A9E;
    color: #FFFFFF !important;
    border: 1px solid #E86A9E;
}
.school-life-btn-primary:hover,
.school-life-btn-primary:focus {
    background: #D9588D;
    border-color: #D9588D;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}
.school-life-btn-outline {
    background: transparent;
    color: #1E1B4B;
    border: 1px solid #E86A9E;
}
a.school-life-btn-outline:hover,
a.school-life-btn-outline:focus {
    background: #FBE4EC;
    color: #1E1B4B;
    transform: translateY(-2px);
}
.school-life-collage {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.85fr);
    grid-template-rows: 315px 285px;
    gap: 14px;
    min-height: 614px;
}
.life-photo-large {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.life-photo-graduation {
    grid-column: 2;
    grid-row: 1;
}
.life-photo-play {
    grid-column: 3;
    grid-row: 1;
}
.life-photo-group {
    grid-column: 2 / span 2;
    grid-row: 2;
}
.life-photo {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
    background: #E9E9EC;
    box-shadow: 0 12px 34px rgba(30, 27, 75, 0.07);
}
.life-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.life-photo:hover img {
    transform: scale(1.035);
}
.life-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 11, 37, 0) 38%, rgba(14, 11, 37, 0.18) 60%, rgba(14, 11, 37, 0.78) 100%);
    pointer-events: none;
}
.life-photo-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #FFFFFF;
}
.life-photo-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E86A9E;
    color: #FFFFFF;
}
.life-photo-icon i {
    font-size: 20px;
    line-height: 1;
}
.life-photo-caption strong {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    color: #FFFFFF;
}
.life-photo-caption span {
    display: block;
    margin-top: 3px;
    font-family: Inter, sans-serif;
    font-size: 12.5px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
}
.life-photo-large .life-photo-caption strong {
    font-size: 18px;
}
.life-photo-large img {
    object-position: center 32%;
}
.life-photo-graduation img {
    object-position: center top;
}
.life-photo-play img {
    object-position: center 40%;
}
.life-photo-group img {
    object-position: center 28%;
}
.school-life-bottom-shape {
    position: absolute;
    left: -5%;
    bottom: -110px;
    width: 110%;
    height: 190px;
    background: #FBE4EC;
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    opacity: 0.55;
    transform: rotate(-1.5deg);
    pointer-events: none;
}

/* Why choose */
.why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 3rem;
}
.why dt {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.why dd { margin: 0 0 0.4rem; color: var(--muted); }

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
.news-card {
    background: #fff;
    border-bottom: 3px solid var(--navy);
}
.news-card img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.news-card-body { padding: 1.1rem 0 0.4rem; }
.news-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.35rem; }
.news-card h3 { font-size: 1.15rem; }
.news-card h3 a { color: var(--navy); }
.news-card h3 a:hover { color: var(--purple); }
.empty-state {
    padding: 2rem 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

/* Location / contact strip */
.visit {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}
.visit img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* Values */
.values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.8rem;
    padding: 0.4rem 0 0;
}
.values li {
    list-style: none;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    color: var(--navy);
    padding-left: 0.9rem;
    border-left: 3px solid var(--pink);
}

/* Process */
.process {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process article { position: relative; padding-top: 0.2rem; }
.process article::before {
    counter-increment: step;
    content: counter(step);
    display: block;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--pink);
    margin-bottom: 0.4rem;
}

/* Forms */
.form {
    display: grid;
    gap: 0.95rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
}
label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    border: 1px solid #D0D0D8;
    border-radius: 3px;
    padding: 0.7rem 0.8rem;
    font: inherit;
    color: var(--text);
    background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.alert {
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--navy);
    background: var(--bg);
}
.alert-ok { border-color: #2E7D4F; background: #EAF6EF; }
.alert-err { border-color: #B3261E; background: #FDECEC; }
.error-list { margin: 0; padding-left: 1.1rem; color: #8A1F19; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; font-weight: 400; }
.consent input { margin-top: 0.3rem; }

/* Gallery */
.filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.4rem 0 1.8rem; }
.filters button {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    padding: 0.4rem 0.8rem;
    font: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    border-radius: 3px;
}
.filters button.is-on,
.filters button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.masonry {
    columns: 3;
    column-gap: 0.85rem;
}
.masonry a {
    display: block;
    margin-bottom: 0.85rem;
    break-inside: avoid;
    overflow: hidden;
}
.masonry img { width: 100%; }
.album-head { margin: 2.2rem 0 0.9rem; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,18,50,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
    padding: 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; }
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* About page */
.about-values-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0 36px;
    background: #FBE4EC;
}
.about-values-section .shell {
    position: relative;
    z-index: 2;
}
.core-values-watermark {
    position: absolute;
    top: -86px;
    right: -1%;
    width: clamp(280px, 26vw, 440px);
    color: #FFFFFF;
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-3deg);
}
.core-values-watermark svg {
    display: block;
    width: 100%;
    height: auto;
    stroke: currentColor;
}
.about-values-heading {
    margin-bottom: 18px;
}
.about-values-heading .section-eyebrow {
    margin-bottom: 6px;
}
.about-values-heading h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 1.08;
    font-weight: 700;
    color: #1E1B4B;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    align-items: start;
}
.about-value-item {
    position: relative;
    padding: 0 16px;
    text-align: center;
}
.about-value-item:not(:last-child) {
    border-right: 1px solid rgba(232, 106, 158, 0.32);
}
.about-value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(232, 106, 158, 0.55);
    color: #E86A9E;
}
.about-value-icon i {
    font-size: 20px;
    line-height: 1;
}
.about-value-item h3 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1E1B4B;
}
.about-learning-section {
    padding: 105px 0;
    background: #FFFFFF;
}
.about-learning-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    gap: 58px;
    align-items: center;
}
.about-learning-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1E1B4B;
}
.section-title-line {
    width: 62px;
    height: 3px;
    margin: 22px 0 24px;
    background: #E86A9E;
}
.section-title-line.centered {
    margin-left: auto;
    margin-right: auto;
}
.about-learning-content > p {
    margin: 0 0 17px;
    max-width: 650px;
    font-family: Inter, sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: #62626D;
}
.about-learning-media {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(30, 27, 75, 0.08);
}
.about-learning-media img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}
.about-learning-media:hover img {
    transform: scale(1.025);
}
.about-learning-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}
.learning-feature {
    padding: 22px 18px;
    background: #FFF5F9;
    border: 1px solid rgba(232, 106, 158, 0.12);
    border-radius: 10px;
}
.learning-feature-icon {
    margin-bottom: 12px;
    color: #E86A9E;
    font-size: 24px;
}
.learning-feature h3 {
    margin: 0 0 6px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E1B4B;
}
.learning-feature p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    color: #62626D;
}
.about-community-section {
    padding: 80px 0;
    background: #F7F7F9;
}
.about-community-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}
.about-community-heading h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    color: #1E1B4B;
}
.about-community-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.community-item {
    padding: 12px 34px;
    text-align: center;
}
.community-item:not(:last-child) {
    border-right: 1px solid #DDDEE5;
}
.community-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FBE4EC;
    color: #E86A9E;
    font-size: 24px;
}
.community-item h3 {
    margin: 0 0 7px;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1E1B4B;
}
.community-item p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #62626D;
}
.about-leadership-section {
    padding: 105px 0;
    background: #FFFFFF;
}
.about-leadership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 62px;
    align-items: center;
}
.about-leadership-image {
    overflow: hidden;
    border-radius: 14px;
}
.about-leadership-image img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center 40%;
}
.about-leadership-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 700;
    color: #1E1B4B;
}
.about-leadership-content p {
    margin: 0 0 18px;
    font-family: Inter, sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: #62626D;
}
.about-leadership-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #E86A9E;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}
.about-leadership-link:hover {
    color: #1E1B4B;
}
.about-closing-cta {
    padding: 0 0 90px;
    background: #FFFFFF;
}
.about-closing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 30px 34px;
    border-radius: 12px;
    background: #FFF2F7;
    border: 1px solid rgba(232, 106, 158, 0.12);
}
.about-closing-message {
    display: flex;
    align-items: center;
    gap: 20px;
}
.about-closing-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: #E86A9E;
    font-size: 23px;
}
.about-closing-message p {
    margin: 0 0 5px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #62626D;
}
.about-closing-message strong {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #E86A9E;
}
.about-closing-btn {
    flex-shrink: 0;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 6px;
    background: #E86A9E;
    color: #FFFFFF !important;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.about-closing-btn:hover {
    background: #D9588D;
    color: #FFFFFF !important;
}

/* Academics page */
.academics-intro-section {
    padding: 72px 0 48px;
    background: #FFFFFF;
}
.academics-intro-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.academics-intro-inner p {
    margin: 0 0 18px;
    font-family: Inter, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #4F4F59;
}
.academics-intro-inner p:last-child {
    margin-bottom: 0;
}
.academics-strengths-section {
    padding: 20px 0 80px;
    background: #FFFFFF;
}
.academics-strengths-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: #F5F4FA;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ECEAF6;
}
.academic-strength-item {
    padding: 36px 24px 32px;
    text-align: center;
    background: transparent;
}
.academic-strength-item:not(:last-child) {
    border-right: 1px solid rgba(30, 27, 75, 0.10);
}
.academic-strength-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(232, 106, 158, 0.18);
    color: #E86A9E;
}
.academic-strength-icon i {
    font-size: 26px;
    line-height: 1;
}
.academic-strength-item h3 {
    margin: 0 0 8px;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1E1B4B;
}
.academic-strength-item p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #62626D;
}
.academics-approach-section {
    padding: 95px 0;
    background: #FFFFFF;
}
.academics-approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 58px;
    align-items: center;
}
.academics-approach-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(40px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1E1B4B;
}
.academics-approach-content p {
    margin: 0 0 18px;
    font-family: Inter, sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    color: #62626D;
}
.academics-approach-media {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(30, 27, 75, 0.08);
}
.academics-approach-media img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
}
.academics-approach-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}
.academics-approach-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E1B4B;
}
.academics-approach-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #E86A9E;
    font-size: 24px;
    line-height: 1;
}
.academics-areas-section {
    padding: 95px 0;
    background: #F8F8FC;
}
.academics-areas-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}
.academics-areas-heading h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 700;
    color: #1E1B4B;
}
.academics-areas-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}
.learning-area-card {
    padding: 26px 20px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid #ECECF2;
    text-align: center;
    box-shadow: 0 8px 25px rgba(30, 27, 75, 0.04);
}
.learning-area-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #FBE4EC;
    color: #E86A9E;
}
.learning-area-icon i {
    font-size: 24px;
    line-height: 1;
}
.learning-area-card h3 {
    margin: 0 0 8px;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1E1B4B;
}
.learning-area-card p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: #62626D;
}
.academics-journey-section {
    padding: 95px 0;
    background: #FFFFFF;
}
.academics-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 34px;
    align-items: stretch;
}
.academics-journey-media {
    overflow: hidden;
    border-radius: 14px;
}
.academics-journey-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 370px;
    object-fit: cover;
    object-position: center 20%;
}
.academics-journey-content {
    padding: 40px 38px;
    border-radius: 14px;
    background: #F3F4FA;
    border: 1px solid #E8E8F0;
}
.academics-journey-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(38px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 700;
    color: #1E1B4B;
}
.academics-journey-content p {
    margin: 0 0 16px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #62626D;
}
.academics-journey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    margin-top: 8px;
    border-radius: 6px;
    background: #E86A9E;
    color: #FFFFFF !important;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.academics-journey-btn:hover {
    background: #D9588D;
    color: #FFFFFF !important;
}
.academics-cta-section {
    padding: 0 0 90px;
    background: #FFFFFF;
}
.academics-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F8F8FC 0%, #FFF3F8 100%);
    border: 1px solid #ECEAF2;
}
.academics-cta-message {
    display: flex;
    align-items: center;
    gap: 18px;
}
.academics-cta-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: #E86A9E;
    font-size: 22px;
}
.academics-cta-message p {
    margin: 0 0 5px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #62626D;
}
.academics-cta-message strong {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #1E1B4B;
}
.academics-cta-btn {
    flex-shrink: 0;
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #E86A9E;
    color: #FFFFFF !important;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.academics-cta-btn:hover {
    background: #D9588D;
    color: #FFFFFF !important;
}

/* School Life page */
.school-life-campus-section {
    padding: 78px 0 72px;
    background: #FFFFFF;
}
.school-life-campus-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: center;
}
.school-life-campus-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1E1B4B;
}
.school-life-campus-content > p {
    margin: 0 0 15px;
    font-family: Inter, sans-serif;
    font-size: 16.2px;
    line-height: 1.72;
    color: #62626D;
}
.school-life-campus-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.campus-feature {
    text-align: center;
    padding: 14px 12px 0;
    position: relative;
}
.campus-feature:not(:last-child) {
    border-right: 1px solid rgba(30, 27, 75, 0.10);
}
.campus-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF4F8;
    color: #E86A9E;
}
.campus-feature-icon i {
    font-size: 22px;
    line-height: 1;
}
.campus-feature h3 {
    margin: 0 0 6px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E1B4B;
}
.campus-feature p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 12.8px;
    line-height: 1.55;
    color: #62626D;
}
.campus-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 158px;
    gap: 12px;
}
.campus-photo {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(30, 27, 75, 0.06);
}
.campus-photo-large {
    grid-column: 1 / span 2;
    grid-row: 1;
}
.campus-photo-small {
    grid-row: 2;
}
.campus-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.school-life-highlights-section {
    padding: 0 0 68px;
    background: #FFFFFF;
}
.school-life-highlights-inner {
    padding: 38px 34px;
    border-radius: 14px;
    background: #FFF5F8;
    border: 1px solid rgba(232, 106, 158, 0.10);
}
.school-life-highlights-heading {
    margin-bottom: 26px;
}
.school-life-highlights-heading h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.12;
    font-weight: 700;
    color: #1E1B4B;
}
.school-life-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.life-highlight-item {
    padding: 6px 22px 0;
    text-align: center;
}
.life-highlight-item:not(:last-child) {
    border-right: 1px solid rgba(30, 27, 75, 0.10);
}
.life-highlight-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: #E86A9E;
}
.life-highlight-icon i {
    font-size: 22px;
    line-height: 1;
}
.life-highlight-item h3 {
    margin: 0 0 6px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E1B4B;
}
.life-highlight-item p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #62626D;
}
.school-life-spaces-section {
    padding: 0 0 72px;
    background: #FFFFFF;
}
.school-life-spaces-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 32px;
    align-items: center;
}
.school-life-spaces-content {
    max-width: 430px;
}
.school-life-spaces-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 700;
    color: #1E1B4B;
}
.school-life-spaces-content p {
    margin: 0 0 20px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #62626D;
}
.school-life-spaces-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.space-card {
    overflow: hidden;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 10px 26px rgba(30, 27, 75, 0.06);
}
.space-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.space-card-content {
    padding: 16px 16px 14px;
    background: #1E1B4B;
}
.space-card-content h3 {
    margin: 0 0 5px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
}
.space-card-content p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}
.school-life-moments-section {
    padding: 0 0 74px;
    background: #FFFFFF;
}
.school-life-moments-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 38px;
    align-items: center;
}
.school-life-moments-media {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.moments-photo {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(30, 27, 75, 0.05);
}
.moments-photo img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}
.school-life-moments-content h2 {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 700;
    color: #1E1B4B;
}
.school-life-moments-content p {
    margin: 0 0 15px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #62626D;
}
.school-life-cta-section {
    padding: 0 0 90px;
    background: #FFFFFF;
}
.school-life-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 22px 26px;
    border-radius: 12px;
    background: #FFF4F8;
    border: 1px solid rgba(232, 106, 158, 0.12);
}
.school-life-cta-message {
    display: flex;
    align-items: center;
    gap: 16px;
}
.school-life-cta-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: #E86A9E;
    font-size: 20px;
}
.school-life-cta-message p {
    margin: 0 0 4px;
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #62626D;
}
.school-life-cta-message strong {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #E86A9E;
}
.school-life-page-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 6px;
    background: #E86A9E;
    color: #FFFFFF !important;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.school-life-page-btn:hover {
    background: #D9588D;
    color: #FFFFFF !important;
}
.school-life-cta-btn {
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.86);
    padding-top: 3.2rem;
}
.site-footer h2 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
    gap: 2rem;
    padding-bottom: 2.4rem;
}
.footer-links-grid {
    display: contents;
}
.footer-logo { width: 72px; height: 71px; }
.footer-name { font-family: Poppins, sans-serif; font-weight: 600; color: #fff; margin: 0.7rem 0 0.15rem; }
.footer-motto { font-size: 0.9rem; color: var(--pale); font-style: italic; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: rgba(255,255,255,0.86); }
.site-footer a:hover { color: var(--pale); }
.footer-contact-list li { display: flex; gap: 0.55rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.8rem; }
.footer-base {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1rem 0;
    font-size: 0.88rem;
}

.wa-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    line-height: 1;
    z-index: 40;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}
.wa-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42);
    animation: wa-pulse 2.4s ease-out infinite;
    pointer-events: none;
}
.wa-float:hover,
.wa-float:focus-visible {
    color: #FFFFFF;
    background: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.46);
}
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.prose { max-width: 44rem; }
.prose h2 { margin-top: 2rem; }
.article-hero img { width: 100%; max-height: 460px; object-fit: cover; margin-bottom: 1.5rem; }
.article-body { max-width: 46rem; }
.article-body p { font-size: 1.05rem; }

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
}
.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; gap: 0.7rem; margin-bottom: 0.85rem; }

.ht-box {
    background: var(--bg);
    padding: 1.6rem 1.5rem;
    border-left: 3px solid var(--purple);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .stage:hover img,
    .mosaic figure:hover img,
    .life-photo:hover img,
    .about-learning-media:hover img { transform: none; }
    .hero-slide,
    .hero-slide-copy {
        transition: none !important;
        transform: none;
    }
}
