*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #5d0703;
    --red-dk: #3d0200;
    --red-lt: #8b1010;
    --yellow: #ffc606;
    --yel-lt: #fff3c0;
    --dark: #0A0A0A;
    --dark-card: #111111;
    --dark-border: rgba(255, 255, 255, 0.08);
    --gray: #A0A0A0;
    --off-wh: #FAF8F4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    background: var(--dark);
    color: #E0E0E0;
    padding-top: 68px;
}

/* NAV - Dark Red Theme */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--red-dk) !important;
    height: 68px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: .06em;
    color: var(--yellow) !important;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo span {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, .85) !important;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.2s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--yellow) !important;
}

.nav-cta {
    background: var(--yellow);
    color: var(--dark) !important;
    padding: .5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover {
    background: #e6b200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: .3s;
}

/* HERO - Dark Theme */
.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.hero-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--yellow);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: var(--red) !important;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 30px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: .95;
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: normal;
    color: var(--yellow);
}

.hero-desc {
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red) !important;
    color: #fff;
    padding: .85rem 2.2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all .2s;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--red-lt) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(93, 7, 3, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: .85rem 2.2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all .2s;
    display: inline-block;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--yellow) !important;
}

.hero-stat-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .2rem;
}

/* SECTION COMMONS - Dark Cards */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yellow) !important;
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.section-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 560px;
}

hr.divider {
    border: none;
    border-top: 1px solid var(--dark-border);
    margin: 0;
}

/* WHO WE ARE - Dark Card */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-img-wrap {
    position: relative;
}

.who-img-wrap img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.who-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--yellow) !important;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.who-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--dark);
}

.who-badge-txt {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
}

.who-text {
    padding-left: 1rem;
}

.who-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.btn-dark {
    background: var(--red);
    color: #fff;
    padding: .8rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all .2s;
    display: inline-block;
    margin-top: .5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
}

/* PILLARS - Dark Theme */
.pillars-bg {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.pillars-bg .section {
    color: #fff;
}

.pillars-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3rem;
}

.pillars-intro .section-heading {
    color: #fff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: transparent;
}

.pillar {
    background: var(--dark);
    padding: 2.5rem 2rem;
    transition: all .25s;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
}

.pillar:hover {
    background: #1a1a1a;
    transform: translateY(-4px);
    border-color: var(--yellow);
}

.pillar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--yellow) !important;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.7;
    border-left: 3px solid var(--red);
    padding-left: .75rem;
}

.pillar h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .75rem;
}

.pillar p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* POSTS - Dark Cards */
.posts-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.post-card {
    background: var(--dark-card);
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    transition: transform .3s, box-shadow .3s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--yellow);
}

.post-card-img-wrap {
    overflow: hidden;
}

.post-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.post-card:hover .post-card-img {
    transform: scale(1.05);
}

.post-card-body {
    padding: 1.5rem;
}

.post-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--yellow) !important;
    margin-bottom: .5rem;
}

.post-card-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: .5rem;
}

.post-card-body h3 a {
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.post-card-body h3 a:hover {
    color: var(--yellow);
}

.post-card-body p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.6;
}

.post-read {
    display: inline-block;
    margin-top: .75rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--yellow) !important;
    text-decoration: none;
    transition: opacity .2s;
}

.post-read:hover {
    opacity: 0.8;
}

/* GALLERY - Dark Theme */
.gallery-bg {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.gallery-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.gallery-grid {
    columns: 4;
    column-gap: 10px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease, filter .4s ease, opacity .5s ease;
    filter: grayscale(15%) brightness(0.88);
    vertical-align: bottom;
    opacity: 0;
}

.gallery-item img.loaded {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) brightness(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 2, 0, 0.6) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s ease;
    border-radius: 10px;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid { columns: 3; }
}

@media (max-width: 640px) {
    .gallery-grid { columns: 2; }
}

/* TEAM - Dark Cards */
.team-group-photo {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.team-group-photo img {
    width: 100%;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    transition: transform .3s, border-color .3s;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
}

.team-card-img-wrap {
    position: relative;
    margin-bottom: 1rem;
}

.team-card-img-wrap::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--yellow);
    border-radius: 12px;
    z-index: 0;
}

.team-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.team-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    margin-bottom: .2rem;
    color: #fff;
}

.team-role {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--yellow) !important;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin-top: .9rem;
}

.team-social-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s, color .2s;
    flex-shrink: 0;
}

.team-social-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.team-social-icon:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
    transform: translateY(-2px);
}

/* HISTORY BAND - Dark Red */
.history-bg {
    background: var(--red-dk) !important;
    position: relative;
    overflow: hidden;
}

.history-bg::before {
    content: '\201C';
    position: absolute;
    top: -0.2em;
    left: 1.5rem;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(10rem, 18vw, 18rem);
    line-height: 1;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.history-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.history-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #fff;
}

.history-inner p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* CONTACT - Dark Theme */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-channels {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--dark-card);
    border-left: 4px solid var(--yellow) !important;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: .95rem;
    transition: all .2s;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
}

.contact-link:hover {
    border-left-color: var(--red) !important;
    background: #1a1a1a;
    transform: translateX(4px);
}

.contact-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-link-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Map */
.contact-map {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--dark-card);
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.1) saturate(0.65);
    border-radius: 16px;
}

/* FOOTER - Dark */
footer {
    background: var(--dark-card);
    color: rgba(255, 255, 255, .55);
    padding: 3.5rem 2rem 1.5rem;
    border-top: 1px solid var(--dark-border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: .06em;
    color: var(--yellow) !important;
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
}

.footer-desc {
    font-size: .875rem;
    line-height: 1.7;
}

footer h4 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: .5rem;
}

footer ul a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}

footer ul a:hover {
    color: var(--yellow);
}

.footer-socials {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
}

.footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: all .2s;
    background: rgba(255,255,255,0.04);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    display: block;
}

.footer-social:hover {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* MOBILE NAV - Dark */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: block;
    }

    .nav-mobile {
        position: fixed;
        inset: 68px 0 0;
        background: var(--dark);
        z-index: 999;
        padding: 2rem;
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        border-top: 1px solid var(--dark-border);
    }

    .nav-mobile.open {
        display: flex;
    }

    .nav-mobile a {
        color: #fff;
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 500;
        border-bottom: 1px solid var(--dark-border);
        padding-bottom: 1rem;
    }

    .nav-mobile a:hover {
        color: var(--yellow);
    }

    /* Tablet layout: 2-column grids instead of jumping straight to 1 */
    .posts-grid   { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }

    /* Bigger burger touch target */
    .nav-burger { padding: 8px; }
}

/* Fix: Hide mobile nav on desktop */
@media (min-width: 901px) {
    .nav-mobile {
        display: none !important;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .who-grid,
    .pillars-intro,
    .history-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* who-text: no indent in single-column layout */
    .who-text { padding-left: 0; }

    /* Space below image so the absolute badge doesn't clip next section */
    .who-img-wrap { padding-bottom: 1.5rem; }

    .who-badge {
        right: 1rem;
        bottom: .5rem;
        width: 90px;
        height: 90px;
    }

    .who-badge-num {
        font-size: 2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Reduce section vertical padding at tablet */
    .section { padding: 3.5rem 1.5rem; }

    /* Map: don't be a tall square on mobile */
    .contact-map { aspect-ratio: 4/3; }

    /* Gallery: tighter horizontal padding */
    .gallery-wrap,
    .gallery-filters { padding-left: 1.25rem; padding-right: 1.25rem; }

    /* Lightbox arrows: pull slightly inward so they don't clip */
    .lb-prev { left: .5rem; }
    .lb-next { right: .5rem; }
}

/* Collapse 2-col grids to 1-col on phones */
@media (max-width: 600px) {
    .posts-grid   { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1.25rem;
    }

    .hero-content {
        padding: 3rem 1.25rem 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-wrap,
    .gallery-filters { padding-left: .75rem; padding-right: .75rem; }

    .hero-stats { gap: 1rem; }

    /* Contact map: landscape ratio on small phones */
    .contact-map { aspect-ratio: 16/9; }
}

/* Single-column gallery for very small phones */
@media (max-width: 380px) {
    .gallery-grid { columns: 1; }
}
/* ── SKIP LINK ──────────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--yellow);
    color: var(--dark);
    padding: .5rem 1.25rem;
    font-weight: 700;
    font-size: .875rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }
.reveal:nth-child(7) { transition-delay: .6s; }

/* ── BACK TO TOP ────────────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s, background .2s;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.back-to-top.visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--red-lt);
    transform: translateY(-2px);
}

/* ── LIGHTBOX ───────────────────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lb-img-wrap {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    user-select: none;
}

.lb-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,.75);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    padding: .25rem .5rem;
    transition: color .2s;
    z-index: 2001;
}

.lb-close:hover { color: #fff; }

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2001;
}

.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

.lb-prev:hover,
.lb-next:hover {
    background: var(--red);
    border-color: var(--red);
}

.lb-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    background: rgba(0,0,0,0.5);
    padding: .3rem .75rem;
    border-radius: 99px;
}

/* ── NAV ACTIVE STATE ───────────────────────────────────────────────────── */
.nav-links a.active {
    color: var(--yellow) !important;
}

.nav-links a.active::after {
    width: 100%;
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--yellow);
    z-index: 1001;
    transition: width .1s linear;
    pointer-events: none;
}

/* ── IMPACT SECTION ─────────────────────────────────────────────────────── */
.impact-bg {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.impact-item {
    padding: 2rem 1rem;
    position: relative;
}

.impact-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--dark-border);
}

.impact-item:last-child::after {
    display: none;
}

.impact-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--yellow);
    display: inline;
}

.impact-suffix {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: rgba(255,255,255,0.45);
    display: inline;
    margin-left: .15em;
}

.impact-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
    margin-top: .5rem;
}

@media (max-width: 768px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-item:nth-child(2)::after,
    .impact-item:nth-child(4)::after { display: none; }
}

@media (max-width: 480px) {
    .impact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ── GALLERY FILTERS ────────────────────────────────────────────────────── */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 1.5rem;
}

.gf-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55);
    padding: .35rem .9rem;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.gf-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.gf-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}

.gallery-item.hidden {
    display: none;
}

/* ── PREFERS REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .scroll-progress { display: none; }

    .gallery-item img,
    .gallery-item::after,
    .back-to-top,
    .lightbox,
    .team-card,
    .post-card { transition: none !important; }

    .gallery-item img { opacity: 1 !important; }
}

/* ── PRINT STYLES ───────────────────────────────────────────────────────── */
@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    nav,
    .nav-mobile,
    .hero,
    .gallery-bg,
    .history-bg,
    .impact-bg,
    .back-to-top,
    .lightbox,
    .scroll-progress,
    .skip-link,
    .footer-socials,
    .btn-primary,
    .btn-outline,
    .btn-dark,
    .gallery-filters {
        display: none !important;
    }

    body {
        padding: 0 !important;
        font-size: 11pt;
    }

    .section {
        padding: 1.5rem 0 !important;
        max-width: 100% !important;
    }

    .section-heading {
        font-size: 18pt !important;
        color: #000 !important;
        break-after: avoid;
    }

    .who-grid,
    .pillars-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .team-card {
        border: 1pt solid #ccc !important;
        border-radius: 0 !important;
        padding: .75rem !important;
        break-inside: avoid;
    }

    .team-card img {
        width: 80px !important;
        height: 80px !important;
        border-radius: 4px !important;
    }

    .team-socials { display: none !important; }

    .team-name { font-size: 10pt !important; }
    .team-role  { font-size: 8pt  !important; }

    footer {
        border-top: 1pt solid #ccc !important;
        padding: 1rem 0 !important;
    }

    .footer-inner { grid-template-columns: 1fr !important; }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 8pt;
        color: #555 !important;
    }

    a[href^="#"]::after,
    a[href^="mailto:"]::after {
        content: none;
    }

    @page {
        margin: 1.5cm;
    }
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────────────────── */
.announce-bar {
    background: var(--yellow);
    color: var(--dark);
    position: relative;
    z-index: 999;
}

.announce-bar.hidden {
    display: none;
}

.announce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .65rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announce-badge {
    background: var(--dark);
    color: var(--yellow);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}

.announce-text {
    font-size: .875rem;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    color: var(--dark);
}

.announce-cta {
    background: var(--dark);
    color: var(--yellow);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.announce-cta:hover {
    background: var(--red);
    color: #fff;
}

.announce-close {
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 .25rem;
    opacity: .6;
    flex-shrink: 0;
    transition: opacity .2s;
}

.announce-close:hover {
    opacity: 1;
}

@media (max-width: 600px) {
    .announce-inner { gap: .6rem; }
    .announce-text  { font-size: .8rem; width: 100%; }
    .announce-cta   { width: 100%; text-align: center; }
}

/* ── FEATURED POST CARD ─────────────────────────────────────────────────── */
.post-card--featured {
    border-color: var(--yellow) !important;
    position: relative;
}

.post-card--featured::before {
    content: 'OPEN NOW';
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--yellow);
    color: var(--dark);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: .2rem .5rem;
    border-radius: 99px;
    z-index: 2;
}
