/* =========================================================
   RESPONSIVE — TABLETS
   768px — 1024px
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    /* =====================================================
       GENERAL CONTAINER
    ===================================================== */

    .container {
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }


    /* =====================================================
       HEADER
    ===================================================== */

    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .navbar {
        width: 100%;
    }

    .navbar .container {
        max-width: 100%;
        padding: .9rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .logo {
        margin-left: 0;
    }

    .logo img {
        width: 185px;
        height: auto;
        display: block;
    }


    /* =====================================================
       TABLET NAVIGATION
    ===================================================== */

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 360px;
        max-width: 75vw;
        height: 100vh;
        margin: 0;
        padding: 2.5rem 2rem;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;

        background: var(--navy);
        overflow-y: auto;

        transition: right .35s ease;
        z-index: 1001;
    }

    .nav-menu.visible {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li:not(.mobile-btn) > a {
        display: block;
        padding: .6rem 0;
        color: var(--white);
        font-size: 1rem;
    }

    .nav-menu li:not(.mobile-btn) > a::after {
        display: block;
        bottom: 0;
    }


    /* =====================================================
       MENU TOGGLE
    ===================================================== */

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 58px;
        height: 58px;
        margin-left: auto;
        padding: 0;

        background: transparent;
        border: none;
        color: var(--white);
        font-size: 1.4rem;

        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .menu-toggle i {
        line-height: 1;
    }

    .menu-toggle.hide {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }


    /* =====================================================
       CLOSE BUTTON
    ===================================================== */

    .menu-close-item {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .close-menu {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;
        padding: 0;

        background: transparent;
        border: none;
        color: var(--white);
        font-size: 1.2rem;

        cursor: pointer;
    }


    /* =====================================================
       NAV BUTTON
    ===================================================== */

    .btn-nav {
        gap: .6rem;
        padding: .85rem 1.35rem;
        font-size: .8rem;
    }


    /* =====================================================
       SECTION TITLES
    ===================================================== */

    .section-subtitle {
        margin-bottom: .7rem;
        font-size: .8rem;
        letter-spacing: .1em;
    }

    .section-title {
        margin-bottom: 1rem;
        font-size: 2.3rem;
        line-height: 1.15;
    }

    .section-divider {
        width: 60px;
        height: 2px;
        margin-top: .8rem;
        margin-bottom: 1.5rem;
    }


    /* =====================================================
       SECONDARY BUTTON
    ===================================================== */

    .btn-secondary {
        font-size: .8rem;
        min-width: 150px;
    }

    .btn-secondary:hover::before {
        transform: translateX(0);
    }


    /* =====================================================
       HERO — HOME
    ===================================================== */

    .hero {
        min-height: 700px;
        padding-top: 85px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,.98) 0%,
                rgba(11,55,103,.94) 25%,
                rgba(11,55,103,.78) 48%,
                rgba(11,55,103,.48) 68%,
                rgba(11,55,103,.12) 90%,
                rgba(11,55,103,0) 100%
            ),
            url("../../images/hero2.png");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;

        display: flex;
        align-items: center;
    }

    .hero .container {
        max-width: 960px;
        min-height: 610px;
        padding: 2rem;
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 620px;
        margin: 0;
        padding: 0;
    }

    .hero-banner {
        max-width: 470px;
        width: 100%;
        gap: .9rem;
        padding: .5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .banner-icon i {
        font-size: 2.6rem;
    }

    .banner-text span {
        font-size: .85rem;
    }

    .banner-text p {
        font-size: .75rem;
    }

    .hero-subtitle {
        margin-bottom: .7rem;
        font-size: .82rem;
        letter-spacing: .1em;
    }

    .hero h1 {
        max-width: 600px;
        font-size: clamp(3rem, 6vw, 4.2rem);
        line-height: 1.06;
        margin-bottom: 1rem;
    }

    .hero-divider {
        width: 75px;
        margin-bottom: 1.3rem;
    }

    .hero blockquote {
        max-width: 560px;
        margin-bottom: .8rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero cite {
        margin-bottom: 1.7rem;
        font-size: .9rem;
    }

    .hero-buttons {
        margin-top: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-buttons a {
        min-width: 175px;
        height: 52px;
        padding: .85rem 1.5rem;
        font-size: .82rem;
    }

    .hero-image {
        display: none;
    }


    /* =====================================================
       MISSION & VALUES
    ===================================================== */

    .mission-values {
        padding: 5.5rem 0;
    }

    .mission-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 3rem;
        align-items: start;
    }

    .mission-content {
        padding-right: 1rem;
    }

    .mission-content p {
        margin-bottom: 1.1rem;
        font-size: .98rem;
        line-height: 1.75;
    }

    .mission-card {
        padding: 1.5rem 1.25rem;
        border-right: 1px solid rgba(11,55,103,.12);
        border-bottom: none;
    }

    .mission-card:last-child {
        border-right: none;
    }

    .mission-icon {
        margin-bottom: 1rem;
    }

    .mission-icon i {
        font-size: 2.5rem;
    }

    .mission-card h3 {
        margin-bottom: .7rem;
        font-size: 1.3rem;
    }

    .mission-card p {
        font-size: .93rem;
        line-height: 1.7;
    }


    /* =====================================================
       WHY LCS
    ===================================================== */

    .why-lcs {
        padding: 5.5rem 0;
    }

    .section-header {
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .section-header .section-title {
        font-size: 2.3rem;
    }

    .section-description {
        font-size: .98rem;
        line-height: 1.75;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .why-card {
        padding: 0 1.5rem;
    }

    .why-card:not(:last-child)::after {
        display: block;
    }

    .why-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 1.2rem;
    }

    .why-icon i {
        font-size: 1.75rem;
    }

    .why-card h3 {
        margin-bottom: .7rem;
        font-size: 1.3rem;
    }

    .why-card p {
        font-size: .93rem;
        line-height: 1.7;
    }


    /* =====================================================
       ACADEMIC PROGRAMME
    ===================================================== */

    .academic-programme {
        padding: 5.5rem 0;
    }

    .programme-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .programme-image {
        order: 1;
    }

    .programme-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center 70%;
    }

    .programme-content {
        order: 2;
    }

    .programme-content .section-title {
        font-size: 2.3rem;
    }

    .programme-content p {
        margin-bottom: 1.5rem;
        font-size: .97rem;
        line-height: 1.75;
    }

    .programme-grid {
        grid-template-columns: 1fr;
        gap: .9rem;
        margin-bottom: 2rem;
    }

    .programme-item {
        gap: .7rem;
        font-size: .92rem;
    }


    /* =====================================================
       SCHOOL LIFE
    ===================================================== */

    .school-life {
        padding: 5.5rem 0;
    }

    .school-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .school-card {
        border-radius: var(--radius-md);
    }

    .school-card img {
        height: 240px;
    }

    .school-content {
        padding: 1.5rem;
    }

    .school-content h3 {
        margin-bottom: .6rem;
        font-size: 1.25rem;
    }

    .school-content p {
        font-size: .9rem;
        line-height: 1.65;
    }


    /* =====================================================
       ADMISSIONS HOME SECTION
    ===================================================== */

    .admissions {
        padding: 4.5rem 0;
    }

    .admissions-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 0;
        border-radius: 18px;
    }

    .admissions-content {
        padding: 2.5rem 2rem;
        border-right: 1px solid rgba(255,255,255,.12);
        border-bottom: none;
    }

    .admissions-content .section-subtitle {
        max-width: 100%;
        font-size: 1.7rem;
    }

    .admissions-content p {
        max-width: 100%;
        font-size: .95rem;
        line-height: 1.7;
    }

    .admissions-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.75rem;
    }

    .step-card {
        min-height: 240px;
        padding: 1.5rem 1rem;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
        font-size: 1.35rem;
    }

    .step-card h3 {
        margin-bottom: .6rem;
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: .93rem;
        line-height: 1.6;
    }


    /* =====================================================
       TESTIMONIALS
    ===================================================== */

    .testimonials {
        padding: 5.5rem 0;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .testimonial-card {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .testimonial-rating {
        margin-bottom: 1.1rem;
        font-size: .9rem;
    }

    .testimonial-text {
        margin-bottom: 1.5rem;
        font-size: .95rem;
        line-height: 1.75;
    }


    /* =====================================================
       NEWSLETTER
    ===================================================== */

    .newsletter {
        padding: 0;
    }

    .newsletter-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 1.75rem 2rem;
        border-radius: 12px;
    }

    .newsletter-content {
        flex: 1;
        align-items: flex-start;
        gap: 1rem;
    }

    .newsletter-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .newsletter-content h3 {
        margin-bottom: .3rem;
        font-size: 1.25rem;
    }

    .newsletter-content p {
        font-size: .9rem;
        line-height: 1.6;
    }

    .newsletter-form {
        width: 45%;
        min-width: 320px;
        display: flex;
    }

    .newsletter-form input {
        min-width: 0;
        width: 100%;
        padding: .9rem 1rem;
        font-size: .88rem;
    }

    .newsletter-form .btn-nav {
        padding: .9rem 1rem;
        font-size: .78rem;
    }


    /* =====================================================
       ABOUT HERO
    ===================================================== */

    .about-hero {
        min-height: 680px;
        padding-top: 85px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,.98) 0%,
                rgba(11,55,103,.93) 25%,
                rgba(11,55,103,.75) 48%,
                rgba(11,55,103,.45) 70%,
                rgba(11,55,103,.12) 90%,
                rgba(11,55,103,0) 100%
            ),
            url("../../images/student-8-hero.jpg");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;

        display: flex;
        align-items: center;
    }

    .about-hero .container {
        max-width: 960px;
        min-height: 590px;
        padding: 2rem;
        display: flex;
        align-items: center;
    }

    .about-content-hero {
        width: 100%;
        max-width: 620px;
    }

    .about-content-hero .section-subtitle {
        margin-bottom: .8rem;
        font-size: 1.35rem;
    }

    .about-content-hero h1 {
        max-width: 600px;
        font-size: clamp(3rem, 6vw, 4.2rem);
        line-height: 1.06;
    }

    .about-content-hero .section-divider {
        width: 70px;
        margin-top: 1.5rem;
    }


    /* =====================================================
       ABOUT STORY
    ===================================================== */

    .about-story {
        padding: 5.5rem 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: center;
    }

    .about-story-content {
        max-width: 100%;
    }

    .about-story-content .section-title {
        font-size: 2.3rem;
    }

    .about-story-content p {
        margin-bottom: 1rem;
        font-size: .96rem;
        line-height: 1.75;
    }

    .about-story-image {
        width: 100%;
        margin-top: 0;
    }

    .about-story-image::before {
        top: -12px;
        right: -12px;
        width: 70px;
        height: 70px;
    }

    .about-story-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }


    /* =====================================================
       ABOUT APPROACH
    ===================================================== */

    .about-approach {
        padding: 5.5rem 0;
    }

    .about-approach .section-header {
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .about-approach .section-header .section-title {
        font-size: 2.3rem;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .approach-card {
        padding: 2.25rem 1.75rem;
        border-radius: var(--radius-md);
    }

    .approach-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 1.25rem;
        font-size: 1.5rem;
    }

    .approach-card h3 {
        margin-bottom: .65rem;
        font-size: 1.3rem;
    }

    .approach-card p {
        font-size: .93rem;
        line-height: 1.7;
    }


    /* =====================================================
       ABOUT MISSION
    ===================================================== */

    .about-mission {
        padding: 5.5rem 0;
    }

    .about-mission .mission-grid {
        grid-template-columns: 1.2fr .8fr;
        gap: 1.5rem;
    }

    .mission-box {
        padding: 2.25rem 2rem;
        gap: 1.25rem;
        border-radius: var(--radius-md);
    }

    .mission-box .mission-icon {
        width: 62px;
        height: 62px;
        font-size: 1.5rem;
    }

    .mission-box h2,
    .mission-side h2 {
        font-size: 2.3rem;
    }

    .mission-box p,
    .mission-side p {
        font-size: .95rem;
        line-height: 1.75;
    }

    .mission-side {
        padding: 2.25rem 2rem;
        border-radius: var(--radius-md);
    }


    /* =====================================================
       AFFILIATIONS
    ===================================================== */

    .affiliations {
        padding: 5.5rem 0;
    }

    .affiliations .section-header {
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .affiliations .section-header .section-title {
        font-size: 2.3rem;
    }

    .affiliations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .affiliation-item {
        min-height: 220px;
        padding: 1.75rem 1rem;
        border-radius: var(--radius-md);
    }

    .affiliation-logo {
        width: 140px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .affiliation-logo img {
        max-width: 125px;
        max-height: 60px;
    }

    .church-logos {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        font-size: 1.45rem;
    }

    .affiliation-item h3 {
        margin-bottom: .5rem;
        font-size: 1.15rem;
    }

    .affiliation-item p {
        max-width: 220px;
        font-size: .85rem;
        line-height: 1.6;
    }


    /* =====================================================
       ABOUT PROGRAMME CTA
    ===================================================== */

    .about-programme-cta {
        padding: 5.5rem 0;
    }

    .programme-cta-wrapper {
        grid-template-columns: 1fr 1fr;
        border-radius: var(--radius-md);
    }

    .programme-cta-image {
        min-height: 360px;
        order: 1;
    }

    .programme-cta-image img {
        width: 100%;
        height: 100%;
        min-height: 360px;
        object-fit: cover;
    }

    .programme-cta-content {
        order: 2;
        padding: 3rem 2.5rem;
    }

    .programme-cta-content .section-title {
        font-size: 2.3rem;
    }

    .programme-cta-content p {
        max-width: 100%;
        margin-bottom: 1.5rem;
        font-size: .95rem;
        line-height: 1.75;
    }


    /* =====================================================
       PROGRAMME HERO
    ===================================================== */

    .programme-hero {
        min-height: 680px;
        padding-top: 85px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,1) 0%,
                rgba(11,55,103,.97) 30%,
                rgba(11,55,103,.84) 48%,
                rgba(11,55,103,.52) 68%,
                rgba(11,55,103,.12) 90%
            ),
            linear-gradient(
                rgba(0,0,0,.18),
                rgba(0,0,0,.18)
            ),
            url("../../images/material.jpg");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;

        display: flex;
        align-items: center;
    }

    .programme-hero .container {
        max-width: 960px;
        min-height: 590px;
        padding: 2rem;
        display: flex;
        align-items: center;
    }

    .programme-hero-content {
        width: 100%;
        max-width: 650px;
    }

    .programme-hero-content .section-subtitle {
        margin-bottom: .8rem;
        font-size: 1.35rem;
    }

    .programme-hero-content h1 {
        max-width: 620px;
        font-size: clamp(3rem, 6vw, 4.2rem);
        line-height: 1.06;
    }

    .programme-hero-content p {
        max-width: 600px;
        font-size: 1rem;
        line-height: 1.7;
    }


    /* =====================================================
       PROGRAMME INTRO
    ===================================================== */

    .programme-intro {
        padding: 5.5rem 0;
    }

    .programme-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    .programme-intro-content {
        max-width: 100%;
    }

    .programme-intro-content .section-title {
        font-size: 2.3rem;
    }

    .programme-intro-content p {
        margin-bottom: 1rem;
        font-size: .96rem;
        line-height: 1.75;
    }

    .programme-intro-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .programme-intro-image::before {
        top: -12px;
        right: -12px;
        width: 70px;
        height: 70px;
    }


    /* =====================================================
       PROGRAMME FEATURES
    ===================================================== */

    .programme-features {
        padding: 5.5rem 0;
    }

    .programme-features .section-header {
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .programme-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .programme-feature-card {
        padding: 2.25rem 1.75rem;
    }

    .programme-feature-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
    }

    .programme-feature-card h3 {
        margin-bottom: .65rem;
        font-size: 1.3rem;
    }

    .programme-feature-card p {
        font-size: .93rem;
        line-height: 1.7;
    }


    /* =====================================================
       PROGRAMME EXPERIENCE
    ===================================================== */

    .programme-experience {
        padding: 5.5rem 0;
    }

    .programme-experience-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    .programme-experience-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .programme-experience-image::before {
        top: -12px;
        left: -12px;
        width: 70px;
        height: 70px;
    }

    .programme-experience-content {
        max-width: 100%;
    }

    .programme-experience-content .section-title {
        font-size: 2.3rem;
    }

    .programme-experience-content p {
        font-size: .95rem;
        line-height: 1.75;
    }

    .programme-check-list {
        gap: .85rem;
        margin-top: 1.5rem;
    }

    .programme-check {
        font-size: .92rem;
    }


    /* =====================================================
       PROGRAMME CTA
    ===================================================== */

    .programme-cta {
        padding: 5rem 2rem;
    }

    .programme-cta-content {
        max-width: 720px;
    }

    .programme-cta-content h2 {
        font-size: clamp(2.4rem, 5vw, 3.2rem);
    }

    .programme-cta-content p {
        max-width: 600px;
        font-size: .96rem;
        line-height: 1.7;
    }

    .programme-cta-buttons {
        gap: 1rem;
    }


    /* =====================================================
       ADMISSIONS HERO
    ===================================================== */

    .admissions-hero {
        min-height: 700px;
        padding-top: 85px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,1) 0%,
                rgba(11,55,103,.97) 30%,
                rgba(11,55,103,.84) 48%,
                rgba(11,55,103,.52) 68%,
                rgba(11,55,103,0) 90%
            ),
            linear-gradient(
                rgba(0,0,0,.18),
                rgba(0,0,0,.18)
            ),
            url("../../images/kids.png");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
        background-attachment: scroll;

        display: flex;
        align-items: center;
    }

    .admissions-hero .container {
        max-width: 960px;
        min-height: 610px;
        padding: 2rem;
        display: flex;
        align-items: center;
    }

    .admissions-hero-content {
        width: 100%;
        max-width: 650px;
    }

    .admissions-hero-content .section-subtitle {
        margin-bottom: .75rem;
        font-size: 1.3rem;
    }

    .admissions-hero-content h1 {
        max-width: 600px;
        font-size: clamp(3rem, 6vw, 4.2rem);
        line-height: 1.06;
    }

    .admissions-hero-content p {
        max-width: 580px;
        font-size: .98rem;
        line-height: 1.7;
    }


    /* =====================================================
       ENROLLMENT PROCESS
    ===================================================== */

    .enrollment-process {
        padding: 5.5rem 0;
    }

    .enrollment-process .section-header {
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .enrollment-process .section-description {
        margin-top: 1.25rem;
        font-size: .96rem;
        line-height: 1.75;
    }


    /* =====================================================
       ENROLLMENT STEPS
    ===================================================== */

    .enrollment-steps {
        max-width: 850px;
        margin: 0 auto;
        padding: 0;
    }

    .enrollment-steps::before {
        top: 24px;
        bottom: 24px;
        left: 24px;
    }

    .enrollment-step {
        grid-template-columns: 52px 1fr;
        gap: 1.5rem;
        padding-bottom: 3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .step-content {
        padding-top: .1rem;
        max-width: 700px;
    }

    .step-content h3 {
        margin-bottom: .65rem;
        font-size: 1.4rem;
    }

    .step-content p {
        margin-bottom: .9rem;
        font-size: .94rem;
        line-height: 1.7;
    }


    /* =====================================================
       ADMISSIONS NEXT
    ===================================================== */

    .admissions-next {
        padding: 5.5rem 0;
    }

    .admissions-next .section-header {
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .next-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .next-step {
        padding: 0 1.25rem;
        text-align: center;
    }

    .next-step:not(:last-child)::after {
        display: none;
    }

    .next-step-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.2rem;
    }

    .next-step h3 {
        margin-bottom: .6rem;
        font-size: 1.25rem;
    }

    .next-step p {
        font-size: .9rem;
        line-height: 1.65;
    }


    /* =====================================================
       ADMISSIONS POLICY
    ===================================================== */

    .admissions-policy {
        padding: 5.5rem 0;
    }

    .policy-wrapper {
        max-width: 850px;
        margin: 0 auto;
        padding: 3rem 2.5rem;
        border-radius: 16px;
    }

    .policy-content {
        max-width: 700px;
    }

    .policy-content .section-title {
        font-size: 2.3rem;
    }

    .policy-content p {
        margin-bottom: 1.5rem;
        font-size: .95rem;
        line-height: 1.75;
    }


    /* =====================================================
       ADMISSIONS CTA
    ===================================================== */

    .admissions-cta {
        padding: 5rem 2rem;
    }

    .admissions-cta-content {
        max-width: 720px;
    }

    .admissions-cta-content h2 {
        font-size: clamp(2.4rem, 5vw, 3.2rem);
    }

    .admissions-cta-content p {
        max-width: 600px;
        font-size: .96rem;
        line-height: 1.7;
    }


    /* =====================================================
       CONTACT HERO
    ===================================================== */

    .contact-hero {
        min-height: 650px;
        padding-top: 85px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,1) 0%,
                rgba(11,55,103,.97) 30%,
                rgba(11,55,103,.84) 48%,
                rgba(11,55,103,.52) 68%,
                rgba(11,55,103,0) 90%
            ),
            linear-gradient(
                rgba(0,0,0,.18),
                rgba(0,0,0,.18)
            ),
            url("../../images/hero-contact-1.png");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;

        display: flex;
        align-items: center;
    }

    .contact-hero .container {
        max-width: 960px;
        min-height: 560px;
        padding: 2rem;
        display: flex;
        align-items: center;
    }

    .contact-hero-content {
        width: 100%;
        max-width: 650px;
    }

    .contact-hero-content h1 {
        max-width: 600px;
        font-size: clamp(3rem, 6vw, 4.2rem);
        line-height: 1.06;
    }

    .contact-hero-content > p {
        max-width: 580px;
        font-size: .98rem;
        line-height: 1.7;
    }


    /* =====================================================
       CONTACT MAIN
    ===================================================== */

    .contact-main {
        padding: 5.5rem 0;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 3rem;
        margin-top: 2rem;
        align-items: start;
    }


    /* =====================================================
       CONTACT INFO
    ===================================================== */

    .contact-info {
        padding-top: .25rem;
    }

    .contact-info h2 {
        margin-bottom: .8rem;
        font-size: 2.3rem;
    }

    .contact-intro {
        max-width: 500px;
        margin-top: .5rem;
        margin-bottom: 1.5rem;
        font-size: .94rem;
        line-height: 1.7;
    }

    .contact-detail {
        gap: .9rem;
        padding: 1rem 0;
    }

    .contact-detail-icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .contact-detail-content h3 {
        margin-bottom: .2rem;
        font-size: 1rem;
    }

    .contact-detail-content p,
    .contact-detail-content a {
        font-size: .9rem;
        line-height: 1.55;
    }


    /* =====================================================
       CONTACT QUOTE
    ===================================================== */

    .contact-quote {
        gap: 1rem;
        margin-top: 1.75rem;
        padding: 1.35rem;
    }

    .contact-quote-icon {
        font-size: 1.9rem;
    }

    .contact-quote-content p {
        font-size: 1rem;
        line-height: 1.45;
    }


    /* =====================================================
       CONTACT FORM
    ===================================================== */

    .contact-form-wrapper {
        padding: 2.5rem 2rem;
        margin-bottom: 0;
        border-radius: 16px;
    }

    .contact-form-wrapper h2 {
        margin-bottom: .7rem;
        font-size: 2.2rem;
    }

    .contact-form-intro {
        margin-bottom: 1.75rem;
        font-size: .92rem;
        line-height: 1.7;
    }

    .contact-form {
        gap: 1.1rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .form-group {
        gap: .4rem;
    }

    .form-group label {
        font-size: .85rem;
    }

    .form-group input,
    .form-group textarea {
        min-height: 3.2rem;
        padding: .85rem .9rem;
        font-size: .9rem;
    }

    .form-group textarea {
        min-height: 140px;
    }

    .contact-submit {
        min-height: 50px;
        padding: .85rem 1.4rem;
        font-size: .8rem;
    }


    /* =====================================================
       CONTACT CTA
    ===================================================== */

    .contact-cta {
        padding: 4.5rem 2rem;
    }

    .contact-cta-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 2rem;
        text-align: left;
    }

    .contact-cta-text {
        max-width: 600px;
    }

    .contact-cta-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
        order: 0;
    }

    .contact-cta-icon i {
        font-size: 2.2rem;
    }

    .contact-cta h2 {
        margin-bottom: .6rem;
        font-size: clamp(2.1rem, 4vw, 2.8rem);
        line-height: 1.12;
    }

    .contact-cta p {
        font-size: .94rem;
        line-height: 1.7;
    }

    .contact-cta .btn-nav {
        margin-left: 0;
        min-width: 170px;
    }


    /* =====================================================
       APPLICATION HERO
    ===================================================== */

    .application-hero {
        min-height: 600px;
        padding-top: 85px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,.98) 0%,
                rgba(11,55,103,.94) 35%,
                rgba(11,55,103,.72) 65%,
                rgba(11,55,103,.38) 100%
            ),
            linear-gradient(
                rgba(0,0,0,.18),
                rgba(0,0,0,.18)
            ),
            url("../../images/hero-contact-1.png");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;

        display: flex;
        align-items: center;
    }

    .application-hero .container {
        width: 100%;
        max-width: 960px;
        min-height: 560px;
        padding: 2rem;
        display: flex;
        align-items: center;
    }

    .application-hero-content {
        width: 100%;
        max-width: 650px;
    }

    .application-hero-content .section-subtitle {
        margin-bottom: .75rem;
        font-size: .8rem;
        letter-spacing: .1em;
    }

    .application-hero-content h1 {
        max-width: 600px;
        margin-bottom: 1.25rem;
        font-size: clamp(3rem, 6vw, 4.2rem);
        line-height: 1.05;
    }

    .application-hero-content > p {
        max-width: 580px;
        font-size: .96rem;
        line-height: 1.7;
    }


    /* =====================================================
       APPLICATION SECTION
    ===================================================== */

    .application-section {
        padding: 5rem 2rem 4rem;
    }

    .application-wrapper {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }


    /* =====================================================
       APPLICATION INTRO
    ===================================================== */

    .application-intro {
        max-width: 700px;
        margin: 0 auto 3rem;
        text-align: center;
    }

    .application-intro .section-subtitle {
        font-size: .78rem;
    }

    .application-intro .section-title {
        margin-bottom: 1rem;
        font-size: 2.3rem;
        line-height: 1.15;
    }

    .application-intro > p {
        max-width: 650px;
        margin: 0 auto;
        font-size: .93rem;
        line-height: 1.7;
    }


    /* =====================================================
       APPLICATION NOTICE
    ===================================================== */

    .application-notice {
        width: 100%;
        margin-top: 1.75rem;
        padding: 1.2rem 1.25rem;
        gap: .8rem;
    }

    .application-notice > i {
        font-size: 1.15rem;
    }

    .application-notice p {
        font-size: .85rem;
        line-height: 1.6;
    }


    /* =====================================================
       FORM WRAPPER
    ===================================================== */

    .application-form-wrapper {
        width: 100%;
        border-radius: var(--radius-md);
    }


    /* =====================================================
       APPLICATION PROGRESS
    ===================================================== */

    .application-progress {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: start;

        width: 100%;
        padding: 1.5rem 1rem;

        background: var(--navy);
        overflow: visible;
        gap: 0;
    }

    .progress-step {
        position: relative;
        min-width: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        gap: .5rem;

        color: rgba(255,255,255,.55);
        text-align: center;
    }

    .progress-number {
        width: 36px;
        height: 36px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border: 1px solid rgba(255,255,255,.25);
        border-radius: 50%;

        color: rgba(255,255,255,.6);
        font-size: .78rem;
        font-weight: 700;
    }

    .progress-label {
        display: block;
        width: 100%;

        font-size: .72rem;
        font-weight: 600;
        line-height: 1.2;

        white-space: normal;
        text-align: center;
    }

    .progress-step.active {
        color: var(--white);
    }

    .progress-step.active .progress-number {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .progress-step.completed {
        color: var(--white);
    }

    .progress-step.completed .progress-number {
        background: rgba(253,188,89,.18);
        border-color: var(--gold);
        color: var(--gold);
    }

    .progress-line {
        position: absolute;

        top: 18px;
        left: calc(50% + 18px);

        width: calc(100% - 36px);
        min-width: 0;

        height: 1px;

        margin: 0;

        background: rgba(255,255,255,.18);
        z-index: 0;
    }

    .progress-number {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
       APPLICATION STEP
    ===================================================== */

    .application-step {
        padding: 2.5rem 2rem;
    }

    .application-step-header {
        max-width: 700px;
        margin-bottom: 2.25rem;
    }

    .application-step-header .section-subtitle {
        font-size: .74rem;
    }

    .application-step-header h3 {
        margin-bottom: .7rem;
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .application-step-header p {
        font-size: .9rem;
        line-height: 1.65;
    }


    /* =====================================================
       APPLICATION FORM GRID
    ===================================================== */

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .form-group-full {
        grid-column: 1 / -1;
    }

    .form-group {
        gap: .4rem;
    }

    .form-group label {
        font-size: .84rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 50px;
        padding: .85rem .95rem;
        font-size: .9rem;
    }

    .form-group textarea {
        min-height: 130px;
    }


    /* =====================================================
       STUDENT FORMS
    ===================================================== */

    .students-container {
        gap: 1.25rem;
    }

    .student-form {
        padding: 1.5rem;
        border-radius: var(--radius-sm);
    }

    .student-form-header {
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .student-form-header h4 {
        font-size: 1.25rem;
    }


    /* =====================================================
       ADD STUDENT
    ===================================================== */

    .add-student-wrapper {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .btn-add-student {
        width: auto;
        justify-content: center;
    }

    .add-student-wrapper p {
        font-size: .8rem;
    }


    /* =====================================================
       APPLICATION NAVIGATION
    ===================================================== */

    .application-navigation {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        gap: 1rem;
        margin-top: 2.25rem;
        padding-top: 1.75rem;
    }

    .application-navigation .btn-nav,
    .application-navigation .btn-secondary {
        width: auto;
        margin-left: 0;
        justify-content: center;
    }

    .application-navigation .btn-secondary {
        width: auto;
    }


    /* =====================================================
       REVIEW
    ===================================================== */

    .review-section {
        margin-bottom: 1.25rem;
        padding: 1.35rem;
    }

    .review-section-header {
        margin-bottom: 1.1rem;
    }

    .review-section-header h4 {
        font-size: 1.2rem;
    }

    #review-students,
    #review-family,
    #review-education {
        gap: .85rem;
    }

    .review-item {
        grid-template-columns: 180px 1fr;
        gap: 1rem;
    }

    .review-field-label {
        font-size: .72rem;
    }

    .review-field-value {
        font-size: .87rem;
    }


    /* =====================================================
       AGREEMENT
    ===================================================== */

    .application-agreement {
        margin-top: 1.75rem;
        padding: 1.15rem;
    }

    .application-agreement label {
        gap: .7rem;
    }

    .application-agreement input {
        width: 18px;
        height: 18px;
    }

    .application-agreement span {
        font-size: .8rem;
        line-height: 1.55;
    }


    /* =====================================================
       SUCCESS MESSAGE
    ===================================================== */

    .application-success {
        padding: 4rem 2rem;
        border-radius: var(--radius-md);
    }

    .application-success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .application-success .section-subtitle {
        font-size: .74rem;
    }

    .application-success h2 {
        font-size: 2.3rem;
        line-height: 1.15;
    }

    .application-success p {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        font-size: .92rem;
        line-height: 1.7;
    }

    .application-success .btn-nav {
        width: auto;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        padding: 5rem 0 1.75rem;
        margin-top: 0;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 2.5rem;

        padding-bottom: 3rem;
        text-align: left;
    }


    /* =====================================================
       FOOTER LOGO
    ===================================================== */

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo img {
        width: 190px;
        height: auto;
        margin-bottom: 1rem;
    }

    .footer-text {
        max-width: 300px;
        margin: 0 0 1.4rem;

        color: rgba(255,255,255,.72);
        font-family: var(--font-body);
        font-size: .88rem;
        font-weight: 400;
        line-height: 1.7;
        text-align: left;
    }


    /* =====================================================
       FOOTER SOCIAL
    ===================================================== */

    .footer-social {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: .75rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: .95rem;
    }


    /* =====================================================
       FOOTER LINKS
    ===================================================== */

    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-title {
        margin-bottom: 1rem;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 700;
        text-align: left;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: .75rem;
    }

    .footer-links a {
        color: rgba(255,255,255,.72);
        font-family: var(--font-body);
        font-size: .88rem;
        font-weight: 400;
        line-height: 1.6;
    }


    /* =====================================================
       FOOTER CONTACT
    ===================================================== */

    .footer-contact p {
        font-size: .88rem;
        line-height: 1.65;
        text-align: left;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        width: 100%;
        gap: .7rem;
        margin-bottom: .75rem;

        color: rgba(255,255,255,.72);
        font-family: var(--font-body);
        font-size: .88rem;
        font-weight: 400;
        line-height: 1.6;
        text-align: left;
    }

    .footer-contact i {
        flex-shrink: 0;
        margin-top: 3px;
        color: var(--gold);
        font-size: .9rem;
    }

    .footer-contact a {
        color: rgba(255,255,255,.72);
        font-family: var(--font-body);
        font-size: .88rem;
        font-weight: 400;
        line-height: 1.6;
        text-align: left;
    }

    .footer-contact a:hover {
        color: var(--gold);
    }


    /* =====================================================
       FOOTER BOTTOM
    ===================================================== */

    .footer-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        gap: 1rem;
        padding: 1.5rem 0 0;
        margin-bottom: 0;

        font-family: var(--font-body);
        font-size: .8rem;
        text-align: left;
    }

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.55);
        font-family: var(--font-body);
        font-size: .78rem;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
    }

    .footer-legal {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: .6rem;
        flex-wrap: wrap;

        font-family: var(--font-body);
        text-align: right;
    }

    .footer-legal a,
    .footer-link-button {
        background: none;
        border: none;
        padding: 0;

        color: rgba(255,255,255,.55);
        font-family: var(--font-body);
        font-size: .78rem;
        font-weight: 400;
        line-height: 1.5;

        cursor: pointer;
    }

    .footer-legal span {
        color: rgba(255,255,255,.25);
        font-size: .75rem;
    }

}