*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #CC2222;
    --red-dk: #991111;
    --red-lt: #E03A3A;
    --yellow: #F5C400;
    --yel-lt: #FFF0A0;
    --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: #e0b000;
    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.2;
}

.hero-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--yellow);
}

.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(204, 34, 34, 0.4);
}

.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;
}

.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;
}

.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-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform .4s ease, filter .3s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* TEAM - Dark Cards */
.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;
}

/* HISTORY BAND - Dark Red */
.history-bg {
    background: var(--red-dk) !important;
}

.history-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.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: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* 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;
}

/* 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: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .9rem;
    transition: all .2s;
}

.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);
    }
}

/* 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;
    }

    .pillars-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .who-badge {
        right: 1rem;
        bottom: -1rem;
        width: 90px;
        height: 90px;
    }

    .who-badge-num {
        font-size: 2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 3rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}