﻿:root {
    --bg-dark: #181f13;
    --bg-olive: #28331f;
    --olive-line: #3c4a2c;
    --brass: #c8a13d;
    --brass-bright: #e2bc55;
    --khaki: #e9e2ce;
    --paper: #f4efe0;
    --ink: #15170f;
    --ink-soft: #3c4232;
    --moss: #7c8a5c;
    --rust: #8a3324;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.stencil {
    font-family: "Big Shoulders Stencil Text", sans-serif;
    letter-spacing: 0.08em;
}

.eyebrow {
     font-weight: 900;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    color: var(--brass);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .eyebrow::before {
        content: "";
        width: 34px;
        height: 2px;
        background: var(--brass);
    }

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 80px 0;
    position: relative;
    background: var(--primary);
}

.dark {
    background: var(--bg-dark);
    color: var(--khaki);
}

    .dark h2,
    .dark h3 {
        color: #fff;
    }

.olive {
    background: var(--bg-olive);
    color: var(--khaki);
}

/* topo texture */
.topo {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image: repeating-radial-gradient( circle at 20% 30%, transparent 0, transparent 40px, var(--khaki) 41px, transparent 42px, transparent 90px ), repeating-radial-gradient( circle at 85% 70%, transparent 0, transparent 60px, var(--khaki) 61px, transparent 62px, transparent 130px );
}

/* ============ ABOUT ============ */
#about {
    background: var(--paper);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

#about h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 26px;
}

#about p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 94%;
    margin-bottom: 18px;
    text-align: justify;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--olive-line);
    margin-top: 40px;
    border: 1px solid var(--olive-line);
}

    .stat-row div {
        background: var(--bg-dark);
        color: #fff;
        padding: 24px 14px;
        text-align: center;
    }

    .stat-row .num {
        font-family: "Big Shoulders Stencil Text";
        font-size: 2.4rem;
        color: var(--brass-bright);
        display: block;
    }

    .stat-row .lbl {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: white;
    }

.dossier {
    position: relative;
    aspect-ratio: 4/5;
    border: 2px solid var(--ink);
    background: linear-gradient( 135deg, var(--bg-olive) 25%, var(--bg-dark) 25%, var(--bg-dark) 50%, var(--bg-olive) 50%, var(--bg-olive) 75%, var(--bg-dark) 75% );
    background-size: 34px 34px;
    box-shadow: var(--shadow);
}

    .dossier::after {
        content: "CZS ACADEMY";
        position: absolute;
        top: 24px;
        left: 24px;
        background: var(--rust);
        color: #fff;
        font-family: "Big Shoulders Stencil Text";
        font-weight: 900;
        letter-spacing: 0.15em;
        font-size: 0.8rem;
        padding: 8px 16px;
        transform: rotate(-3deg);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    }

.dossier-tag {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--paper);
    padding: 14px 18px;
    font-family: "Oswald";
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow);
    max-width: 220px;
}

/* ============ MISSION/VISION ============ */
#mv {
    padding-top: 0;
    padding: 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--olive-line);
}

.mv-card {
    background: var(--bg-dark);
    color: var(--khaki);
    padding: 60px 50px;
}

    .mv-card:nth-child(2) {
        background: var(--bg-olive);
    }

.tag-icon {
    width: 52px;
    height: 52px;
    border: 2px solid var(--brass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-family: "Big Shoulders Stencil Text";
    color: var(--brass-bright);
    font-size: 1.4rem;
}

.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #fff;
}

.mv-card p {
    color: #c8cdb8;
    max-width: 44ch;
}

/* ============ PROGRAMS ============ */
#programs {
    background: var(--paper);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

    .section-head h2 {
        font-size: clamp(2rem, 3.4vw, 3rem);
    }

    .section-head p {
        color: var(--ink-soft);
        max-width: 40ch;
    }

.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.prog-card {
    background: #fff;
    border: 1px solid #ddd4bb;
    padding: 34px 28px;
    position: relative;
    border-top: 5px solid var(--brass);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .prog-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
    }

    .prog-card .code {
        font-family: "Big Shoulders Stencil Text";
        color: var(--brass);
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        display: block;
        margin-bottom: 14px;
    }

    .prog-card h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
        color: var(--primary);
    }

    .prog-card p {
        color: var(--ink-soft);
        font-size: 0.95rem;
    }

.prog-card {
    position: relative;
    padding: 30px;
    transition: .35s ease;
    overflow: hidden;
}

    .prog-card::after {
        content: "→";
        position: absolute;
        right: 25px;
        top: 25px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--brass);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        transition: .3s ease;
    }

    .prog-card:hover {
        transform: translateY(-8px);
    }

        .prog-card:hover::after {
            transform: rotate(-45deg);
        }


    .prog-card .code {
        color: var(--brass);
        font-size: .85rem;
        letter-spacing: 2px;
    }


    .prog-card a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
        color: var(--brass-bright);
        font-weight: 600;
        text-decoration: none;
    }


        .prog-card a span {
            transition: .3s ease;
        }


        .prog-card a:hover span {
            transform: translateX(6px);
        }
/* ============ WHY US ============ */
#why {
    background: var(--bg-dark);
    color: var(--khaki);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--olive-line);
    margin-top: 20px;
}

.why-item {
    background: white;
    padding: 14px 14px 8px 14px;
}

    .why-item .n {
        font-family: "Big Shoulders Stencil Text";
        color: var(--brass-bright);
        font-size: 1.8rem;
        display: block;
        margin-bottom: 16px;
    }

    .why-item h4 {
        color: #fff;
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .why-item p {
        color: #b9bfa6;
        font-size: 0.9rem;
    }

/* ============ FACULTY ============ */
#faculty {
    background: var(--paper);
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fac-card {
    background: #fff;
    border: 1px solid #ddd4bb;
    text-align: center;
    padding: 30px 18px 26px;
}

.fac-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px 20px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

    .fac-card:hover {
        transform: translateY(-8px);
        border-color: var(--brass);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

.fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fac-card {
    position: relative;
    height: 325px;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    padding: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: .3s ease;
}

    .fac-card:hover {
        transform: translateY(-10px);
    }

    .fac-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
        display: block;
    }


.fac-info {
    position: absolute;
    bottom: 20px;
    left: 25px;
    right: 25px;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    padding: 12px 10px 6px 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.btn-more {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    background: var(--brass);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s ease;
}

    .btn-more:hover {
        background: var(--brass-bright);
        transform: translateY(-3px);
    }

.fac-info h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}


.fac-info span {
    display: block;
    margin-top: 8px;
    color: #ff4b32;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.fac-card h4 {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.fac-card span {
    display: block;
    font-size: 0.78rem;
    color: var(--brass);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ============ RESULTS ============ */
#results {
    background: var(--bg-olive);
    color: var(--khaki);
}

    #results iframe {
        width: 100%;
        height: 350px;
    }
    .res-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 20px;
    }

.res-card {
    background: white;
    padding: 26px 20px;
    border-left: 4px solid var(--brass);
}

    .res-card .rank {
        color: var(--brass);
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }

.social-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 14px 14px 0 0;
}

    .social-title i {
        font-size: 28px;
    }


.youtube {
    background: linear-gradient(135deg, #990000, #cc0000);
}


.facebook {
    background: linear-gradient(135deg, #0050b9, #0d47a1);
}


.social-frame iframe {
    width: 100%;
    height: 315px;
    display: block;
}


.social-card {
    overflow: hidden;
    padding: 0;
}

    .res-card h4 {
        /*color: #fff;*/
        margin: 8px 0 4px;
        font-size: 1.05rem;
    }

.res-card span {
    font-size: 0.82rem;
    color: white;
}

/* ============ GALLERY ============ */
#gallery {
    background: var(--paper);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    /*border: 1px solid #ddd4bb;*/
    /*    background: linear-gradient(160deg, var(--bg-olive), var(--bg-dark));
*/
}

    .gal-item .label {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 16px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
        color: #fff;
        /*font-family: "Oswald";*/
        letter-spacing: 0.05em;
        font-size: 0.9rem;
    }

    .gal-item img {
        width: 100%;
    }

.gal-grid .slick-arrow {
    display: none !important;
}
/* ============ TESTIMONIALS ============ */
#stories {
    background: var(--bg-dark);
    color: var(--khaki);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 20px;
}

.story-card {
    background: var(--bg-olive);
    border: 1px solid var(--olive-line);
}

.story-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #333, #111);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
}

.story-card .meta {
    padding: 18px 20px;
}

.story-card h4 {
    color: #fff;
    font-size: 1rem;
    font-family: "Inter";
    font-weight: 600;
    text-transform: none;
}

/* ============ ADMISSION PROCESS ============ */
#admission {
    background: var(--paper);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    position: relative;
}

    .steps::before {
        content: "";
        position: absolute;
        top: 26px;
        left: 6%;
        right: 6%;
        height: 2px;
        background: repeating-linear-gradient( 90deg, var(--brass) 0 10px, transparent 10px 18px );
    }

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

    .step .nums {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: var(--ink);
        color: var(--brass-bright);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-family: "Big Shoulders Stencil Text";
        font-size: 1.3rem;
        position: relative;
        z-index: 2;
        border: 2px solid var(--brass);
    }

    .step h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .step p {
        color: var(--ink-soft);
        font-size: 0.88rem;
    }

/* ============ FEE / SCHOLARSHIP CTA ============ */
#fee {
    background: var(--rust);
    color: #fff;
    padding: 70px 0;
}

.fee-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .fee-flex h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        max-width: 16ch;
        color: white;
    }

    .fee-flex p {
        color: #f0d9cf;
        max-width: 42ch;
        margin-top: 12px;
    }

.btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
     letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.88rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.btn-brass {
    background: var(--ink);
    color: var(--brass-bright);
    border-color: var(--ink);
}

    .btn-brass:hover {
        background: transparent;
        border-color: #ffffff;
        color: white !important;
    }

.btn-ghost {
    border-color: #fff;
    color: #fff;
}

    .btn-ghost:hover {
        background: #fff;
        color: var(--ink) !important;
    }

/* ============ CONTACT / FOOTER ============ */
#contact {
    background: var(--bg-dark);
    color: var(--khaki);
}

    #contact .reveal {
        text-align: left;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.branch {
    border-top: 1px solid var(--olive-line);
    padding: 18px 0;
}

    .branch h4 {
        color: #fff;
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .branch span {
        font-size: 0.88rem;
        color: #b9bfa6;
    }

.map-frame {
    border: 2px solid var(--olive-line);
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(0.3) contrast(1.1);
    }

footer {
    background: var(--ink);
    color: #8b9179;
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
}

    footer strong {
        color: var(--brass-bright);
    }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 980px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid,
    .why-grid,
    .prog-grid,
    .fac-grid,
    .res-grid,
    .gal-grid,
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

        .steps::before {
            display: none;
        }
}

@media (max-width: 560px) {
    section {
        padding: 70px 0;
    }

    .wrap {
        padding: 0 20px;
    }

    .mv-grid,
    .why-grid,
    .prog-grid,
    .fac-grid,
    .res-grid,
    .gal-grid,
    .story-grid,
    .steps {
        grid-template-columns: 1fr;
    }
}

.gal-item {
    padding: 0 10px;
}

    .gal-item img {
        width: 100%;
        display: block;
        border-radius: 12px;
        min-height: 206px;
        object-fit: cover;
        object-position: top;
    }

.dossier {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

    .dossier img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.dossier-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    background: linear-gradient( transparent, rgba(0,0,0,0.8) );
    font-weight: 600;
}

.social-frame {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 14px;
}

    .social-frame iframe {
        width: 100%;
        height: 315px;
        border-radius: 14px;
        display: block;
    }


.res-card {
    padding: 25px;
}


.rank {
    display: inline-block;
    color: var(--brass-bright);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}


/* Achievement Section */

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}


.achievement-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 25px;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}


    .achievement-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--brass);
    }


    .achievement-card:hover {
        transform: translateY(-8px);
        border-color: var(--brass);
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }


.achievement-rank {
    display: inline-block;
    color: var(--brass-bright);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 15px;
}


.achievement-card h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}


.achievement-card span:last-child {
    color: #b9bfa6;
    font-size: 0.95rem;
    line-height: 1.5;
}


.achievement-eyebrow {
    color: var(--brass);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}


/* Responsive */

@media(max-width: 992px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width: 576px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}