/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */

:root {
    --black: #050505;
    --ink: #111;
    --white: #fff;
    --paper: #f4f2ed;

    --gold: #f5a800;
    --navy: #071b3b;
    --muted: #737373;
    --line: #d8d5ce;

    --ease: cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   02. GLOBAL RESET & BASE STYLES
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body:has(.lightbox.open) {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

section {
    scroll-margin-top: 100px;
}


/* =========================================================
   03. REUSABLE SECTION STYLES
   ========================================================= */

.section {
    padding: 120px clamp(22px, 5vw, 80px);
}

.section-label {
    font-size: 11px;
    letter-spacing: .16em;
    font-weight: 800;
    color: #666;
    margin-bottom: 48px;
}

.section-label.yellow,
.yellow {
    color: var(--gold);
}


/* =========================================================
   04. HEADER / NAVIGATION
   ========================================================= */

/* =========================================================
   NAVBAR — FINAL
   ========================================================= */

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
}


/* =========================================================
   NAVBAR CONTAINER
   ========================================================= */

.nav-shell {
    position: relative;

    width: min(1360px, calc(100% - 48px));
    height: 72px;

    margin: 0 auto;

    background: #080808;

    border: 1px solid #303030;
    border-radius: 8px;

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

    pointer-events: auto;
}


/* =========================================================
   BRAND — LEFT
   ========================================================= */

.brand {
    position: absolute;

    left: 24px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;

    z-index: 10;
}

.brand img {
    width: 42px;
    height: 42px;

    object-fit: contain;

    flex-shrink: 0;

    border-radius: 5px;
}

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

    justify-content: center;

    line-height: 1;
}

.brand-text span {
    color: #d5d5d5;

    font-size: 11px;
    font-weight: 500;

    margin-bottom: 4px;
}

.brand-text b {
    color: #fff;

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

    line-height: .9;

    letter-spacing: .03em;
}


/* =========================================================
   NAV LINKS — TRUE CENTER
   ========================================================= */

.nav-links {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;

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

    gap: 36px;

    pointer-events: none;

    z-index: 5;
}


/* Individual navigation links */

.nav-links > a:not(.nav-cta) {
    position: relative;

    display: flex;
    align-items: center;

    height: 100%;

    color: #c9c9c9;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    pointer-events: auto;

    transition: color .2s ease;
}

.nav-links > a:not(.nav-cta):hover {
    color: #fff;
}


/* Underline */

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

    position: absolute;

    left: 0;
    right: 0;
    bottom: 17px;

    height: 1px;

    background: var(--gold);

    transform: scaleX(0);

    transition: transform .2s ease;
}

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


/* =========================================================
   CTA — FORCE RIGHT
   ========================================================= */

/*
   THIS IS THE IMPORTANT PART.

   Even if .nav-cta is currently INSIDE .nav-links,
   this forces it to the right side of .nav-shell.
*/

.nav-links > .nav-cta,
.nav-cta {
    position: absolute !important;

    top: 50%;
    right: 12px;

    transform: translateY(-50%);

    width: auto;

    height: 48px;

    padding: 0 22px;

    display: inline-flex;

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

    gap: 8px;

    background: var(--gold) !important;

    color: #080808 !important;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    pointer-events: auto;

    z-index: 20;
}


/* CTA hover */

.nav-links > .nav-cta:hover,
.nav-cta:hover {
    transform: translateY(-50%) !important;

    background: #ffb300 !important;

    color: #080808 !important;
}


/* CTA arrow */

.nav-cta span {
    margin-left: 2px;

    color: #080808 !important;

    font-size: 16px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    position: absolute;

    top: 50%;
    right: 12px;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    background: transparent;

    border: 1px solid #353535;
    border-radius: 6px;

    cursor: pointer;

    z-index: 30;
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 1px;

    margin: 5px auto;

    background: #fff;
}


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

@media (max-width: 1050px) {

    .nav-shell {
        width: calc(100% - 32px);
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links > a:not(.nav-cta) {
        font-size: 13px;
    }

    .nav-cta {
        padding: 0 17px;
    }
}


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

@media (max-width: 800px) {

    .site-header {
        top: 12px;
    }

    .nav-shell {
        width: calc(100% - 20px);
        height: 64px;
    }


    /* Brand stays left */

    .brand {
        left: 14px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .brand-text b {
        font-size: 16px;
    }


    /* Hide desktop links */

    .nav-links {
        display: none;
    }


    /* Hide CTA */

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


    /* Show hamburger */

    .menu-toggle {
        display: block;
    }
}


/* =========================================================
   MOBILE OPEN MENU
   ========================================================= */

@media (max-width: 800px) {

    .nav-links.mobile-open {
        position: absolute;

        top: calc(100% + 10px);
        left: 0;

        width: 100%;
        height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding: 8px;

        background: #080808;

        border: 1px solid #303030;

        border-radius: 8px;

        box-shadow: 0 18px 40px rgba(0, 0, 0, .3);

        pointer-events: auto;
    }

    .nav-links.mobile-open > a:not(.nav-cta) {
        height: 48px;

        padding: 0 14px;

        border-bottom: 1px solid #252525;

        color: #d5d5d5;
    }

    .nav-links.mobile-open > .nav-cta {
        position: static !important;

        width: 100%;

        height: 48px;

        margin-top: 8px;

        transform: none !important;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .nav-shell {
        width: calc(100% - 14px);
        height: 60px;
    }

    .brand {
        left: 10px;
        gap: 8px;
    }

    .brand img {
        width: 35px;
        height: 35px;
    }

    .brand-text span {
        font-size: 8px;
    }

    .brand-text b {
        font-size: 15px;
    }

    .menu-toggle {
        right: 8px;

        width: 38px;
        height: 38px;
    }
}
/* =========================================================
   05. HERO SECTION
   ========================================================= */

.hero {
    min-height: 100svh;

    position: relative;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #000;
    color: #fff;
}

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .83) 0%,
            rgba(0, 0, 0, .56) 40%,
            rgba(0, 0, 0, .22) 75%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .72),
            transparent 55%
        );
}

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

    width: min(900px, 100%);

    padding:
        180px
        clamp(22px, 7vw, 110px)
        85px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .17em;

    margin: 0 0 25px;
}

.hero h1 {
    font-size: clamp(64px, 10vw, 145px);
    line-height: .82;
    letter-spacing: -.065em;
    font-weight: 900;

    margin: 0 0 34px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-copy {
    max-width: 560px;

    color: #e2e2e2;

    font-size: 17px;
    line-height: 1.6;

    margin: 0 0 34px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 20px;

    border-radius: 999px;

    font-weight: 800;
    font-size: 13px;

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

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

.button-light {
    background: #fff;
    color: #111;
}

.button-dark {
    background: #111;
    color: #ece8e8;
}

.text-link {
    font-size: 13px;
    font-weight: 800;
}

.text-link.light {
    color: #f5f2f2;
}

.text-link span {
    margin-left: 7px;
    color: var(--gold);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 75px;

    color: #aeacac;

    font-size: 9px;
    letter-spacing: .16em;
    font-weight: 800;
}

.hero-meta i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--gold);
}

.scroll-note {
    position: absolute;

    right: 34px;
    bottom: 34px;

    z-index: 3;

    font-size: 9px;
    letter-spacing: .16em;

    color: #ddd;

    writing-mode: vertical-rl;
}

.scroll-note span {
    color: var(--gold);
    margin-top: 8px;
}


/* =========================================================
   06. INTRO SECTION
   ========================================================= */

.intro {
    background: var(--paper);
}

.intro-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 8vw;

    align-items: end;
}

.intro h2,
.audience h2,
.activities h2,
.event h2,
.gallery h2,
.team h2,
.join h2 {
    font-size: clamp(54px, 7vw, 105px);
    line-height: .92;
    letter-spacing: -.055em;
    font-weight: 900;

    margin: 0;
}

.intro h2 span,
.audience h2 span,
.activities h2 span,
.event h2 span,
.gallery h2 span,
.team h2 span,
.join h2 span {
    color: var(--gold);
}

.intro-copy {
    max-width: 540px;
}

.intro-copy p {
    font-size: 19px;
    line-height: 1.55;

    margin: 0 0 22px;

    color: #333;
}

.established {
    display: flex;
    align-items: center;
    gap: 20px;

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

    padding-top: 20px;
    margin-top: 36px;
}

.established strong {
    font-size: 45px;
    line-height: 1;
}

.established span {
    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .08em;

    color: #777;
}

.image-strip {
    display: grid;

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

    gap: 12px;

    margin-top: 75px;
}

.image-strip img {
    width: 100%;
    height: 360px;

    object-fit: cover;

    filter: saturate(.85);
}

.image-strip img:nth-child(2) {
    margin-top: 50px;
    height: 310px;
}


/* =========================================================
   07. VISION SECTION
   ========================================================= */

.section-dark {
    background: var(--black);
    color: #fff;

    padding: 135px clamp(22px, 5vw, 80px);
}

.vision-inner {
    max-width: 1180px;
    margin: auto;
}

.vision h2,
.manifesto h2 {
    font-size: clamp(70px, 12vw, 170px);
    line-height: .82;
    letter-spacing: -.07em;
    font-weight: 900;

    margin: 0;
}

.vision h2 span {
    color: var(--gold);
}

.vision-copy {
    max-width: 570px;

    font-size: 20px;
    color: #bbb;

    margin: 55px 0 70px;
}

.vision-line {
    display: grid;

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

    align-items: center;

    gap: 18px;

    font-size: 10px;
    letter-spacing: .15em;
    font-weight: 800;

    color: #aaa;
}

.vision-line b {
    height: 1px;
    background: #333;
}


/* =========================================================
   08. AUDIENCE / ACTIVITIES HEADERS
   ========================================================= */

.audience-head,
.activities-head,
.gallery-head,
.team-head {
    display: grid;

    grid-template-columns: 1fr .65fr;

    gap: 10vw;

    align-items: end;

    margin-bottom: 75px;
}

.audience-head p,
.activities-head p,
.gallery-head p,
.team-head p {
    max-width: 500px;

    font-size: 18px;
    line-height: 1.55;

    color: #555;
}


/* =========================================================
   09. AUDIENCE CARDS
   ========================================================= */

.simple-grid {
    display: grid;

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

    border-top: 1px solid var(--line);
}

.simple-card {
    min-height: 260px;

    padding: 35px 30px 20px 0;

    border-right: 1px solid var(--line);
}

.simple-card:not(:first-child) {
    padding-left: 30px;
}

.simple-card:last-child {
    border-right: 0;
}

.simple-card span {
    font-size: 10px;

    color: #999;

    letter-spacing: .12em;
}

.simple-card h3 {
    font-size: 28px;

    margin: 70px 0 12px;
}

.simple-card p {
    max-width: 290px;

    color: #666;
}


/* =========================================================
   10. ACTIVITIES SECTION
   ========================================================= */

.activities {
    background: #111;
    color: #fff;
}

.activities .section-label {
    color: #888;
}

.activities-head p {
    color: #aaa;
}

.activity-list {
    display: grid;

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

    border-top: 1px solid #333;
}

.activity {
    min-height: 150px;

    padding: 24px 24px 24px 0;

    border-bottom: 1px solid #333;
    border-right: 1px solid #333;

    display: grid;

    grid-template-columns: 42px 1fr;

    align-content: center;
}

.activity:nth-child(3n) {
    border-right: 0;
    padding-left: 24px;
}

.activity:nth-child(3n + 2) {
    padding-left: 24px;
}

.activity span {
    font-size: 10px;
    color: var(--gold);
}

.activity strong {
    font-size: 20px;
}

.activity small {
    grid-column: 2;

    color: #777;

    font-size: 11px;

    margin-top: 5px;
}

.planned-note {
    text-align: center;

    color: #777;

    font-size: 9px;
    letter-spacing: .16em;

    margin: 45px 0 0;
}


/* =========================================================
   11. EVENT SECTION
   ========================================================= */

.event {
    background: #fff;
}

.event-grid {
    display: grid;

    grid-template-columns: minmax(280px, .75fr) 1.25fr;

    gap: clamp(40px, 8vw, 120px);

    align-items: start;
}

.event-poster {
    background: #f3f0e9;
    padding: 12px;
}

.event-poster img {
    width: 100%;
    height: auto;
}

.event-kicker {
    font-size: 11px;
    font-weight: 900;

    letter-spacing: .18em;

    color: var(--gold);

    margin: 0 0 18px;
}

.event-info h2 {
    font-size: clamp(46px, 5vw, 82px);
}

.event-desc {
    max-width: 650px;

    font-size: 18px;
    color: #555;

    margin: 30px 0 40px;
}

.event-details {
    display: grid;

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

    padding: 26px;

    background: #080808;
    color: #fff;

    border-radius: 3px;
}

.event-details div {
    padding: 0 20px;

    border-right: 1px solid #444;
}

.event-details div:first-child {
    padding-left: 0;
}

.event-details div:last-child {
    border: 0;
}

.event-details small,
.speaker small {
    display: block;

    color: #888;

    font-size: 9px;
    letter-spacing: .16em;

    margin-bottom: 8px;
}

.event-details strong {
    display: block;

    color: var(--gold);

    font-size: 18px;
}

.event-details span {
    display: block;

    font-size: 9px;
    color: #bbb;

    margin-top: 5px;
}


/* =========================================================
   12. SPEAKER
   ========================================================= */

.speaker {
    display: flex;
    align-items: center;

    gap: 28px;

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

    margin-top: 35px;
    padding-top: 30px;
}

.speaker-photo {
    width: 150px;
    height: 150px;

    overflow: hidden;

    background: #eee;

    flex: 0 0 auto;
}

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

    object-fit: contain;
}

.speaker h3 {
    font-size: 27px;

    margin: 0 0 8px;
}

.speaker p {
    color: #666;

    font-size: 12px;
    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   13. GALLERY
   ========================================================= */

/* =========================================================
   GALLERY — 2 × 2 DESKTOP / TABLET
   ========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    width: 100%;
}


/* Every gallery image uses the same clean grid cell */

.gallery-item,
.gallery-item.wide,
.gallery-item.tall {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    min-width: 0;
    min-height: 0;

    grid-column: auto;
    grid-row: auto;

    border: 0;
    padding: 0;

    overflow: hidden;

    background-color: #ddd;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}


/* Gallery image */

.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s var(--ease),
        filter .5s ease;
}


/* Gallery hover */

.gallery-item:hover img {
    transform: scale(1.03);

    filter: brightness(.82);
}


/* =========================================================
   PHONE — 1 × 4
   ========================================================= */

@media (max-width: 620px) {

    .gallery-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .gallery-item,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;

        width: 100%;

        aspect-ratio: 4 / 3;
    }
}


   14. LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;
    inset: 0;

    z-index: 100;

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

    padding: 40px;

    background: rgba(0, 0, 0, .94);
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 88vh;

    object-fit: contain;
}

.lightbox button {
    position: absolute;

    border: 0;
    background: none;

    color: #fff;

    cursor: pointer;
}

.lightbox-close {
    top: 18px;
    right: 28px;

    font-size: 42px;
}

.lightbox-prev,
.lightbox-next {
    display: none !important;
}


/* =========================================================
   15. TEAM SECTION
   ========================================================= */

.team {
    background: #fff;
}

.team-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.faculty-card {
    min-height: 390px;

    padding: 45px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #111;
    color: #fff;
}

.faculty-card span,
.student-card span {
    font-size: 9px;

    letter-spacing: .16em;

    color: #888;
}

.faculty-card h3 {
    font-size: 46px;
    line-height: 1;

    margin: 18px 0;
}

.faculty-card p {
    font-size: 12px;
    color: #aaa;
}

.card-line {
    width: 60px;
    height: 3px;

    background: var(--gold);

    margin: 10px 0;
}

.student-team {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.student-card {
    position: relative;

    min-height: 390px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

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

.student-card strong {
    position: absolute;

    top: 10px;
    right: 15px;

    z-index: 0;

    font-size: 180px;
    line-height: 1;

    color: #efede7;
}

.student-card h3,
.student-card p,
.student-card span {
    position: relative;
    z-index: 1;
}

.student-card h3 {
    font-size: 29px;
    line-height: 1.05;

    margin: 14px 0 5px;
}

.student-card p {
    margin: 0;

    color: #777;

    font-size: 12px;
}


/* =========================================================
   16. MANIFESTO
   ========================================================= */

.manifesto {
    padding: 150px 22px;

    text-align: center;
}

.manifesto-inner {
    max-width: 900px;
    margin: auto;
}

.manifesto h2 span {
    color: var(--gold);
}

.manifesto-inner > p:last-child {
    max-width: 500px;

    margin: 45px auto 0;

    color: #aaa;

    font-size: 17px;
}


/* =========================================================
   17. JOIN / CTA
   ========================================================= */

.join {
    background: var(--gold);
}

.join-box {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns: 1fr .6fr;

    gap: 10vw;

    align-items: end;
}

.join .section-label {
    color: #6c4a00;

    margin-bottom: 35px;
}

.join-copy p {
    max-width: 460px;

    font-size: 19px;
    line-height: 1.55;

    margin: 0 0 30px;
}


/* =========================================================
/* =========================================================
   18. FOOTER
   Compact Editorial Footer
   ========================================================= */

.footer {
    background: #070707;
    color: #fff;

    padding:
        48px
        clamp(22px, 5vw, 80px)
        20px;
}


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

.footer-top {
    display: flex;

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

    gap: 40px;

    padding-bottom: 38px;

    border-bottom: 1px solid #2a2a2a;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 16px;
}

.footer-brand img {
    width: 62px;
    height: 62px;

    object-fit: contain;

    flex-shrink: 0;
}

.footer-brand h3 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 19px;
    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer-brand p {
    margin: 0;

    color: #777;

    font-size: 10px;
    line-height: 1.5;
}


/* University mark, if present */

.footer-university {
    width: 220px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   FOOTER NAVIGATION + JOIN
   ========================================================= */

.footer-links {
    display: grid;

    grid-template-columns: minmax(0, 1fr) auto;

    align-items: center;

    gap: 40px;

    padding: 30px 0;
}


/* Navigation group */

.footer-links > div:first-child {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px 30px;
}


/* Hide the old section label */

.footer-links > div:first-child > span {
    display: none;
}


/* Navigation links */

.footer-links > div:first-child a {
    width: auto;

    color: #bdbdbd;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

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

.footer-links > div:first-child a:hover {
    color: #fff;

    transform: translateY(-1px);
}


/* Join group */

.footer-links > div:last-child {
    display: flex;

    align-items: center;

    justify-content: flex-end;
}


/* Hide old JOIN label */

.footer-links > div:last-child > span {
    display: none;
}


/* Registration link becomes CTA */

.footer-links > div:last-child a {
    width: auto;

    display: inline-flex;

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

    min-height: 46px;

    padding: 0 20px;

    background: var(--gold);

    color: #080808;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

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

.footer-links > div:last-child a:hover {
    color: #080808;

    background: #ffb300;

    transform: translateY(-1px);
}


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

.footer-bottom {
    display: flex;

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

    gap: 20px;

    padding-top: 18px;

    border-top: 1px solid #2a2a2a;

    color: #666;

    font-size: 9px;

    letter-spacing: .08em;
}


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

@media (max-width: 900px) {

    .footer {
        padding-top: 42px;
    }

    .footer-links {
        gap: 28px;
    }

    .footer-links > div:first-child {
        gap: 10px 22px;
    }

    .footer-university {
        width: 190px;
    }
}


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

@media (max-width: 620px) {

    .footer {
        padding:
            38px
            20px
            18px;
    }


    .footer-top {
        align-items: flex-start;

        padding-bottom: 30px;
    }


    .footer-brand {
        gap: 12px;
    }


    .footer-brand img {
        width: 52px;
        height: 52px;
    }


    .footer-brand h3 {
        font-size: 16px;
    }


    .footer-brand p {
        font-size: 9px;
    }


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

        gap: 24px;

        padding: 24px 0;
    }


    .footer-links > div:first-child {
        align-items: flex-start;

        gap: 14px 22px;
    }


    .footer-links > div:first-child a {
        font-size: 12px;
    }


    .footer-links > div:last-child {
        justify-content: flex-start;
    }


    .footer-links > div:last-child a {
        min-height: 44px;

        padding: 0 18px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

        padding-top: 16px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .footer-brand h3 {
        font-size: 14px;
    }

    .footer-brand p {
        font-size: 8px;
    }

    .footer-links > div:first-child {
        gap: 12px 18px;
    }
}


   19. REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity .8s var(--ease),
        transform .8s var(--ease);
}

.reveal.visible {
    opacity: 1;

    transform: none;
}


/* =========================================================
   20. TABLET RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    /* Navigation */
    .nav-links {
        gap: 14px;
    }

    .nav-links > a:not(.nav-cta) {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.mobile-open {
        position: absolute;

        top: 60px;
        left: 0;
        right: 0;

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

        padding: 16px;

        background: rgba(8, 8, 8, .94);

        backdrop-filter: blur(20px);

        border: 1px solid #333;

        border-radius: 24px;
    }

    .nav-links.mobile-open > a:not(.nav-cta) {
        display: block;

        padding: 12px;
    }

    .nav-links.mobile-open .nav-cta {
        text-align: center;
    }


    /* Intro / Section Headers */
    .intro-grid,
    .audience-head,
    .activities-head,
    .gallery-head,
    .team-head,
    .join-box {
        grid-template-columns: 1fr;
    }


    /* Image Strip */
    .image-strip {
        grid-template-columns: 1fr 1fr;
    }

    .image-strip img:nth-child(3) {
        display: none;
    }


    /* Event */
    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-poster {
        max-width: 520px;
    }


    /* Activities */
    .activity-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity:nth-child(3n) {
        border-right: 1px solid #333;
        padding-left: 0;
    }

    .activity:nth-child(2n) {
        border-right: 0;
        padding-left: 24px;
    }


    /* Team */
    .team-layout {
        grid-template-columns: 1fr;
    }


}


/* =========================================================
   21. MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 620px) {

    /* Sections */
    .section,
    .section-dark {
        padding: 85px 20px;
    }


    /* Header */
    .site-header {
        top: 12px;
    }

    .nav-shell {
        width: calc(100% - 20px);
    }


    /* Hero */
    .hero-content {
        padding: 150px 22px 60px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero-copy {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-meta {
        margin-top: 50px;

        gap: 8px;

        font-size: 7px;
    }

    .scroll-note {
        display: none;
    }


    /* Image Strip */
    .image-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .image-strip img,
    .image-strip img:nth-child(2) {
        height: 280px;
        margin: 0;
    }


    /* Audience Cards */
    .simple-grid {
        grid-template-columns: 1fr;
    }

    .simple-card,
    .simple-card:not(:first-child) {
        min-height: 0;

        padding: 28px 0;

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

    .simple-card h3 {
        margin-top: 40px;
    }


    /* Activities */
    .activity-list {
        grid-template-columns: 1fr;
    }

    .activity,
    .activity:nth-child(2n),
    .activity:nth-child(3n) {
        padding: 24px 0;

        border-right: 0;
    }


    /* Event Details */
    .event-details {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .event-details div,
    .event-details div:first-child {
        padding:
            0 0 18px;

        border-right: 0;
        border-bottom: 1px solid #333;
    }

    .event-details div:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }


    /* Speaker */
    .speaker {
        align-items: flex-start;

        flex-direction: column;
    }


    /* Student Team */
    .student-team {
        grid-template-columns: 1fr;
    }

    .faculty-card,
    .student-card {
        min-height: 300px;
    }


    /* Join */
    .join-box {
        gap: 45px;
    }
}
/* Remove Lightbox navigation and close controls */
.lightbox-prev,
.lightbox-next,
.lightbox-close {
    display: none !important;
}