:root {
    --forest: #4a4a4a;
    --forest-mid: #5a5a5a;
    --sage: #8a8a8a;
    /* Aliases used by inner pages */
    --dark: #4a4a4a;
    --dark-mid: #5a5a5a;
    --mid: #8a8a8a;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --charcoal: #2a2a2a;
    --mid-grey: #6b6b6b;
    --light-grey: #e8e4dc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ─── SITE HEADER + TOPBAR ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.topbar {
    background: #1a1a1a;
    padding: 0.55rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-item:hover {
    color: var(--gold-light);
}

.topbar-item svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    opacity: 0.7;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-social {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.topbar-social:hover {
    color: var(--gold-light);
}

.topbar-social svg {
    width: 13px;
    height: 13px;
}

/* ─── NAV ─── */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 4rem;
    background: rgba(60, 60, 60, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: opacity 0.3s;
}

.nav-logo:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--forest) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #3a3a3a;
    min-width: 220px;
    border-top: 2px solid var(--gold);
    padding: 0.5rem 0;
    z-index: 200;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75) !important;
    letter-spacing: 0.08em;
}

.dropdown-menu a:hover {
    color: var(--gold-light) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* ─── HAMBURGER ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    transform-origin: center;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
    display: none;
    background: #2a2a2a;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1.5rem 1.5rem 2rem;
    overflow-y: auto;
    max-height: calc(100vh - 75px);
}

.site-header.nav-open .mobile-nav {
    display: block;
}

.mobile-nav > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav > ul > li > a {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav > ul > li > a:hover {
    color: var(--gold-light);
}

.mobile-nav-heading {
    display: block;
    padding: 0.9rem 0 0.5rem;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mobile-nav .sub-links {
    list-style: none;
    padding: 0 0 1rem 0.6rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav .sub-links a {
    display: block;
    padding: 0.45rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.mobile-nav .sub-links a:hover {
    color: var(--gold-light);
}

.mobile-nav-cta {
    display: block;
    text-align: center;
    padding: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: url("../images/bg.jpg") center center / cover no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 4rem;
    padding-top: 130px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-tag::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: var(--gold);
    color: #4a4a4a;
    padding: 1rem 2rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 0;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-ghost:hover {
    color: #fff;
    border-color: #fff;
}

/* Hero Right - Stats Panel */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    padding-left: 3rem;
}

.stats-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
}

.stats-panel-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.stat-value {
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}

.stat-value span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-left: 0.3rem;
    font-family: "Inter", sans-serif;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2s ease infinite;
}

.hero-scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.4),
        transparent
    );
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ─── MISSION STRIP ─── */
.mission-strip {
    background: var(--gold);
    padding: 1.4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.mission-strip p {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #4a4a4a;
    text-align: center;
}

/* ─── ABOUT ─── */
.section {
    padding: 7rem 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 500;
    color: #8a8a8a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: #8a8a8a;
}

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

.about-text h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.about-text h2 em {
    font-style: italic;
    color: #8a8a8a;
}

.about-text p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--mid-grey);
    margin-bottom: 1.2rem;
}

.about-text p strong {
    color: var(--charcoal);
    font-weight: 500;
}

.about-highlights {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highlight-card {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.2rem;
    border-radius: 0 3px 3px 0;
}

.highlight-card .num {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1;
}

.highlight-card .desc {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--mid-grey);
    margin-top: 0.3rem;
}

.about-visual {
    position: relative;
}

.visual-box {
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    border-radius: 4px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.visual-box::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-size: 12rem;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
}

.testimonial-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.testimonial-attr {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.visual-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
}

/* ─── PROGRAMS ─── */
.programs {
    background: var(--cream);
    padding: 7rem 4rem;
}

.programs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.programs-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #4a4a4a;
    max-width: 420px;
    line-height: 1.2;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--light-grey);
    border: 1.5px solid var(--light-grey);
    border-radius: 4px;
    overflow: hidden;
}

.program-card {
    background: var(--warm-white);
    padding: 2.5rem;
    transition: all 0.35s;
    cursor: pointer;
}

.program-card:hover {
    background: #4a4a4a;
}

.program-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid #aaaaaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.35s;
    font-size: 1.1rem;
}

.program-card:hover .program-icon {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.program-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    transition: color 0.35s;
}

.program-card:hover h3 {
    color: #fff;
}

.program-card p {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--mid-grey);
    transition: color 0.35s;
}

.program-card:hover p {
    color: rgba(255, 255, 255, 0.65);
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.35s;
}

.program-card:hover .program-link {
    color: var(--gold-light);
}

/* ─── IMPACT ─── */
.impact-section {
    padding: 7rem 4rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.impact-intro h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.impact-intro p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--mid-grey);
    margin-bottom: 2rem;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #4a4a4a;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
}

.report-btn:hover {
    background: #5a5a5a;
}

.impact-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.data-card {
    padding: 2rem;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.3s,
        transform 0.3s;
}

.data-card:hover {
    border-color: #8a8a8a;
    transform: translateY(-4px);
}

.data-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #888888);
    opacity: 0;
    transition: opacity 0.3s;
}

.data-card:hover::before {
    opacity: 1;
}

.data-num {
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.data-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--mid-grey);
}

.data-tag {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a8a8a;
    background: rgba(90, 140, 114, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

/* ─── RESEARCH ─── */
.research {
    background: #4a4a4a;
    padding: 7rem 4rem;
}

.research-header {
    margin-bottom: 4rem;
}

.research-header .section-label {
    color: var(--gold-light);
}

.research-header .section-label::before {
    background: var(--gold-light);
}

.research-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

.research-header h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.research-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.research-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem 2.5rem;
    border-left: 2px solid rgba(201, 168, 76, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.research-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--gold);
}

.research-item-left {
    flex: 1;
}

.research-num {
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.research-item h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
}

.research-item-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.research-tag {
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.research-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.research-item:hover .research-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: #4a4a4a;
}

/* ─── FOUNDER ─── */
.founder {
    padding: 7rem 4rem;
    background: var(--cream);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.badge-text {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.founder-text h2 {
    font-family: "Poppins", sans-serif;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.2;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.founder-text p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid-grey);
    margin-bottom: 1.2rem;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 400;
}

.credential::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.founder-portrait {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    border-radius: 4px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portrait-caption {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    padding-top: 1.5rem;
}

.portrait-name {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
}

.portrait-title {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

/* ─── PARTNERS CTA ─── */
.partners-cta {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partners-cta h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
}

.partners-cta h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-right p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gold);
    color: #4a4a4a;
    padding: 0.95rem 2rem;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.95rem 2rem;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    border-color: #fff;
    color: #fff;
}

/* ─── FOOTER ─── */
footer {
    background: #3a3a3a;
    padding: 4rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 44px;
    width: auto;
    opacity: 0.85;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-col ul a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.reg-tag {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

/* Page Hero (About/Programs/etc) */
.page-hero {
    padding: 11.5rem 4rem 5rem;
    background: linear-gradient(160deg, #2a2a2a 0%, #4a4a4a 60%, #5a5a5a 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-tag {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.page-hero-tag::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.page-hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: 3.8rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    position: relative;
}

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

.page-hero p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.8;
    position: relative;
}

/* Section Alt */
.section-alt {
    padding: 6rem 4rem;
    background: var(--cream);
}

.section-dark {
    padding: 6rem 4rem;
    background: #4a4a4a;
}

/* Additional utilities */
h2.serif {
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

h2.serif em {
    font-style: italic;
    color: var(--mid);
}

h2.serif.light {
    color: #fff;
}

h2.serif.light em {
    color: var(--gold-light);
}

p.lead {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid-grey);
    margin-bottom: 1.2rem;
}

p.lead strong {
    color: var(--charcoal);
    font-weight: 500;
}

.btn-dark {
    background: #4a4a4a;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-dark:hover {
    background: #5a5a5a;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.9rem 2rem;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #fff;
    color: #fff;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col.flip {
    direction: rtl;
}

.two-col.flip > * {
    direction: ltr;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.card {
    background: #fff;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.card p {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--mid-grey);
}

.stat-box {
    padding: 2rem;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--mid));
}

.stat-num {
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--mid-grey);
    margin-top: 0.4rem;
    line-height: 1.5;
}

.stat-tag {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    background: rgba(150, 150, 150, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

.dark-panel {
    background: #4a4a4a;
    border-radius: 4px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.dark-panel::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-size: 10rem;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
}

.dark-panel blockquote {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.dark-panel cite {
    font-size: 0.78rem;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 2rem 0;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--light-grey);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
}

.timeline-content h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--mid-grey);
    line-height: 1.75;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    color: rgba(201, 168, 76, 0.4);
}

.team-name {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.team-role {
    font-size: 0.75rem;
    color: var(--mid-grey);
    margin-top: 0.3rem;
}

/* ─── RESPONSIVE ─── */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    .topbar {
        padding: 0.55rem 2.5rem;
    }

    nav {
        padding: 0.8rem 2.5rem;
    }

    .hero {
        padding: 0 2.5rem;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .section,
    .impact-section,
    .research,
    .founder {
        padding: 5rem 2.5rem;
    }

    .programs {
        padding: 5rem 2.5rem;
    }

    .section-alt,
    .section-dark {
        padding: 5rem 2.5rem;
    }

    .partners-cta {
        padding: 5rem 2.5rem;
    }

    footer {
        padding: 3.5rem 2.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }

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

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

    .page-hero {
        padding: 10rem 2.5rem 4rem;
    }
}

/* ── Mobile (≤900px) ── */
@media (max-width: 900px) {
    .topbar {
        display: none;
    }

    nav {
        padding: 0.9rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem 4rem;
        padding-top: 90px;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    /* Mission strip */
    .mission-strip {
        padding: 1.5rem;
        flex-direction: column;
        gap: 0;
    }

    .mission-strip p {
        font-size: 0.95rem;
    }

    /* Sections */
    .section {
        padding: 4rem 1.5rem;
    }

    .section-alt,
    .section-dark {
        padding: 4rem 1.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Programs */
    .programs {
        padding: 4rem 1.5rem;
    }

    .programs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

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

    /* Impact */
    .impact-section {
        padding: 4rem 1.5rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .impact-data {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Research */
    .research {
        padding: 4rem 1.5rem;
    }

    .research-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.5rem;
    }

    .research-item-right {
        display: none;
    }

    /* Founder */
    .founder {
        padding: 4rem 1.5rem;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-portrait {
        aspect-ratio: 3/2;
    }

    /* Partners CTA */
    .partners-cta {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Page hero */
    .page-hero {
        padding: 9rem 1.5rem 4rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    /* Layout utilities */
    .two-col,
    .three-col,
    .four-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col.flip {
        direction: ltr;
    }

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

    /* Program band */
    .program-band {
        padding: 1.5rem;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    /* Timeline */
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    /* h2.serif */
    h2.serif {
        font-size: 2.2rem;
    }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
    nav {
        padding: 0.7rem 1rem;
    }

    .nav-logo img {
        height: 44px;
    }

    .hero {
        padding: 1.5rem 1rem 3.5rem;
        padding-top: 85px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-tag {
        font-size: 0.6rem;
    }

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

    .btn-primary,
    .btn-gold {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .section {
        padding: 3rem 1rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-text h2,
    .founder-text h2 {
        font-size: 2rem;
    }

    .programs {
        padding: 3rem 1rem;
    }

    .programs-header h2 {
        font-size: 2rem;
    }

    .impact-section {
        padding: 3rem 1rem;
    }

    .impact-data {
        grid-template-columns: 1fr;
    }

    .impact-intro h2 {
        font-size: 2rem;
    }

    .data-num {
        font-size: 2.2rem;
    }

    .research {
        padding: 3rem 1rem;
    }

    .research-header h2 {
        font-size: 2rem;
    }

    .founder {
        padding: 3rem 1rem;
    }

    .founder-portrait {
        aspect-ratio: 4/3;
    }

    .partners-cta {
        padding: 3rem 1rem;
    }

    .partners-cta h2 {
        font-size: 2.2rem;
    }

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

    .btn-outline-light,
    .btn-dark,
    .btn-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    footer {
        padding: 2.5rem 1rem 1.5rem;
    }

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

    .page-hero {
        padding: 8rem 1rem 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-alt,
    .section-dark {
        padding: 3rem 1rem;
    }

    .data-card {
        padding: 1.5rem;
    }

    .program-band {
        padding: 1rem;
        gap: 1rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    h2.serif {
        font-size: 1.8rem;
    }
}

/* ─── ACCENT SPAN ─── */
.accent {
    color: var(--gold);
}

/* ─── PROGRAM BAND ─── */
.program-band {
    background: #4a4a4a;
    padding: 1.5rem 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.program-band-stat {
    text-align: center;
}

.program-band-num {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-light);
}

.program-band-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── DATA TABLE ─── */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: #4a4a4a;
    color: #fff;
    padding: 1rem 1.2rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.data-table td {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid var(--light-grey);
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 300;
}

.data-table tr:hover td {
    background: rgba(201, 168, 76, 0.05);
}

.data-table .highlight {
    font-weight: 500;
    color: var(--charcoal);
}

.data-table .gold {
    color: var(--gold);
    font-weight: 500;
}

/* ─── CONTACT FORM ─── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--light-grey);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    color: var(--charcoal);
    background: #fff;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

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

/* ============================================================
   Gallery Component — program pages
   ============================================================ */
.gallery-wrap {
    margin-top: 1.5rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2rem;
}
.gallery-chip {
    padding: 0.38rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(33, 37, 41, 0.18);
    background: none;
    font-size: 0.75rem;
    font-family: "Inter", sans-serif;
    color: rgba(33, 37, 41, 0.5);
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}
.gallery-chip:hover,
.gallery-chip.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #e2e2e2 center/cover no-repeat;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}
.gallery-thumb:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay svg {
    width: 32px;
    height: 32px;
    color: #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.gallery-thumb--video {
    background: linear-gradient(145deg, #1c1c1c 0%, #111 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
/* Small persistent play pill on video thumbnails that have an image */
.gallery-play-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 20px;
    padding: 3px 9px 3px 7px;
    color: #c9a84c;
    font-size: 0.6rem;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    pointer-events: none;
}
.gallery-play-badge svg {
    flex-shrink: 0;
}
.gallery-play {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.18);
    border: 2px solid rgba(201, 168, 76, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        transform 0.2s;
}
.gallery-play svg {
    width: 20px;
    height: 20px;
    color: #c9a84c;
    margin-left: 3px;
}
.gallery-thumb:hover .gallery-play {
    background: rgba(201, 168, 76, 0.3);
    transform: scale(1.08);
}
.gallery-vidlabel {
    font-size: 0.7rem;
    font-family: "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.gallery-state-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.6rem;
}
.gallery-filename {
    font-size: 0.72rem;
    color: rgba(33, 37, 41, 0.55);
    margin-top: 0.55rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.gallery-filesize {
    font-size: 0.65rem;
    color: rgba(33, 37, 41, 0.35);
    margin-top: 0.1rem;
}
.gallery-caption {
    font-size: 0.78rem;
    color: rgba(33, 37, 41, 0.6);
    margin-top: 0.2rem;
    line-height: 1.4;
}

/* ── GLightbox slide description ── */
.glb-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}
.glb-state {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a84c;
}
.glb-size {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}
.glb-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.6rem;
    line-height: 1;
}
.glb-caption {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.45;
}

.gallery-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: rgba(33, 37, 41, 0.4);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}
@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
