/* =========================================
   GLOBAL
   ========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #172033;
    font-family: Inter, Arial, sans-serif;
    background: #ffffff;
    line-height: 1.65;
}

.container {
    width: min(1160px, 92%);
    margin: auto;
}


/* =========================================
   TOP BAR
   ========================================= */

.topbar {
    background: #030a15;
    color: #9eabba;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.topbar-inner {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar a {
    color: #ffffff;
    text-decoration: none;
}


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

.header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid #e8ebef;
}

.nav {
    height: 82px;

    display: flex;
    align-items: center;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #101827;

    margin-right: auto;
}

.logo,
.big-logo {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #ffffff;

    border: 4px solid #df1f27;

    display: grid;
    place-items: center;

    font-family: Manrope, sans-serif;

    font-size: 27px;
    font-weight: 900;

    color: #111111;

    position: relative;
}

.logo small,
.big-logo small {
    position: absolute;

    font-size: 7px;

    bottom: 9px;
}

.brand-text strong {
    font-family: Manrope, sans-serif;

    display: block;

    letter-spacing: 0.8px;

    font-size: 17px;
}

.brand-text em {
    display: block;

    color: #e21d25;

    font-style: normal;

    font-size: 10px;

    font-weight: 700;
}

.nav-links {
    display: flex;

    gap: 22px;
}

.nav-links a {
    color: #263044;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;
}

.nav-links a:hover {
    color: #df1f27;
}

.nav-cta {
    background: #df1f27;

    color: #ffffff;

    text-decoration: none;

    font-weight: 800;

    font-size: 13px;

    padding: 11px 17px;

    border-radius: 6px;

    white-space: nowrap;
}

.menu {
    display: none;

    border: 0;

    background: none;

    font-size: 25px;

    cursor: pointer;
}


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

.hero {
    min-height: 0;

    display: block;

    background: #061020;

    overflow: hidden;
}


/*
  IMPORTANT:

  The banner is displayed as a normal image.
  It is NOT used as a background.

  Therefore:
  - no cropping
  - no fixed height
  - no distortion
*/

.hero-banner {
    width: 100%;

    background: #061020;

    line-height: 0;
}

.hero-banner img {
    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    object-fit: contain;
}


/* =========================================
   HERO CTA
   ========================================= */

.hero-cta {
    background: #061020;

    color: #ffffff;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 38px 0;
}

.hero-cta h1 {
    font-family: Manrope, sans-serif;

    font-size: clamp(28px, 3vw, 42px);

    line-height: 1.08;

    letter-spacing: -1px;

    margin: 10px 0 18px;
}

.hero-cta h1 span {
    color: #ffc400;
}

.hero-cta p {
    color: #cbd4df;

    max-width: 700px;

    margin: 0;

    font-size: 14px;
}

.hero-cta .pill {
    display: inline-block;

    color: #ffc400;

    border: 1px solid rgba(255, 196, 0, 0.45);

    padding: 7px 12px;

    border-radius: 50px;

    font-size: 10px;

    letter-spacing: 1.7px;

    font-weight: 800;
}

.hero-cta .hero-note {
    margin-top: 15px;

    color: #9eabba;

    font-size: 11px;

    font-weight: 700;
}

.hero-cta .hero-note span {
    color: #ffc400;
}

.hero-actions {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 7px;

    padding: 13px 20px;

    text-decoration: none;

    font-weight: 800;

    font-size: 13px;

    transition: 0.2s;

    cursor: pointer;
}

.btn-primary {
    background: #df1f27;

    color: #ffffff;
}

.btn-primary:hover {
    background: #bc151c;

    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.55);

    color: #ffffff;
}

.btn-ghost:hover {
    background: #ffffff;

    color: #111111;
}

.btn-red {
    background: #df1f27;

    color: #ffffff;

    margin-top: 12px;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);

    color: #ffffff;
}

.btn-dark {
    background: #17243a;

    color: #ffffff;
}

.btn-dark:hover {
    background: #263a59;
}

.wide {
    width: 100%;

    margin-top: 10px;
}


/* =========================================
   STATS
   ========================================= */

.stats {
    background: #ffc400;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 23px 0;
}

.stats-grid div {
    text-align: center;

    border-right: 1px solid rgba(0, 0, 0, 0.18);
}

.stats-grid div:last-child {
    border: 0;
}

.stats-grid strong {
    font-family: Manrope, sans-serif;

    display: block;

    font-size: 20px;
}

.stats-grid span {
    font-size: 11px;

    font-weight: 700;
}


/* =========================================
   SECTIONS
   ========================================= */

.section {
    padding: 100px 0;
}

.kicker {
    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 900;

    color: #df1f27;
}

.section h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(33px, 4vw, 49px);

    line-height: 1.12;

    letter-spacing: -1.2px;

    margin: 11px 0 22px;

    color: #0b1526;
}

.section-copy p {
    color: #667085;

    max-width: 620px;
}


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

.split {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}

.signature {
    margin-top: 25px;

    font-weight: 900;

    letter-spacing: 1px;
}

.signature span {
    color: #df1f27;

    margin-left: 7px;
}

.teacher-card {
    border-radius: 20px;

    overflow: hidden;

    background: #071325;

    box-shadow:
        0 25px 60px rgba(5, 12, 25, 0.18);
}

.teacher-photo {
    height: 300px;

    overflow: hidden;

    background: #101827;
}

.teacher-photo img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: 78% 24%;

    transform: scale(1.45);
}

.teacher-info {
    padding: 28px;

    color: #ffffff;
}

.teacher-info .kicker {
    color: #ffc400;
}

.teacher-info h3 {
    font-family: Manrope, sans-serif;

    font-size: 25px;

    margin: 7px 0;
}

.teacher-info p {
    color: #b9c3d0;

    margin: 0;
}


/* =========================================
   SECTION HEADINGS
   ========================================= */

.heading {
    text-align: center;

    max-width: 720px;

    margin: 0 auto 48px;
}

.heading p {
    color: #6b7280;
}

.heading.light h2 {
    color: #ffffff;
}


/* =========================================
   PROGRAMS
   ========================================= */

.programs {
    background: #f5f7fa;
}

.program-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}

.program-grid article {
    background: #ffffff;

    border: 1px solid #e2e6ec;

    border-radius: 13px;

    padding: 29px;

    min-height: 235px;

    position: relative;

    transition: 0.2s;
}

.program-grid article:first-child {
    border-top: 4px solid #df1f27;
}

.program-grid article:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(16, 24, 40, 0.09);
}

.num {
    color: #df1f27;

    font-weight: 900;

    font-size: 11px;
}

.program-grid h3 {
    font-family: Manrope, sans-serif;

    font-size: 24px;

    margin: 12px 0 7px;
}

.program-grid p {
    color: #667085;

    font-size: 13px;
}

.program-grid span {
    display: inline-block;

    background: #fff3c2;

    color: #6d5200;

    font-size: 10px;

    font-weight: 900;

    padding: 5px 10px;

    border-radius: 30px;

    margin-top: 10px;
}

.other-heading {
    text-align: center;

    margin: 78px auto 28px;
}

.other-heading h2 {
    font-size: 34px;

    margin: 8px 0;
}

.other-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* =========================================
   STUDENT RESOURCES
   ========================================= */

.learning {
    background: #ffffff;
}

.learning-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 17px;
}

.learning-grid>div {
    padding: 30px;

    border: 1px solid #e3e7ed;

    border-radius: 14px;

    background: #ffffff;
}

.learn-icon {
    color: #df1f27;

    font-weight: 900;

    font-size: 11px;
}

.learning-grid h3 {
    font-family: Manrope, sans-serif;

    font-size: 21px;

    margin: 11px 0 5px;
}

.learning-grid p {
    font-size: 13px;

    color: #667085;
}


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

.approach {
    background: #071325;

    color: #ffffff;
}

.approach-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: rgba(255, 255, 255, 0.12);
}

.approach-grid>div {
    background: #071325;

    padding: 34px 28px;
}

.approach-grid b {
    color: #ffc400;

    font-size: 13px;
}

.approach-grid h3 {
    font-family: Manrope, sans-serif;

    font-size: 22px;

    margin: 13px 0 6px;
}

.approach-grid p {
    color: #9eabba;

    font-size: 13px;
}


/* =========================================
   YOUTUBE
   ========================================= */

.youtube {
    background: #ffffff;
}

.youtube-wrap {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.youtube-wrap p {
    color: #667085;

    max-width: 560px;
}

.youtube-preview {
    min-height: 270px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #071325,
            #172a48);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(7, 19, 37, 0.16);
}

.youtube-preview .play {
    width: 72px;

    height: 52px;

    border-radius: 14px;

    background: #df1f27;

    display: grid;

    place-items: center;

    font-size: 24px;

    padding-left: 3px;

    margin-bottom: 20px;
}

.youtube-preview strong {
    font-family: Manrope, sans-serif;

    font-size: 22px;
}

.youtube-preview span {
    color: #aeb9c8;

    font-size: 11px;

    margin-top: 5px;
}


/* =========================================
   REVIEWS
   ========================================= */

.reviews {
    background: #ffffff;
}

.reviews-summary {
    display: grid;

    grid-template-columns: 280px 1fr;

    background: #f6f8fb;

    border: 1px solid #e4e8ee;

    border-radius: 18px;

    overflow: hidden;

    max-width: 930px;

    margin: auto;
}

.rating-box {
    background: #071325;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 42px;
}

.rating-box strong {
    font-family: Manrope, sans-serif;

    font-size: 62px;

    line-height: 1;
}

.rating-box .stars {
    color: #ffc400;

    font-size: 22px;

    letter-spacing: 2px;

    margin: 10px 0 2px;
}

.rating-box span {
    font-size: 12px;

    color: #c1cad6;

    font-weight: 700;
}

.rating-box small {
    font-size: 11px;

    color: #8e9bab;

    margin-top: 4px;
}

.review-copy {
    padding: 40px 45px;

    position: relative;
}

.review-mark {
    font-family: Georgia, serif;

    font-size: 70px;

    line-height: 0.7;

    color: #df1f27;

    position: absolute;

    right: 35px;

    top: 30px;

    opacity: 0.18;
}

.review-copy h3 {
    font-family: Manrope, sans-serif;

    font-size: 28px;

    margin: 0 0 10px;
}

.review-copy p {
    color: #667085;

    max-width: 620px;
}

.review-note {
    display: flex;

    align-items: center;

    gap: 16px;

    max-width: 930px;

    margin: 18px auto 0;

    padding: 14px 18px;

    border-radius: 10px;

    background: #fff8dc;

    border: 1px solid #f4df91;
}

.review-note span {
    color: #e0a900;

    letter-spacing: 2px;

    white-space: nowrap;
}

.review-note p {
    margin: 0;

    color: #6d5a18;

    font-size: 12px;

    font-weight: 600;
}


/* =========================================
   ENQUIRY
   ========================================= */

.enquiry {
    padding: 55px 0;

    background: #df1f27;
}

.enquiry-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.enquiry h2 {
    color: #ffffff;

    font-size: 34px;

    margin: 5px 0;
}

.enquiry p {
    color: #ffdfe0;

    margin: 0;
}

.enquiry .kicker {
    color: #ffc400;
}

.enquiry-actions {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================
   FAQ
   ========================================= */

.faqs {
    background: #f5f7fa;
}

.faq-list {
    max-width: 900px;

    margin: auto;

    border-top: 1px solid #dfe4ea;
}

.faq-list details {
    background: #ffffff;

    border: 1px solid #dfe4ea;

    border-top: 0;
}

.faq-list summary {
    cursor: pointer;

    padding: 20px 24px;

    font-family: Manrope, sans-serif;

    font-weight: 800;

    font-size: 15px;

    list-style: none;

    position: relative;

    padding-right: 50px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary:after {
    content: "+";

    position: absolute;

    right: 23px;

    font-size: 22px;

    color: #df1f27;

    top: 15px;
}

.faq-list details[open] summary:after {
    content: "−";
}

.faq-list details p {
    padding: 0 24px 20px;

    margin: 0;

    color: #667085;

    font-size: 13px;

    max-width: 800px;
}


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

.contact {
    background: #f7f8fa;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 100px;

    align-items: center;
}

.contact-item {
    display: flex;

    gap: 17px;

    margin-top: 25px;

    align-items: flex-start;
}

.contact-item i {
    font-style: normal;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #df1f27;

    color: #ffffff;
}

.contact-item small {
    display: block;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

    color: #8b95a5;
}

.contact-item strong {
    display: block;

    font-size: 14px;

    color: #182234;
}

.contact-item a {
    text-decoration: none;
}

.contact-card {
    background: #071325;

    color: #ffffff;

    border-radius: 18px;

    padding: 45px;

    text-align: center;
}

.big-logo {
    margin: auto;
}

.contact-card h3 {
    font-family: Manrope, sans-serif;

    font-size: 27px;

    margin: 17px 0 0;
}

.contact-card p {
    color: #aeb9c8;

    margin: 0 0 20px;
}


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

.site-footer {
    background: #030914;

    color: #9aa7b8;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    align-items: center;

    gap: 35px;

    padding: 42px 0 34px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-logo {
    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 3px solid #df1f27;

    background: #ffffff;

    color: #111111;

    display: grid;

    place-items: center;

    font-family: Manrope, sans-serif;

    font-weight: 900;

    font-size: 22px;

    position: relative;
}

.footer-logo small {
    position: absolute;

    font-size: 6px;

    bottom: 8px;
}

.footer-brand strong {
    display: block;

    color: #ffffff;

    font-family: Manrope, sans-serif;

    letter-spacing: 0.8px;
}

.footer-brand span {
    display: block;

    font-size: 10px;

    margin-top: 2px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-links a {
    color: #aeb8c5;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;
}

.footer-links a:hover {
    color: #ffc400;
}

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 6px;
}

.footer-contact a {
    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);

    padding: 16px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 10px;
}

.footer-bottom b {
    color: #ffc400;
}


/* =========================================
   MOBILE NAVIGATION
   ========================================= */

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu {
        display: block;
    }

    .nav.open .nav-links {
        display: flex;

        position: absolute;

        top: 117px;

        left: 0;

        right: 0;

        background: #ffffff;

        flex-direction: column;

        padding: 20px 4%;

        border-bottom: 1px solid #dddddd;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .split,
    .youtube-wrap,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enquiry-box {
        display: block;
    }

    .enquiry-actions {
        margin-top: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .stats-grid div:nth-child(2) {
        border: 0;
    }

    .hero-cta-inner {
        display: block;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .rating-box {
        padding: 30px;
    }

    .review-copy {
        padding: 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;

        flex-wrap: wrap;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-bottom {
        display: block;

        text-align: center;
    }

    .footer-bottom span {
        display: block;

        margin: 4px 0;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .topbar-inner {
        height: auto;

        padding: 8px 0;

        display: block;

        text-align: center;
    }

    .topbar-inner span {
        display: block;
    }


    .nav {
        height: 72px;
    }


    /*
    Full banner remains proportional.
    No cropping on mobile.
  */

    .hero-banner img {
        width: 100%;

        height: auto;
    }


    .hero-cta-inner {
        padding: 30px 0;
    }


    .hero-cta h1 {
        font-size: 30px;
    }


    .hero-cta p {
        font-size: 13px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .hero-note {
        line-height: 2;
    }


    .section {
        padding: 70px 0;
    }


    .section h2 {
        font-size: 34px;
    }


    .program-grid,
    .approach-grid,
    .learning-grid,
    .other-grid {
        grid-template-columns: 1fr;
    }


    .teacher-photo {
        height: 260px;
    }


    .enquiry h2 {
        font-size: 28px;
    }


    .enquiry-actions {
        display: flex;

        flex-direction: column;
    }


    .review-note {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }


    .review-copy h3 {
        font-size: 24px;
    }


    .faq-list summary {
        font-size: 14px;

        padding: 17px 45px 17px 17px;
    }


    .faq-list summary:after {
        right: 17px;
    }


    .faq-list details p {
        padding: 0 17px 17px;
    }


    .other-heading {
        margin-top: 55px;
    }


    .footer-main {
        padding: 35px 0 25px;
    }

}