/* Public site — balanced light + brand: ~50% light canvas, teal + gold accents, dark footer anchor */
:root {
    --site-bg: #f4f6f9;
    --site-bg-soft: #fafbfc;
    --site-surface: #ffffff;
    --site-surface-hover: #f1f5f9;
    --site-border: rgba(15, 23, 42, 0.08);
    --site-teal: #0a4d5c;
    --site-teal-deep: #063747;
    --site-teal-light: #0f6b7d;
    --site-teal-glow: rgba(10, 77, 92, 0.14);
    --site-gold: #f0b429;
    --site-gold-hover: #ffc933;
    --site-gold-soft: rgba(240, 180, 41, 0.22);
    --site-terracotta: #b35a2d;
    --site-ink: #1e293b;
    --site-muted: #64748b;
    --site-text: var(--site-ink);
    --site-text-muted: var(--site-muted);
    /* Legacy aliases */
    --site-orange: var(--site-gold);
    --site-orange-dark: #c99410;
    --site-yellow: var(--site-gold);
    --site-yellow-soft: rgba(240, 180, 41, 0.2);
    --site-cream: #f8fafc;
    --site-cloud: #e8eef3;
    --site-fab: var(--site-teal-light);
}

.site-body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--site-ink);
    background: var(--site-bg);
}

.site-body .text-muted {
    color: var(--site-muted) !important;
}

#main {
    background: var(--site-bg);
}

.site-skip {
    position: absolute;
    left: -999px;
    top: auto;
    z-index: 2000;
}
.site-skip:focus {
    left: 12px;
    top: 12px;
    background: var(--site-surface);
    color: var(--site-ink);
    padding: 8px 12px;
    border-radius: 8px;
    outline: 2px solid var(--site-gold);
}

/* ——— Top contact bar (light) ——— */
.site-topbar {
    background: var(--site-surface);
    border-bottom: 1px solid var(--site-border);
    padding: 0.65rem 0;
}
.site-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.site-topbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--site-ink) !important;
}
.site-brand__feather {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--site-teal-light), var(--site-teal-deep));
    box-shadow: 0 0 0 2px var(--site-gold-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--site-gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.site-topbar__name {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--site-ink);
}
.site-topbar__contacts {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}
.site-topbar__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}
.site-topbar__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 77, 92, 0.1);
    color: var(--site-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}
.site-topbar__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--site-muted);
    line-height: 1.2;
}
.site-topbar__value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--site-ink);
    line-height: 1.3;
}

/* ——— Main nav (light bar) ——— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--site-border);
}
.site-navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: transparent;
}
.site-navbar .navbar-toggler {
    border-color: rgba(10, 77, 92, 0.25);
}
.site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem var(--site-teal-glow);
}
.site-navbar__toggler {
    border-color: rgba(10, 77, 92, 0.25) !important;
}
.site-brand {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--site-ink) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-brand .site-brand__feather {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}
.site-nav-main .nav-link.site-nav-link {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--site-ink) !important;
    padding: 0.5rem 0.65rem !important;
    border-radius: 0;
    position: relative;
    background: transparent !important;
}
.site-nav-main .nav-link.site-nav-link:hover {
    color: var(--site-teal) !important;
}
.site-nav-link--active {
    color: var(--site-teal) !important;
}
.site-nav-link--active::after {
    content: '';
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.15rem;
    height: 3px;
    background: var(--site-gold);
    border-radius: 2px;
}
.site-dropdown {
    border: 1px solid var(--site-border);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 0.5rem 0;
    margin-top: 0.35rem !important;
    background: var(--site-surface);
}
.site-dropdown .dropdown-item {
    font-size: 0.9rem;
    padding: 0.45rem 1.15rem;
    color: var(--site-ink);
}
.site-dropdown .dropdown-item:hover,
.site-dropdown .dropdown-item:focus {
    background: rgba(10, 77, 92, 0.08);
    color: var(--site-teal);
}

.site-social__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--site-teal);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.site-social__btn:hover {
    background: var(--site-gold);
    color: #1e293b !important;
    transform: translateY(-2px);
}

.site-btn-outline {
    border: 2px solid var(--site-teal-light);
    color: var(--site-teal-deep) !important;
    font-weight: 700;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
}
.site-btn-outline:hover {
    background: var(--site-teal);
    border-color: var(--site-teal);
    color: #fff !important;
}

/* ——— Hero ——— */
.site-hero {
    position: relative;
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--site-bg) 100%);
    overflow: hidden;
}
.site-hero__title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    line-height: 1.12;
    color: var(--site-ink);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.site-hero__highlight {
    color: var(--site-teal);
}
.site-hero__lead-wrap {
    border-left: 4px solid var(--site-teal-light);
    padding-left: 1.25rem;
    max-width: 32rem;
}
.site-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--site-muted);
}
.site-hero__cta {
    border-radius: 999px;
    padding: 0.65rem 1.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    background: var(--site-gold);
    border: none;
    color: #1e293b !important;
}
.site-hero__cta:hover {
    background: var(--site-gold-hover);
    color: #1e293b !important;
}

/* Circular collage */
.site-hero-collage {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    min-height: 380px;
}
.site-hero-collage__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.site-hero-collage__blob--orange {
    width: 180px;
    height: 180px;
    background: var(--site-teal);
    right: 8%;
    top: 12%;
    opacity: 0.75;
}
.site-hero-collage__blob--yellow {
    width: 100px;
    height: 100px;
    background: var(--site-gold);
    left: 6%;
    bottom: 14%;
    opacity: 0.65;
}
.site-hero-collage__ring {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    background: #e2e8f0;
}
.site-hero-collage__ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.site-hero-collage__ring--lg {
    width: 260px;
    height: 260px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.site-hero-collage__ring--md {
    width: 180px;
    height: 180px;
    left: 0;
    top: 8%;
    z-index: 3;
}
.site-hero-collage__ring--sm {
    width: 140px;
    height: 140px;
    left: 22%;
    bottom: 4%;
    z-index: 4;
}

@media (max-width: 991.98px) {
    .site-hero-collage {
        margin: 2rem auto 0;
        min-height: 340px;
    }
}

/* ——— Welcome / features ——— */
.site-welcome {
    background: var(--site-bg);
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.site-welcome__title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    color: var(--site-ink);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.site-welcome__brand {
    color: var(--site-teal);
}
.site-welcome__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--site-muted);
    max-width: 42rem;
}

.site-welcome-card {
    background: var(--site-surface);
    border-radius: 48px;
    padding: 2rem 1.75rem 2.25rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 0 0 1px var(--site-border);
    border: 1px solid var(--site-border);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.site-welcome-card:hover {
    border-color: rgba(10, 77, 92, 0.12);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}
.site-welcome-card--featured {
    padding: 2.25rem 1.85rem 2.5rem;
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 28px 60px var(--site-teal-glow), 0 0 0 1px rgba(240, 180, 41, 0.2);
}
.site-welcome-card--featured:hover {
    transform: scale(1.04) translateY(-2px);
}
@media (max-width: 991.98px) {
    .site-welcome-card--featured {
        transform: none;
    }
    .site-welcome-card--featured:hover {
        transform: translateY(-2px);
    }
}

.site-welcome-card__icon {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    background: linear-gradient(145deg, var(--site-yellow-soft) 0%, rgba(10, 77, 92, 0.15) 100%);
    box-shadow: inset 0 2px 12px rgba(255, 255, 255, 0.8);
    font-size: 2.75rem;
    color: var(--site-teal);
    line-height: 1;
}

.site-welcome-card__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.35rem;
    border: 5px solid #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}
.site-welcome-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-welcome-card__heading {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--site-ink);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.site-welcome-card__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--site-muted);
    flex-grow: 1;
}

.site-welcome-card__btn {
    margin-top: 1.35rem;
    border-radius: 999px;
    padding: 0.55rem 1.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border: 2px solid var(--site-teal-light);
    color: var(--site-teal-deep) !important;
    background: transparent;
}
.site-welcome-card__btn:hover {
    background: var(--site-teal);
    border-color: var(--site-teal);
    color: #fff !important;
}

/* ——— Sections ——— */
.site-band {
    background: var(--site-cloud);
}
.site-text-orange {
    color: var(--site-teal);
}
.site-section-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--site-ink);
    margin-bottom: 0.5rem;
}
.site-section-lead {
    color: var(--site-muted);
    max-width: 40rem;
}

.site-card {
    border: 1px solid var(--site-border);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
    background: var(--site-surface);
    color: var(--site-ink);
}
.site-card .card-body,
.site-card h3,
.site-card h6 {
    color: inherit;
}
.site-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
    border-color: rgba(10, 77, 92, 0.12);
}
.site-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
}
.site-card__icon--orange {
    background: linear-gradient(145deg, var(--site-gold), var(--site-orange-dark));
}
.site-card__icon--sun {
    background: linear-gradient(145deg, var(--site-teal-light), var(--site-teal));
    color: #fff;
}
.site-card__icon--ink {
    background: linear-gradient(145deg, var(--site-terracotta), #8b4513);
    color: #fff;
}

.site-card-link {
    color: var(--site-ink) !important;
}
.site-card-link:hover .site-card {
    border-color: rgba(240, 180, 41, 0.35);
}
.site-card-link:hover h3 {
    color: var(--site-teal);
}

.site-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--site-teal);
    background: rgba(10, 77, 92, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(10, 77, 92, 0.12);
}

.site-class-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--site-border);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    height: 100%;
    background: var(--site-surface);
    color: var(--site-ink);
}
.site-class-card__img {
    height: 140px;
    background: linear-gradient(120deg, var(--site-teal-deep), var(--site-teal-light), rgba(240, 180, 41, 0.4));
}

.site-teachers-visual {
    min-height: 220px;
    background: linear-gradient(135deg, rgba(10, 77, 92, 0.12), rgba(240, 180, 41, 0.15));
    border: 1px solid var(--site-border);
}

.site-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--site-ink);
}
.site-check-list li:last-child {
    margin-bottom: 0;
}
.site-check-list .bi-check-circle-fill {
    color: var(--site-teal);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.site-event-pill {
    background: var(--site-surface);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--site-border);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.site-event-pill__date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--site-teal);
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}
.site-event-pill__date strong {
    font-size: 1.35rem;
    margin-left: 0.25rem;
}

.site-cta-band {
    background: linear-gradient(135deg, rgba(10, 77, 92, 0.08), rgba(240, 180, 41, 0.12));
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}
.site-cta-btn {
    border-radius: 999px;
    border: none;
    background: var(--site-gold) !important;
    color: #1e293b !important;
}
.site-cta-btn:hover {
    background: var(--site-gold-hover) !important;
    color: #1e293b !important;
}

/* ——— Footer (darker anchor — ~half the page is light above) ——— */
.site-footer {
    background: linear-gradient(180deg, var(--site-teal-deep) 0%, #042a35 100%);
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__brand {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}
.site-footer__accent {
    color: var(--site-gold);
}
.site-footer__link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}
.site-footer__link:hover {
    color: var(--site-gold);
}

/* ——— Floating action ——— */
.site-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1040;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: var(--site-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
}
.site-fab:hover {
    color: #1e293b;
    transform: scale(1.05);
    background: var(--site-gold);
    border-color: var(--site-gold);
}

/* ——— CMS page ——— */
.site-breadcrumb,
.site-breadcrumb__link {
    color: var(--site-muted);
}
.site-breadcrumb__link:hover {
    color: var(--site-teal);
}

.site-page-hero {
    padding: 3rem 0 2rem;
    background: var(--site-surface);
    border-bottom: 1px solid var(--site-border);
}
.site-page-content {
    padding: 3rem 0 4rem;
    background: var(--site-bg);
}
.site-page-content .prose {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--site-ink);
}
.site-page-content .prose a {
    color: var(--site-teal);
}
.site-page-content .prose a:hover {
    color: var(--site-teal-deep);
}
.site-page-content .prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.site-header .border-top {
    border-color: var(--site-border) !important;
}
