:root {
    --primary: #08776b;
    --primary-dark: #07564f;
    --primary-deep: #063c38;

    --accent: #c7a94b;
    --accent-soft: #f3ead0;

    --text: #172321;
    --muted: #6c7774;

    --soft: #f5f8f7;
    --soft-2: #eef4f2;

    --white: #ffffff;
    --border: #e2e9e6;

    --container: 1180px;

    --radius: 20px;
    --radius-lg: 28px;

    --shadow:
        0 15px 45px rgba(5, 50, 44, .07);

    --shadow-hover:
        0 20px 55px rgba(5, 50, 44, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;

    background: rgba(255,255,255,.78);

    border-bottom: 1px solid rgba(0,0,0,.035);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        background .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.site-header.scrolled {
    background: rgba(255,255,255,.96);
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
}

.nav-container {
    min-height: 76px;

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

    gap: 30px;
}

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

.brand-mark {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 7px 18px rgba(8,119,107,.18);
}

.brand-mark span {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.brand-text strong {
    font-size: .79rem;
    font-weight: 850;
    letter-spacing: .01em;
}

.brand-text span {
    margin-top: 4px;

    color: var(--muted);

    font-size: .62rem;
    letter-spacing: .03em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 21px;

    font-size: .82rem;
    font-weight: 600;
}

.main-nav > a {
    position: relative;
    padding: 5px 0;

    color: #3e4a47;

    transition:
        color .2s ease,
        transform .2s ease;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;

    height: 2px;

    transform: scaleX(0);
    transform-origin: center;

    background: var(--primary);

    transition: transform .2s ease;
}

.main-nav > a:hover {
    color: var(--primary);
}

.main-nav > a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 10px 18px !important;

    border-radius: 999px;

    color: white !important;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 8px 20px rgba(8,119,107,.18);

    transition:
        transform .2s ease,
        box-shadow .2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(8,119,107,.24);
}

.nav-cta::after {
    display: none !important;
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: white;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 4px auto;

    border-radius: 2px;

    background: var(--text);
}

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

.hero {
    position: relative;

    padding:
        145px
        0
        95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(8,119,107,.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(199,169,75,.08),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #f4f9f7 0%,
            #ffffff 58%,
            #f7faf9 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -170px;
    bottom: -230px;

    border-radius: 50%;

    border: 1px solid rgba(8,119,107,.10);
}

.hero-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, .98fr);

    align-items: center;

    gap: 75px;
}

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

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 13px;

    color: var(--primary);

    font-size: .69rem;
    font-weight: 850;

    letter-spacing: .13em;
}

.eyebrow::before,
.section-label::before {
    content: "";

    width: 24px;
    height: 2px;

    border-radius: 5px;

    background: var(--accent);
}

.hero h1 {
    margin: 0;

    max-width: 650px;

    font-size:
        clamp(2.7rem, 5.5vw, 5rem);

    line-height: .99;

    letter-spacing: -.055em;

    font-weight: 850;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    max-width: 590px;

    margin:
        25px
        0
        31px;

    color: var(--muted);

    font-size: 1rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 11px;
}

.btn {
    min-height: 48px;

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

    padding: 0 22px;

    border-radius: 999px;

    font-size: .83rem;
    font-weight: 750;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 11px 25px rgba(8,119,107,.20);
}

.btn-primary:hover {
    box-shadow:
        0 15px 32px rgba(8,119,107,.26);
}

.btn-outline {
    border: 1px solid var(--border);

    color: var(--text);

    background: rgba(255,255,255,.72);
}

.btn-outline:hover {
    background: white;
}

/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.hero-placeholder {
    position: relative;

    aspect-ratio: 1.12 / 1;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 30px;

    color: #81918c;

    background:
        linear-gradient(
            145deg,
            #e1ece8,
            #d2e1dc
        );

    box-shadow:
        0 28px 65px rgba(6,60,56,.13);
}

.hero-placeholder::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -55px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.35);
}

.hero-placeholder::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    bottom: -50px;
    left: -25px;

    border-radius: 50%;

    border: 20px solid rgba(255,255,255,.22);
}

.hero-placeholder span {
    position: relative;
    z-index: 2;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.45);

    font-size: .7rem;
}

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

.stats {
    position: relative;
    z-index: 2;

    margin-top: 0;

    color: white;

    background:
        linear-gradient(
            120deg,
            var(--primary-dark),
            var(--primary)
        );
}

.stats-grid {
    display: grid;

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

.stat-item {
    position: relative;

    padding: 28px 15px;

    text-align: center;
}

.stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: rgba(255,255,255,.16);
}

.stat-item strong {
    display: block;

    font-size: 2rem;
    line-height: 1;

    letter-spacing: -.04em;
}

.stat-item span {
    display: block;

    margin-top: 8px;

    opacity: .72;

    font-size: .72rem;
}

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

.section {
    padding: 100px 0;
}

.section-soft {
    background:
        linear-gradient(
            180deg,
            #f6f9f8,
            #f2f6f4
        );
}

.section-heading {
    max-width: 690px;

    margin-bottom: 48px;
}

.section-heading h2,
.section-content h2,
.contact-section h2,
.pmb-section h2 {
    margin:
        0
        0
        15px;

    font-size:
        clamp(2rem, 4vw, 3.35rem);

    line-height: 1.08;

    letter-spacing: -.045em;

    font-weight: 850;
}

.section-heading p,
.section-content p,
.contact-section p {
    margin: 0;

    color: var(--muted);

    font-size: .94rem;
}

.two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 75px;
}

.placeholder-image {
    position: relative;

    aspect-ratio: 1.1 / .82;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 26px;

    color: #81918c;

    background:
        linear-gradient(
            145deg,
            #dce8e4,
            #d0dfda
        );

    box-shadow: var(--shadow);
}

.placeholder-image::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background: rgba(255,255,255,.30);
}

.placeholder-image::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    left: -65px;
    bottom: -65px;

    border-radius: 50%;

    border: 18px solid rgba(255,255,255,.20);
}

.placeholder-image span {
    position: relative;
    z-index: 2;

    padding: 7px 13px;

    border-radius: 999px;

    background: rgba(255,255,255,.40);

    font-size: .68rem;
}

.text-link {
    display: inline-flex;

    margin-top: 17px;

    color: var(--primary);

    font-size: .84rem;
    font-weight: 800;
}

/* ========================================
   ADVANTAGES
======================================== */

.cards-grid {
    display: grid;

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

    gap: 16px;
}

.info-card {
    position: relative;

    padding: 27px;

    border:
        1px solid
        rgba(8,119,107,.08);

    border-radius: var(--radius);

    background: white;

    box-shadow:
        0 5px 25px rgba(5,50,44,.035);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.info-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--primary);

    background:
        linear-gradient(
            135deg,
            #e9f4f1,
            #f3f8f6
        );

    font-size: .7rem;
    font-weight: 900;
}

.info-card h3 {
    margin: 17px 0 7px;

    font-size: 1rem;

    letter-spacing: -.02em;
}

.info-card p {
    margin: 0;

    color: var(--muted);

    font-size: .78rem;

    line-height: 1.65;
}

/* ========================================
   PROGRAM
======================================== */

.programs-grid {
    display: grid;

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

    gap: 17px;
}

.program-card {
    position: relative;

    min-height: 235px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    background: white;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.program-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    background: rgba(8,119,107,.05);
}

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

    box-shadow: var(--shadow-hover);
}

.program-card > span {
    display: inline-flex;

    padding: 5px 10px;

    border-radius: 999px;

    color: var(--primary);

    background: #eaf4f1;

    font-size: .65rem;
    font-weight: 850;
}

.program-card h3 {
    position: relative;

    margin:
        17px
        0
        8px;

    font-size: 1.08rem;
}

.program-card p {
    position: relative;

    margin: 0;

    color: var(--muted);

    font-size: .78rem;
}

.program-card a {
    position: relative;

    display: inline-flex;

    margin-top: 20px;

    color: var(--primary);

    font-size: .76rem;
    font-weight: 800;
}

/* ========================================
   FACILITIES
======================================== */

.facility-grid {
    display: grid;

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

    gap: 15px;
}

.facility-card {
    overflow: hidden;

    border-radius: var(--radius);

    background: white;

    box-shadow:
        0 8px 30px rgba(5,50,44,.05);

    transition: transform .25s ease;
}

.facility-card:hover {
    transform: translateY(-4px);
}

.facility-image {
    aspect-ratio: 1 / 1;

    display: grid;
    place-items: center;

    color: #82918d;

    background:
        linear-gradient(
            145deg,
            #dfeae7,
            #d3e2dd
        );

    font-size: .65rem;
}

.facility-card h3 {
    margin: 0;

    padding: 15px 17px;

    font-size: .79rem;
}

/* ========================================
   GALLERY
======================================== */

.gallery-grid {
    display: grid;

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

    gap: 9px;
}

.gallery-grid div {
    position: relative;

    aspect-ratio: 4 / 3;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 14px;

    color: #82918d;

    background:
        linear-gradient(
            145deg,
            #dfeae7,
            #d2e0dc
        );

    font-size: .65rem;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.gallery-grid div:hover {
    transform: scale(.985);
    filter: brightness(.97);
}

/* ========================================
   VIDEO
======================================== */

.video-section {
    padding:
        0
        0
        100px;
}

.video-placeholder {
    position: relative;

    min-height: 440px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 28px;

    color: white;

    text-align: center;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(199,169,75,.13),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #0d3934,
            #092c28
        );
}

.video-placeholder::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.video-placeholder > div {
    position: relative;
    z-index: 2;
}

.play-button {
    width: 66px;
    height: 66px;

    display: grid;
    place-items: center;

    margin:
        0
        auto
        20px;

    border-radius: 50%;

    color: var(--primary);

    background: white;

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

.video-placeholder h2 {
    margin: 0 0 6px;

    font-size: 1.35rem;
}

.video-placeholder p {
    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: .78rem;
}

/* ========================================
   NEWS
======================================== */

.news-grid {
    display: grid;

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

    gap: 17px;
}

.news-card {
    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    background: white;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.news-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-hover);
}

.news-image {
    aspect-ratio: 16 / 9;

    display: grid;
    place-items: center;

    color: #82918d;

    background:
        linear-gradient(
            145deg,
            #dfeae7,
            #d2e0dc
        );

    font-size: .65rem;
}

.news-content {
    padding: 21px;
}

.news-content small {
    color: var(--muted);

    font-size: .66rem;
}

.news-content h3 {
    margin:
        8px
        0
        0;

    font-size: .9rem;

    line-height: 1.4;
}

.news-content a {
    margin-top: 16px;

    color: var(--primary);

    font-size: .73rem;
    font-weight: 800;
}

/* ========================================
   ARTICLES
======================================== */

.article-list {
    border-top:
        1px solid
        var(--border);
}

.article-list article {
    display: grid;

    grid-template-columns: 120px 1fr auto;

    align-items: center;

    gap: 20px;

    padding:
        22px
        0;

    border-bottom:
        1px solid
        var(--border);
}

.article-list span {
    color: var(--primary);

    font-size: .67rem;
    font-weight: 850;
}

.article-list h3 {
    margin: 0;

    font-size: .9rem;
}

.article-list a {
    margin: 0;

    color: var(--primary);

    font-size: .72rem;
    font-weight: 800;
}

/* ========================================
   PMB
======================================== */

.pmb-section {
    position: relative;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(199,169,75,.13),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #07564f,
            #08776b
        );
}

.pmb-section::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -170px;
    bottom: -210px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);
}

.pmb-section .container {
    position: relative;
    z-index: 2;
}

.pmb-section .section-label {
    color: #e0cb78;
}

.pmb-section h2 {
    max-width: 680px;
}

.pmb-section p {
    color: rgba(255,255,255,.70);
}

.timeline {
    display: grid;

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

    gap: 10px;

    margin:
        45px
        0;
}

.timeline div {
    padding:
        22px
        12px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 15px;

    background: rgba(255,255,255,.035);

    text-align: center;
}

.timeline strong {
    display: block;

    color: #e0cb78;

    font-size: 1.15rem;
}

.timeline span {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.72);

    font-size: .68rem;
}

.center-action {
    text-align: center;
}

.pmb-section .btn-primary {
    color: var(--primary);

    background: white;

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

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

.contact-box {
    padding: 30px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #f5f8f7,
            #eef4f2
        );
}

.contact-box strong {
    font-size: 1rem;
}

.contact-box p {
    margin:
        9px
        0;

    font-size: .78rem;
}

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

.site-footer {
    padding-top: 65px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #092d29,
            #071f1d
        );
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        1fr;

    gap: 55px;

    padding-bottom: 50px;
}

.footer-brand {
    margin-bottom: 13px;

    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .04em;
}

.site-footer p {
    max-width: 380px;

    color: rgba(255,255,255,.53);

    font-size: .76rem;
}

.footer-grid h3 {
    margin:
        0
        15px;

    font-size: .75rem;
}

.footer-grid a {
    display: block;

    margin: 8px 0;

    color: rgba(255,255,255,.60);

    font-size: .74rem;

    transition: color .2s ease;
}

.footer-grid a:hover {
    color: white;
}

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

    padding:
        18px
        0;
}

.footer-bottom .container {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,.38);

    font-size: .66rem;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1050px) {

    .main-nav {
        gap: 14px;
        font-size: .76rem;
    }

    .hero-grid {
        gap: 45px;
    }

}

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 76px;
        left: 14px;
        right: 14px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px 18px 18px;

        border:
            1px solid
            var(--border);

        border-radius: 18px;

        background: rgba(255,255,255,.98);

        box-shadow:
            0 18px 50px rgba(0,0,0,.10);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a {
        padding: 11px 3px;
    }

    .nav-cta {
        margin-top: 7px;

        text-align: center;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

    .hero-visual {
        max-width: 650px;
    }

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

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

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

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

}

@media (max-width: 600px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .nav-container {
        min-height: 68px;
    }

    .brand-text strong {
        font-size: .67rem;
    }

    .brand-text span {
        font-size: .54rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;

        border-radius: 10px;
    }

    .main-nav {
        top: 68px;
    }

    .hero {
        padding:
            110px
            0
            65px;
    }

    .hero h1 {
        font-size: 2.7rem;
        letter-spacing: -.06em;
    }

    .hero p {
        margin:
            20px
            0
            25px;

        font-size: .87rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 0;
        padding: 0 14px;
        font-size: .73rem;
    }

    .hero-placeholder {
        border-radius: 23px;
    }

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

    .stat-item {
        padding: 22px 10px;
    }

    .stat-item strong {
        font-size: 1.55rem;
    }

    .stat-item span {
        font-size: .62rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .section-content h2,
    .contact-section h2,
    .pmb-section h2 {
        font-size: 2rem;
    }

    .section-heading p,
    .section-content p,
    .contact-section p {
        font-size: .82rem;
    }

    .cards-grid,
    .programs-grid,
    .news-grid,
    .facility-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .program-card {
        padding: 23px;
    }

    .program-card {
        min-height: auto;
    }

    .facility-image {
        aspect-ratio: 16 / 9;
    }

    .gallery-grid div {
        aspect-ratio: 16 / 10;
    }

    .video-section {
        padding-bottom: 70px;
    }

    .video-placeholder {
        min-height: 320px;
        border-radius: 22px;
    }

    .article-list article {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 20px 0;
    }

    .article-list a {
        margin-top: 5px;
    }

    .timeline {
        grid-template-columns: 1fr;
        margin: 32px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 6px;
    }

}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }

}


/* ========================================
   POLITEKNIK AL ISLAM BRAND
======================================== */

:root {
    --primary: #087b4f;
    --primary-dark: #05623f;
    --primary-deep: #03452d;

    --accent: #f4c400;
    --accent-soft: #fff5c7;
}


/* LOGO HEADER */

.brand-logo {
    width: 42px;
    height: 42px;

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

    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* BRAND TEXT */

.brand-text strong {
    color: var(--primary);
}


/* HERO LOGO PLACEHOLDER */

.hero-placeholder {
    background:
        linear-gradient(
            145deg,
            #e4f0ea,
            #d4e6dc
        );
}

.hero-placeholder img {
    position: relative;
    z-index: 2;

    width: 145px;
    height: 145px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 15px 20px rgba(0,0,0,.10)
        );
}

.hero-placeholder span {
    position: absolute;

    bottom: 24px;

    z-index: 3;
}


/* EYEBROW */

.eyebrow {
    color: var(--primary);
}


/* HERO TAGLINE */

.hero-tagline {
    display: flex;
    flex-direction: column;

    margin-top: 25px;
    padding-left: 14px;

    border-left:
        3px solid
        var(--accent);

    line-height: 1.35;
}

.hero-tagline span {
    color: var(--muted);

    font-size: .68rem;
}

.hero-tagline strong {
    margin-top: 3px;

    color: var(--primary);

    font-size: .75rem;
}


/* GOLD ACCENT */

.section-label::before,
.eyebrow::before {
    background: var(--accent);
}


/* MOBILE */

@media (max-width: 600px) {

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .hero-placeholder img {
        width: 120px;
        height: 120px;
    }

    .hero-tagline {
        margin-top: 20px;
    }

}


/* ========================================
   FINAL BRAND HEADER - COMPACT
======================================== */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.brand-logo {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;

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

    overflow: hidden;
}

.brand-logo img {
    width: 32px;
    height: 32px;

    display: block;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1.1;

    min-width: 0;
}

.brand-text strong {
    color: var(--primary);

    font-size: .72rem;
    font-weight: 850;

    letter-spacing: .01em;

    white-space: nowrap;
}

.brand-text span {
    margin-top: 3px;

    color: var(--muted);

    font-size: .57rem;
    letter-spacing: .16em;

    text-transform: uppercase;
}


/* HEADER HEIGHT */

.nav-container {
    min-height: 68px;
}


/* MOBILE */

@media (max-width: 600px) {

    .nav-container {
        min-height: 64px;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo,
    .brand-logo img {
        width: 29px;
        height: 29px;
    }

    .brand-logo {
        flex-basis: 29px;
    }

    .brand-text strong {
        font-size: .64rem;
    }

    .brand-text span {
        font-size: .50rem;
    }

    .main-nav {
        top: 64px;
    }

}



/* ========================================
   FINAL BRAND HEADER - COMPACT
======================================== */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.brand-logo {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;

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

    overflow: hidden;
}

.brand-logo img {
    width: 32px;
    height: 32px;

    display: block;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1.1;

    min-width: 0;
}

.brand-text strong {
    color: var(--primary);

    font-size: .72rem;
    font-weight: 850;

    letter-spacing: .01em;

    white-space: nowrap;
}

.brand-text span {
    margin-top: 3px;

    color: var(--muted);

    font-size: .57rem;
    letter-spacing: .16em;

    text-transform: uppercase;
}


/* HEADER HEIGHT */

.nav-container {
    min-height: 68px;
}


/* MOBILE */

@media (max-width: 600px) {

    .nav-container {
        min-height: 64px;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo,
    .brand-logo img {
        width: 29px;
        height: 29px;
    }

    .brand-logo {
        flex-basis: 29px;
    }

    .brand-text strong {
        font-size: .64rem;
    }

    .brand-text span {
        font-size: .50rem;
    }

    .main-nav {
        top: 64px;
    }

}



/* ========================================
   POLTEK LOGO - FINAL SIZE
======================================== */

.brand-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

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

    overflow: hidden;
}

.brand-logo img {
    display: block;

    width: 40px !important;
    height: 40px !important;

    max-width: 40px;

    object-fit: contain;
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-text strong {
    font-size: .76rem;
}

.brand-text span {
    font-size: .56rem;
}


/* MOBILE */

@media (max-width: 600px) {

    .brand-logo {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .brand-logo img {
        width: 36px !important;
        height: 36px !important;
        max-width: 36px;
    }

    .brand {
        gap: 8px;
    }

    .brand-text strong {
        font-size: .64rem;
    }

    .brand-text span {
        font-size: .49rem;
    }

}



/* ========================================
   POLITEKNIK AL-ISLAM
   LARGE HEADER LOGO
======================================== */

.nav-container {
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;

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

    overflow: hidden;
}

.brand-logo img {
    display: block;

    width: 64px !important;
    height: 64px !important;

    max-width: 64px;

    object-fit: contain;
}

.brand-text strong {
    font-size: .78rem;
    font-weight: 850;
}

.brand-text span {
    margin-top: 4px;

    font-size: .57rem;
    letter-spacing: .18em;
}


/* MOBILE */

@media (max-width: 600px) {

    .nav-container {
        min-height: 72px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .brand-logo img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px;
    }

    .brand {
        gap: 9px;
    }

    .brand-text strong {
        font-size: .65rem;
    }

    .brand-text span {
        font-size: .49rem;
        letter-spacing: .15em;
    }

    .main-nav {
        top: 72px;
    }

}



/* ========================================
   POLITEKNIK AL-ISLAM
   LARGE HEADER LOGO
======================================== */

.nav-container {
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;

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

    overflow: hidden;
}

.brand-logo img {
    display: block;

    width: 64px !important;
    height: 64px !important;

    max-width: 64px;

    object-fit: contain;
}

.brand-text strong {
    font-size: .78rem;
    font-weight: 850;
}

.brand-text span {
    margin-top: 4px;

    font-size: .57rem;
    letter-spacing: .18em;
}


/* MOBILE */

@media (max-width: 600px) {

    .nav-container {
        min-height: 72px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .brand-logo img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px;
    }

    .brand {
        gap: 9px;
    }

    .brand-text strong {
        font-size: .65rem;
    }

    .brand-text span {
        font-size: .49rem;
        letter-spacing: .15em;
    }

    .main-nav {
        top: 72px;
    }

}



/* =====================================================
   FINAL LOGO OVERRIDE
   FORCE 64x64
===================================================== */

.site-header .brand-logo {
    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;

    max-width: 64px !important;
    max-height: 64px !important;

    flex: 0 0 64px !important;

    padding: 0 !important;
    margin: 0 !important;

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

    overflow: visible !important;
}

.site-header .brand-logo img {
    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;

    max-width: 64px !important;
    max-height: 64px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    object-fit: contain !important;
}


/* HEADER HEIGHT */

.site-header .nav-container {
    min-height: 88px !important;
}


/* BRAND TEXT */

.site-header .brand {
    gap: 11px !important;
}

.site-header .brand-text strong {
    font-size: .80rem !important;
}

.site-header .brand-text span {
    font-size: .58rem !important;
}


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

@media (max-width: 600px) {

    .site-header .nav-container {
        min-height: 76px !important;
    }

    .site-header .brand-logo {
        width: 56px !important;
        height: 56px !important;

        min-width: 56px !important;
        min-height: 56px !important;

        max-width: 56px !important;
        max-height: 56px !important;

        flex-basis: 56px !important;
    }

    .site-header .brand-logo img {
        width: 56px !important;
        height: 56px !important;

        min-width: 56px !important;
        min-height: 56px !important;

        max-width: 56px !important;
        max-height: 56px !important;
    }

    .site-header .brand {
        gap: 9px !important;
    }

    .site-header .brand-text strong {
        font-size: .66rem !important;
    }

    .site-header .brand-text span {
        font-size: .50rem !important;
    }

    .site-header .main-nav {
        top: 76px !important;
    }

}



/* ========================================
   LOGO HEADER - FORCE 64x64
======================================== */

.site-header .brand-logo img {
    width: 64px !important;
    height: 64px !important;
    object-fit: fill !important;
}



/* ========================================
   LOGO HEADER - LARGE & PROPORTIONAL
======================================== */

.site-header .brand-logo {
    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;

    max-width: 64px !important;
    max-height: 64px !important;

    flex: 0 0 64px !important;

    overflow: visible !important;
}

.site-header .brand-logo img {
    width: 64px !important;
    height: auto !important;

    max-width: none !important;

    object-fit: contain !important;
}


/* MOBILE */

@media (max-width: 600px) {

    .site-header .brand-logo {
        width: 52px !important;
        height: 52px !important;

        min-width: 52px !important;
        min-height: 52px !important;

        max-width: 52px !important;
        max-height: 52px !important;

        flex-basis: 52px !important;
    }

    .site-header .brand-logo img {
        width: 52px !important;
        height: auto !important;
    }

}



/* ========================================
   REAL DUMMY PHOTOS
======================================== */

.hero-photo {
    position: relative;

    aspect-ratio: 1.12 / 1;

    overflow: hidden;

    border-radius: 30px;

    background: #dce8e4;

    box-shadow:
        0 28px 65px rgba(6,60,56,.15);
}

.hero-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.hero-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3,35,30,.58),
            transparent 45%
        );
}

.hero-photo-caption {
    position: absolute;

    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 22px;

    display: flex;
    flex-direction: column;

    color: white;
}

.hero-photo-caption strong {
    font-size: .9rem;
}

.hero-photo-caption span {
    margin-top: 2px;

    color: rgba(255,255,255,.72);

    font-size: .68rem;
}


/* ABOUT */

.about-photo {
    overflow: hidden;
    padding: 0;
}

.about-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* PROGRAM PHOTO */

.program-card {
    padding: 0;
    overflow: hidden;
}

.program-photo {
    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.program-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.program-card:hover .program-photo img {
    transform: scale(1.04);
}

.program-body {
    padding: 23px 25px 27px;
}


/* FACILITY PHOTO */

.facility-image {
    overflow: hidden;
    padding: 0;
}

.facility-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.04);
}


/* GALLERY */

.gallery-grid div {
    overflow: hidden;
    padding: 0;
}

.gallery-grid img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease,
        filter .3s ease;
}

.gallery-grid div:hover img {
    transform: scale(1.05);
    filter: brightness(.92);
}


/* NEWS */

.news-image {
    overflow: hidden;
    padding: 0;
}

.news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.04);
}


/* MOBILE */

@media (max-width: 600px) {

    .hero-photo {
        aspect-ratio: 1 / .92;
        border-radius: 23px;
    }

    .hero-photo-caption {
        left: 18px;
        right: 18px;
        bottom: 17px;
    }

    .hero-photo-caption strong {
        font-size: .78rem;
    }

    .hero-photo-caption span {
        font-size: .61rem;
    }

    .program-body {
        padding: 20px;
    }

}



/* ========================================
   PMB INFORMATION
======================================== */

.pmb-info {
    max-width: 680px;

    margin:
        -15px
        auto
        35px;

    padding:
        17px
        22px;

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

    gap: 15px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 15px;

    background:
        rgba(255,255,255,.045);

    font-size: .76rem;
}

.pmb-info strong {
    color: #fff;
}

.pmb-info span {
    color: rgba(255,255,255,.68);
}


@media (max-width: 600px) {

    .pmb-info {
        flex-direction: column;
        align-items: flex-start;

        margin-top: -5px;

        font-size: .70rem;
    }

}



/* ========================================
   HERO LOCAL SVG
======================================== */

.hero-photo {
    position: relative;

    width: 100%;
    aspect-ratio: 1.12 / 1;

    overflow: hidden;

    border-radius: 30px;

    background: #dce8e4;

    box-shadow:
        0 28px 65px rgba(6,60,56,.15);
}

.hero-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* HERO OVERLAY */

.hero-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(3,35,30,.58),
            rgba(3,35,30,0) 48%
        );
}


/* CAPTION */

.hero-photo-caption {
    position: absolute;

    z-index: 3;

    left: 25px;
    right: 25px;
    bottom: 22px;

    display: flex;
    flex-direction: column;

    color: #fff;
}

.hero-photo-caption strong {
    font-size: .9rem;
}

.hero-photo-caption span {
    margin-top: 3px;

    color: rgba(255,255,255,.72);

    font-size: .68rem;
}


/* MOBILE */

@media (max-width: 600px) {

    .hero-photo {
        aspect-ratio: 1 / .92;
        border-radius: 23px;
    }

    .hero-photo-caption {
        left: 18px;
        right: 18px;
        bottom: 17px;
    }

    .hero-photo-caption strong {
        font-size: .78rem;
    }

    .hero-photo-caption span {
        font-size: .61rem;
    }

}



/* ========================================
   PROGRAM STUDI
======================================== */

.program-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;

    border: 1px solid rgba(5,98,63,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

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

    box-shadow:
        0 18px 45px rgba(5,70,50,.12);
}

.program-photo {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.program-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.program-card:hover .program-photo img {
    transform: scale(1.035);
}

.program-body {
    padding: 24px 25px 27px;
}

.program-body > span {
    display: inline-block;

    padding: 5px 10px;

    border-radius: 999px;

    background: #e7f3ed;
    color: #087b4f;

    font-size: .63rem;
    font-weight: 800;
}

.program-body h3 {
    margin-top: 13px;
}

.program-body p {
    color: var(--muted);

    font-size: .78rem;
    line-height: 1.7;
}

.program-body a {
    display: inline-block;

    margin-top: 8px;

    color: #087b4f;

    font-size: .72rem;
    font-weight: 750;
}



/* ========================================
   PREMIUM GALLERY
======================================== */

.gallery-premium {
    display: grid;

    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: 250px 250px;

    gap: 14px;
}

.gallery-main {
    position: relative;

    grid-row: span 2;

    overflow: hidden;

    border-radius: 24px;

    background: #dcefe8;
}

.gallery-main img,
.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.gallery-main:hover img,
.gallery-item:hover img {
    transform: scale(1.045);
}


/* MAIN OVERLAY */

.gallery-overlay {
    position: absolute;

    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 23px;

    display: flex;
    flex-direction: column;

    color: #fff;
}

.gallery-overlay::before {
    content: "";

    position: absolute;

    z-index: -1;

    left: -25px;
    right: -25px;
    bottom: -23px;

    height: 170px;

    background:
        linear-gradient(
            to top,
            rgba(3,35,30,.72),
            transparent
        );
}

.gallery-overlay span {
    font-size: .62rem;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.gallery-overlay strong {
    max-width: 500px;

    margin-top: 6px;

    font-size: 1.15rem;
    line-height: 1.3;
}


/* SMALL ITEM */

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: #dcefe8;
}

.gallery-item span {
    position: absolute;

    left: 16px;
    bottom: 14px;

    z-index: 2;

    color: #fff;

    font-size: .72rem;
    font-weight: 750;

    text-shadow:
        0 2px 8px rgba(0,0,0,.3);
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3,35,30,.48),
            transparent 45%
        );
}


/* MOBILE */

@media (max-width: 700px) {

    .gallery-premium {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 180px 180px;
    }

    .gallery-main {
        grid-column: span 2;
        grid-row: auto;
    }

}

@media (max-width: 480px) {

    .gallery-premium {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 150px 150px;
        gap: 9px;
    }

    .gallery-main {
        border-radius: 19px;
    }

    .gallery-item {
        border-radius: 15px;
    }

    .gallery-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .gallery-overlay strong {
        font-size: .88rem;
    }

}



/* ========================================
   VIDEO PROFILE
======================================== */

.video-section {
    padding-top: 35px;
}

.video-block {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 55px;

    align-items: center;

    padding: 45px;

    border-radius: 30px;

    background: #07564f;

    overflow: hidden;
}

.video-content {
    color: #fff;
}

.video-content h2 {
    margin-top: 12px;

    color: #fff;

    font-size: clamp(1.8rem, 3vw, 2.7rem);

    line-height: 1.15;
}

.video-content p {
    margin-top: 18px;

    color: rgba(255,255,255,.72);

    line-height: 1.8;
}

.video-content .section-label {
    color: #f4c400;
}

.video-content .btn {
    margin-top: 20px;
}

.video-player {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 22px;

    background: #063f3a;

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);
}

.video-player img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 78px;
    height: 78px;

    transform: translate(-50%, -50%);

    border: 0;

    border-radius: 50%;

    background: #fff;

    color: #07564f;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(0,0,0,.2);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.video-play span {
    display: block;

    margin-left: 4px;

    font-size: 1.25rem;
}

.video-play:hover {
    transform:
        translate(-50%, -50%)
        scale(1.07);

    box-shadow:
        0 16px 35px rgba(0,0,0,.25);
}


/* MOBILE */

@media (max-width: 800px) {

    .video-block {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 28px;
    }

}

@media (max-width: 480px) {

    .video-block {
        padding: 22px;

        border-radius: 23px;
    }

    .video-player {
        border-radius: 17px;
    }

    .video-play {
        width: 62px;
        height: 62px;
    }

}



/* ========================================
   NEWS
======================================== */

.news-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.news-grid {
    display: grid;

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

    gap: 22px;
}

.news-card {
    overflow: hidden;

    border-radius: 22px;

    background: #fff;

    border: 1px solid rgba(5,98,63,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.news-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(5,70,50,.11);
}

.news-image {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.045);
}

.news-content {
    padding: 23px 24px 26px;
}

.news-content small {
    color: #087b4f;

    font-size: .64rem;
    font-weight: 750;
}

.news-content h3 {
    margin-top: 10px;

    font-size: 1.03rem;

    line-height: 1.4;
}

.news-content p {
    margin-top: 10px;

    color: var(--muted);

    font-size: .76rem;

    line-height: 1.7;
}

.news-content > a {
    display: inline-block;

    margin-top: 10px;

    color: #087b4f;

    font-size: .70rem;
    font-weight: 750;
}


/* MOBILE */

@media (max-width: 850px) {

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 11px);
    }

}

@media (max-width: 600px) {

    .news-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card:last-child {
        grid-column: auto;
        max-width: none;
    }

}



/* ========================================
   NEWS
======================================== */

.news-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.news-grid {
    display: grid;

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

    gap: 22px;
}

.news-card {
    overflow: hidden;

    border-radius: 22px;

    background: #fff;

    border: 1px solid rgba(5,98,63,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.news-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(5,70,50,.11);
}

.news-image {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.045);
}

.news-content {
    padding: 23px 24px 26px;
}

.news-content small {
    color: #087b4f;

    font-size: .64rem;
    font-weight: 750;
}

.news-content h3 {
    margin-top: 10px;

    font-size: 1.03rem;

    line-height: 1.4;
}

.news-content p {
    margin-top: 10px;

    color: var(--muted);

    font-size: .76rem;

    line-height: 1.7;
}

.news-content > a {
    display: inline-block;

    margin-top: 10px;

    color: #087b4f;

    font-size: .70rem;
    font-weight: 750;
}


/* MOBILE */

@media (max-width: 850px) {

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 11px);
    }

}

@media (max-width: 600px) {

    .news-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card:last-child {
        grid-column: auto;
        max-width: none;
    }

}



/* ========================================
   PMB CTA
======================================== */

.pmb-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

.pmb-box {
    position: relative;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 55px;

    padding: 55px;

    overflow: hidden;

    border-radius: 32px;

    background: #07564f;
}

.pmb-box::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -130px;
    top: -150px;

    border-radius: 50%;

    background: #f4c400;

    opacity: .13;
}

.pmb-box::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -130px;
    bottom: -150px;

    border-radius: 50%;

    background: #fff;

    opacity: .04;
}

.pmb-content {
    position: relative;
    z-index: 2;

    color: #fff;
}

.pmb-content .section-label {
    color: #f4c400;
}

.pmb-content h2 {
    max-width: 560px;

    margin-top: 13px;

    color: #fff;

    font-size: clamp(2rem, 4vw, 3.2rem);

    line-height: 1.08;
}

.pmb-content > p {
    max-width: 570px;

    margin-top: 18px;

    color: rgba(255,255,255,.72);

    line-height: 1.8;
}

.pmb-period {
    display: flex;
    flex-direction: column;

    margin-top: 27px;
    padding-left: 18px;

    border-left: 3px solid #f4c400;
}

.pmb-period span {
    color: rgba(255,255,255,.62);

    font-size: .65rem;
    font-weight: 700;

    letter-spacing: .12em;
}

.pmb-period strong {
    margin-top: 5px;

    font-size: 1rem;
}

.pmb-period small {
    margin-top: 3px;

    color: rgba(255,255,255,.65);

    font-size: .70rem;
}

.pmb-actions {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.btn-light {
    color: #07564f;
    background: #fff;
}

.pmb-side {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 10px;
}

.pmb-step {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 15px 17px;

    border-radius: 15px;

    background: rgba(255,255,255,.065);

    border: 1px solid rgba(255,255,255,.07);
}

.pmb-step > span {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

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

    border-radius: 50%;

    background: #f4c400;
    color: #07564f;

    font-size: .62rem;
    font-weight: 850;
}

.pmb-step strong {
    display: block;

    color: #fff;

    font-size: .76rem;
}

.pmb-step small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.55);

    font-size: .62rem;
}


/* MOBILE */

@media (max-width: 800px) {

    .pmb-box {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px;
    }

}

@media (max-width: 480px) {

    .pmb-box {
        padding: 24px;

        border-radius: 24px;
    }

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

    .pmb-actions .btn {
        width: 100%;

        text-align: center;
    }

}



/* ========================================
   TUITION
======================================== */

.tuition-grid {
    display: grid;

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

    gap: 18px;
}

.tuition-card {
    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border: 1px solid rgba(5,98,63,.09);
}

.tuition-head {
    padding: 24px 24px 20px;

    background: #f4f8f6;
}

.tuition-head span {
    color: #087b4f;

    font-size: .60rem;
    font-weight: 800;

    letter-spacing: .12em;
}

.tuition-head h3 {
    margin-top: 9px;

    font-size: 1rem;
}

.tuition-body {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 20px 24px 23px;
}

.tuition-body small {
    display: block;

    color: var(--muted);

    font-size: .62rem;
}

.tuition-body strong {
    display: block;

    margin-top: 4px;

    color: #07564f;

    font-size: .95rem;
}

.tuition-body a {
    color: #087b4f;

    white-space: nowrap;

    font-size: .68rem;
    font-weight: 750;
}


/* MOBILE */

@media (max-width: 800px) {

    .tuition-grid {
        grid-template-columns: 1fr;
    }

}



/* ========================================
   SCROLL TO TOP
======================================== */

.scroll-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    width: 44px;
    height: 44px;

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

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

    background: #07564f;
    color: #fff;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    box-shadow:
        0 10px 28px rgba(0,0,0,.16);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease;
}

.scroll-top span {
    font-size: 1.15rem;
    line-height: 1;

    transform: translateY(-1px);
}

.scroll-top:hover {
    background: #087b4f;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

@media (max-width: 600px) {

    .scroll-top {
        right: 16px;
        bottom: 16px;

        width: 40px;
        height: 40px;
    }

}


/* ========================================
   SCROLL TO TOP - FINAL
======================================== */

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;

    z-index: 99999;

    width: 46px;
    height: 46px;

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

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #07564f;
    color: #fff;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    box-shadow:
        0 10px 28px rgba(0,0,0,.16);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease;
}

.scroll-top span {
    display: block;

    font-size: 21px;
    font-weight: 700;

    line-height: 1;

    transform: translateY(-1px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #087b4f;
}

@media (max-width: 600px) {

    .scroll-top {
        right: 16px;
        bottom: 16px;

        width: 42px;
        height: 42px;
    }

    .scroll-top span {
        font-size: 19px;
    }

}

