/* ============================================================
   SPELTHORNE EAGLES — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&family=Bebas+Neue&display=swap');

:root {
    --bg-deep:    #0a0a0a;
    --bg-card:    rgba(255,255,255,0.03);
    --gold:       #ff4400;
    --gold-bright:#ff6600;
    --cream:      #f9f9f9;
    --white:      #ffffff;
    --navy:       #111111;
    --warm-grey:  #666666;
    --warm-grey-2:#999999;
    --text-dim:   rgba(255,255,255,0.4);
    
    --font-main:  'Inter', sans-serif;
    --font-heading:'Outfit', sans-serif;
    --font-bebas: 'Bebas Neue', sans-serif;
    
    --radius-main: 16px;
    --radius-card: 24px;
    --radius-full: 100px;
    
    --ease-main: cubic-bezier(0.19, 1, 0.22, 1);
    --time-fast: 0.3s;
    --time-mid: 0.6s;
}

/* ============================================================
   GLOBAL BASE
   ============================================================ */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--bg-deep);
    scroll-behavior: smooth;
    font-family: var(--font-main);
    color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

/* Fixed Background Logo Watermark */
.site-bg-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vw;
    max-width: 1400px;
    max-height: 1400px;
    background-image: url('images/logo_white.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
    filter: grayscale(1) brightness(1.5);
    transition: opacity 1s ease;
}

body.menu-open .site-bg-logo {
    opacity: 0.01;
}

.cursor-dot, .cursor-ring { display: none; }

/* Performance Optimized Transitions */
a, button, .btn, .news-card, .social-card, .prog-card, .staff-card, .value-card-v2, .social-promo-card, .m-card, .hz-item, .age-card-v2, .how-step-v2, .nav-more-btn, .gallery-item-v2, .news-card-v2, .nc-read, .tl2-card {
    transition: transform var(--time-fast) var(--ease-main), 
                opacity var(--time-fast) var(--ease-main), 
                background var(--time-fast) var(--ease-main), 
                border-color var(--time-fast) var(--ease-main), 
                box-shadow var(--time-fast) var(--ease-main),
                color var(--time-fast) var(--ease-main);
    will-change: transform, opacity;
}

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 12rem);
    max-width: 1100px;
    height: 80px;
    background: rgba(5,11,24,0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 0 2rem;
    transition: all 0.5s var(--ease-main);
}

header.scrolled {
    height: 66px;
    top: 0.75rem;
    background: rgba(5,11,24,0.92);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
    header.scrolled {
        height: 56px;
        top: 0.5rem;
    }
}

/* Logo + wordmark (left) */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 2;
}
.header-logo img { height: 54px; width: auto; transition: height 0.5s var(--ease-main); }
header.scrolled .header-logo img { height: 46px; }

.header-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.hw-top {
    font-family: var(--font-main);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(240,236,228,0.55);
    text-transform: uppercase;
}
.hw-bot {
    font-family: var(--font-bebas);
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1.1;
}

/* Centre nav */
.nav-center { display: flex; align-items: center; flex: 1; justify-content: center; }
.nav-center ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Equal-width sides so logo stays centred */
.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2.5rem;
}
.nav-left ul, .nav-right ul {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: rgba(240,236,228,0.72);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a:hover, .main-nav a.active { color: var(--gold); }

/* Simplified hero eyebrow */
.hc-eyebrow-simple {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,236,228,0.55);
    margin-bottom: 1.5rem;
}

/* Hero buttons inline with icon */
.hc-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hc-btns .btn { display: flex; align-items: center; gap: 0.5rem; }

.nav-right-wrap { flex: 1; display: flex; align-items: center; justify-content: flex-start; padding-left: 2.5rem; gap: 1rem; }

.nav-more { position: relative; }
.nav-more-btn { background: none; border: none; padding: 0; line-height: 1; color: rgba(240,236,228,0.72); font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-more-btn svg { transition: transform 0.3s; }
.nav-more:hover .nav-more-btn, .nav-more.open .nav-more-btn { color: var(--gold); }
.nav-more:hover .nav-more-btn svg, .nav-more.open .nav-more-btn svg { transform: rotate(180deg); }

.nav-more-panel {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    background: var(--bg-deep);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-more:hover .nav-more-panel, .nav-more.open .nav-more-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-more-panel a { display: block; padding: 0.75rem 1rem; color: var(--warm-grey-2); text-decoration: none; font-size: 0.75rem; border-radius: 8px; }
.nav-more-panel a:hover { background: rgba(232,148,26,0.1); color: var(--gold); }

/* Hamburger — hidden on desktop, shown on mobile by media query */
.menu-btn { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; background: none; border: none; padding: 0; cursor: pointer; z-index: 600; }
.menu-btn span { display: block; height: 3px; border-radius: 4px; background: var(--gold); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: left center; }
.menu-btn span:nth-child(1) { width: 24px; }
.menu-btn span:nth-child(2) { width: 14px; align-self: flex-end; }
.menu-btn span:nth-child(3) { width: 24px; }

.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(3.5px, -1px); width: 24px; }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(3.5px, 1px); width: 24px; }

/* ── FULLSCREEN MENU — REDESIGN ── */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 450;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6rem 4rem 3.5rem;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.4s var(--ease-main), visibility 0.4s, transform 0.4s var(--ease-main);
    overflow: hidden;
}

/* Gold radial accent top-right */
.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(255,68,0,0.15) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid texture */
.fullscreen-menu::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
    z-index: 0;
}

.fullscreen-menu.open { opacity: 1; visibility: visible; transform: none; }

/* nav wraps */
.fullscreen-menu nav { position: relative; z-index: 2; }
.fullscreen-menu nav ul { list-style: none; padding: 0; margin: 0; }

/* staggered items */
.fullscreen-menu nav ul li {
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.45s var(--ease-main), transform 0.45s var(--ease-main), border-color 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fullscreen-menu.open nav ul li:nth-child(1) { opacity:1; transform:none; transition-delay:0.06s; }
.fullscreen-menu.open nav ul li:nth-child(2) { opacity:1; transform:none; transition-delay:0.11s; }
.fullscreen-menu.open nav ul li:nth-child(3) { opacity:1; transform:none; transition-delay:0.16s; }
.fullscreen-menu.open nav ul li:nth-child(4) { opacity:1; transform:none; transition-delay:0.21s; }
.fullscreen-menu.open nav ul li:nth-child(5) { opacity:1; transform:none; transition-delay:0.26s; }
.fullscreen-menu.open nav ul li:nth-child(6) { opacity:1; transform:none; transition-delay:0.31s; }
.fullscreen-menu.open nav ul li:nth-child(7) { opacity:1; transform:none; transition-delay:0.36s; }
.fullscreen-menu.open nav ul li:nth-child(8) { opacity:1; transform:none; transition-delay:0.41s; }

.fullscreen-menu nav ul li a {
    font-family: var(--font-bebas);
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0.85rem 0;
    transition: color 0.25s var(--ease-main), gap 0.25s var(--ease-main);
    letter-spacing: 1px;
}
.fullscreen-menu nav ul li a:hover { color: var(--gold); gap: 2.25rem; }
.fullscreen-menu nav ul li a .num {
    font-family: var(--font-main);
    font-size: 0.58rem;
    color: var(--gold);
    opacity: 0.6;
    letter-spacing: 2px;
    width: 22px;
    flex-shrink: 0;
}

/* socials row */
.menu-socials {
    position: relative;
    z-index: 2;
    margin-top: 0;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    opacity: 0;
    transition: opacity 0.4s var(--ease-main) 0.45s;
}
.fullscreen-menu.open .menu-socials { opacity: 1; }

.menu-socials a {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    color: var(--warm-grey-2);
    text-decoration: none;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.menu-socials a:hover {
    color: var(--gold);
    border-color: rgba(232,148,26,0.45);
    background: rgba(232,148,26,0.07);
}

/* ============================================================
   REVEAL SYSTEM
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-main), transform 1s var(--ease-main); }
.reveal-up.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 1s var(--ease-main), transform 1s var(--ease-main); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 1s var(--ease-main), transform 1s var(--ease-main); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 1s var(--ease-main), transform 1s var(--ease-main); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ============================================================
   HERO COMPONENTS
   ============================================================ */
.hc { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg-deep); }
.hc-img { position: absolute; inset: 0; background-image: url('images/hero.jpg'); background-size: cover; background-position: center top; filter: brightness(0.82); transform: scale(1.05) translateZ(0); will-change: transform; animation: heroZoom 30s linear infinite alternate; z-index: 1; }
@keyframes heroZoom { from { transform: scale(1.05) translateZ(0); } to { transform: scale(1.1) translateZ(0); } }
.hc-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 50%, var(--bg-deep) 92%); z-index: 2; }
.hc-body { position: relative; z-index: 5; text-align: center; max-width: 1000px; padding: 0 2rem; }
.hc-eyebrow { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.hc-eyebrow-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.hc-eyebrow span { font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase; font-weight: 700; color: var(--gold); }

.hc-headline { display: flex; flex-direction: column; line-height: 0.85; margin-bottom: 2rem; }
.hc-line-top { font-family: var(--font-bebas); font-size: clamp(3rem, 8vw, 7rem); color: rgba(255,255,255,0.8); letter-spacing: 1rem; }
.hc-rule { display: none; }
.hc-line-main { font-family: var(--font-bebas); font-size: clamp(6rem, 18vw, 16rem); color: var(--white); letter-spacing: -2px; }

.hc-sub { font-size: clamp(0.9rem, 1.5vw, 1.1rem); color: var(--warm-grey-2); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hc-btns { display: flex; gap: 1rem; justify-content: center; }
.hc-btns .btn { padding: 0.85rem 1.8rem; font-size: 0.7rem; }

.hc-stats { position: absolute; bottom: 3.5rem; left: 0; width: 100%; display: flex; justify-content: center; gap: 4rem; z-index: 5; }
.hc-stat { display: flex; flex-direction: column; align-items: center; }
.hc-snum { font-family: var(--font-bebas); font-size: 3rem; color: var(--white); line-height: 1; }
.hc-slbl { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 0.5rem; }

.scroll-ind { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--warm-grey); animation: bounce 2s infinite; z-index: 5; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }

/* ============================================================
   MARQUEE
   ============================================================ */
.mwrap { background: var(--gold); padding: 1.2rem 0; overflow: hidden; position: relative; z-index: 10; }
.mtrack { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.mitem { font-family: var(--font-main); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--bg-deep); padding: 0 4rem; display: flex; align-items: center; gap: 1.5rem; }
.mitem strong { font-weight: 900; }
.msep { width: 6px; height: 6px; background: var(--bg-deep); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1.25rem 3rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 1px solid transparent; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255,68,0,0.3); color: #fff; }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,68,0,0.05); transform: translateY(-3px); }
.btn-dark { background: var(--bg-deep); color: var(--cream); }
.btn-dark:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }

/* ============================================================
   HOME SECTIONS
   ============================================================ */
/* About Home */
.about-home { padding: 7rem 3rem; background: var(--bg-deep); color: var(--white); }
.about-light { background: #f5f1ec !important; color: var(--navy) !important; }
.about-home-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.slabel { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.slabel span { font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.stitle { font-family: var(--font-bebas); font-size: clamp(3rem, 6vw, 5rem); line-height: 0.9; letter-spacing: 1px; margin-bottom: 2rem; text-transform: uppercase; }
.stitle em { font-style: italic; color: transparent; -webkit-text-stroke: 2px var(--gold); }
.about-home-lead { font-size: 1.1rem; line-height: 1.8; color: var(--white); font-weight: 600; margin-bottom: 1.5rem; }
.about-home-body { font-size: 0.95rem; line-height: 1.8; color: var(--text-dim); margin-bottom: 2.5rem; }

.stat-row-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 3rem; }
.srl-item strong { display: block; font-family: var(--font-bebas); font-size: 3rem; color: var(--white); line-height: 1; }
.srl-item span { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; }

.about-home-imgcol { position: relative; }
.about-home-photo { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); aspect-ratio: 4/5; position: relative; }
.about-home-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-main); }
.about-home-imgcol:hover .about-home-photo img { transform: scale(1.05); }

.about-home-badge { position: absolute; bottom: -2rem; left: -2rem; background: var(--bg-deep); color: var(--gold); width: 140px; height: 140px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,0.2); z-index: 5; }
.about-home-badge strong { font-family: var(--font-bebas); font-size: 2.5rem; line-height: 1; }
.about-home-badge small { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; }

/* Programs */
.prog-section { padding: 7rem 2rem; background: var(--bg-deep); }
.prog-inner { max-width: 1200px; margin: 0 auto; }
.prog-header { margin-bottom: 4rem; }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.prog-card { position: relative; min-height: 520px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; border: 2px solid rgba(255,255,255,0.05); background: #0a0a0a; border-radius: 32px; }
.prog-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.4) grayscale(1); transition: transform 1.2s var(--ease-main), filter 0.8s; z-index: 1; }
.prog-card:hover .prog-card-bg { transform: scale(1.1); filter: brightness(0.6) grayscale(0); }
.prog-card-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,11,24,0.95) 0%, transparent 100%); z-index: 2; }
.prog-card-body { position: relative; z-index: 3; }
.prog-num { position: absolute; top: 2rem; right: 2rem; font-family: var(--font-bebas); font-size: 6rem; line-height: 0.8; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1); transition: all 0.6s var(--ease-main); }
.prog-card:hover .prog-num { -webkit-text-stroke: 1px var(--gold); transform: translateY(-10px); }
.prog-chips { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.prog-chip { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(255,68,0,0.4); padding: 4px 12px; border-radius: 100px; font-weight: 700; white-space: nowrap; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
.prog-card h3 { font-family: var(--font-bebas); font-size: 3rem; color: var(--white); margin-bottom: 1rem; }
.prog-card p { font-size: 0.9rem; color: var(--warm-grey-2); margin-bottom: 2rem; opacity: 0.8; }
.prog-link { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.prog-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 30px 60px rgba(255,68,0,0.15); }

/* Social Hub */
.social-hub { padding: 5rem 3rem; background: #080d1b; }
.social-hub-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.social-platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.social-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 2rem; display: flex; flex-direction: column; align-items: center; text-decoration: none; text-align: center; }
.social-card:hover { background: rgba(232,148,26,0.05); border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 16px 35px rgba(232,148,26,0.1); }
.social-card-ic { width: 46px; height: 46px; color: var(--gold); margin-bottom: 1.25rem; }
.social-card span { font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; color: var(--white); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-clean { padding: 6rem 3rem; background: var(--cream); color: var(--bg-deep); }
.faq-clean-inner { max-width: 800px; margin: 0 auto; }
.faq-clean-header { margin-bottom: 4rem; text-align: center; }
.faq-list { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-q { width: 100%; padding: 2rem 0; background: none; border: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--navy); cursor: pointer; text-align: left; }
.faq-icon { font-size: 1.5rem; color: var(--gold); transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-main); }
.faq-a p { padding-bottom: 2rem; color: var(--warm-grey); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ============================================================
   SUBPAGES GLOBAL
   ============================================================ */
.section-dark-inner { background: var(--bg-deep); padding: 6rem 3rem; }
.section-light-inner { background: var(--cream); color: var(--bg-deep); padding: 6rem 3rem; }

/* Smooth bleed from hero into first dark section */
.hc + .section-dark-inner {
    position: relative;
    z-index: 3;
}

/* Gradient divider between dark and light sections */
.section-dark-inner + .section-light-inner {
    background: linear-gradient(to bottom, rgba(5,11,24,0.18) 0%, var(--cream) 6rem);
}
.section-light-inner + .section-dark-inner {
    background: linear-gradient(to bottom, rgba(251,249,244,0.12) 0%, var(--bg-deep) 6rem);
}
.section-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }

/* ============================================================
   STAFF PAGE COMPONENTS
   ============================================================ */
.staff-featured { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.staff-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.2); aspect-ratio: auto; }
.staff-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge { position: absolute; top: 2rem; right: 2rem; background: var(--gold); color: var(--bg-deep); padding: 0.5rem 1.5rem; border-radius: 100px; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

.staff-role { font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; display: block; }
.staff-name { font-family: var(--font-bebas); font-size: 5rem; color: var(--white); line-height: 0.9; margin-bottom: 1.5rem; }
.staff-name em { font-style: normal; color: var(--gold); }
.staff-divider { width: 60px; height: 2px; background: var(--gold); margin-bottom: 2rem; }
.staff-bio { font-size: 1.05rem; line-height: 1.8; color: var(--warm-grey-2); margin-bottom: 1.5rem; }
.section-light-inner .staff-bio { color: var(--warm-grey); }
.section-light-inner .staff-name { color: var(--navy); }

.staff-stats-row { display: flex; gap: 3rem; margin-top: 3rem; }
.staff-stat span { font-family: var(--font-bebas); font-size: 2.5rem; color: var(--gold); line-height: 1; display: block; }
.staff-stat small { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-grey); font-weight: 700; }

.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 4rem; }
.staff-card { background: rgba(255,255,255,0.02); border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.section-light-inner .staff-card { background: var(--white); border-color: rgba(0,0,0,0.05); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.staff-card .staff-img-wrap { border-radius: 0; box-shadow: none; aspect-ratio: 1/1; }
.staff-card .staff-body { padding: 2.5rem; }
.staff-card .staff-name { font-size: 2.5rem; margin-bottom: 1rem; }
.staff-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.3); border-color: var(--gold); }

/* ============================================================
   SESSIONS PAGE COMPONENTS
   ============================================================ */
.portal-container { position: relative; width: 100%; height: 800px; border-radius: 20px; overflow: hidden; background: #0c1117; border: 1px solid rgba(255,255,255,0.1); }
.portal-container iframe { width: 100%; height: 100%; border: none; }
.portal-loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #0c1117; z-index: 10; transition: opacity 0.5s; }
.portal-loading.hidden { opacity: 0; pointer-events: none; }

.how-steps-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.how-step-v2 { padding: 3rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; }
.step-n { font-family: var(--font-bebas); font-size: 4rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 1.5rem; }
.how-step-v2 h3 { font-family: var(--font-bebas); font-size: 2.2rem; color: var(--white); margin-bottom: 1rem; }
.how-step-v2:hover { transform: translateY(-10px); border-color: var(--gold); background: rgba(232,148,26,0.05); }

.age-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.age-card-v2 { padding: 2.5rem; background: var(--white); border: 1px solid rgba(0,0,0,0.05); border-radius: 20px; }
.age-label-v2 { display: inline-block; background: var(--gold); color: var(--bg-deep); padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 800; margin-bottom: 1.5rem; }
.age-card-v2 h3 { font-family: var(--font-bebas); font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.age-card-v2 p { font-size: 0.95rem; color: var(--warm-grey); }
.age-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--gold); }

.girls-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.girls-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.girls-duo-a, .girls-duo-b { border-radius: 15px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.girls-duo-a img, .girls-duo-b img { width: 100%; height: 100%; object-fit: cover; }
.girls-duo-b { transform: translateY(3rem); }

/* ============================================================
   TIMELINE (About Page)
   ============================================================ */
.tl2-section { padding: 6rem 3rem; background: #080d1b; }
.tl2-wrap { max-width: 900px; margin: 4rem auto 0; position: relative; }
.tl2-wrap::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 1px; background: rgba(232,148,26,0.2); }
.tl2-item { position: relative; padding-left: 60px; margin-bottom: 4rem; }
.tl2-dot { position: absolute; left: 0; top: 0; width: 32px; height: 32px; background: var(--bg-deep); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.tl2-ring { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.tl2-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 15px; padding: 2.5rem; position: relative; }
.tl2-num { position: absolute; top: 2rem; right: 2rem; font-family: var(--font-bebas); font-size: 3rem; color: var(--gold); opacity: 0.1; }
.tl2-date { display: inline-block; color: var(--gold); font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
.tl2-heading { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; }
.tl2-body { color: var(--warm-grey-2); font-size: 0.95rem; line-height: 1.7; }
.tl2-card:hover { transform: translateX(10px); border-color: var(--gold); background: rgba(232,148,26,0.05); }

/* Values */
.values-grid-v2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
.value-card-v2 { padding: 3rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; }
.value-icon-v2 { width: 50px; height: 50px; background: rgba(232,148,26,0.1); color: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; }
.value-card-v2 h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; }
.value-card-v2 p { color: var(--warm-grey-2); }
.value-card-v2:hover { transform: translateY(-10px); border-color: var(--gold); background: rgba(232,148,26,0.05); }

/* Impact Stats */
.impact-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }

/* Join CTA */
.join-cta-v2 { position: relative; padding: 8rem 3rem; background: var(--bg-deep); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.jcv-photo { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.3); z-index: 1; }
.jcv-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(232,148,26,0.15) 0%, transparent 70%); z-index: 2; }
.jcv-inner { position: relative; z-index: 3; max-width: 800px; }
.jcv-eyebrow { display: block; font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.5rem; }
.jcv-inner h2 { font-family: var(--font-bebas); font-size: clamp(4rem, 10vw, 8rem); line-height: 0.85; color: var(--white); margin-bottom: 2rem; }
.jcv-inner h2 em { font-style: normal; color: var(--gold); }
.jcv-inner p { font-size: 1.1rem; color: var(--warm-grey-2); margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.jcv-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   NEWS PAGE COMPONENTS
   ============================================================ */
.news-featured-v2 { display: grid; grid-template-columns: 1.2fr 1fr; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; margin-top: 4rem; }
.nf-img { overflow: hidden; }
.nf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.news-featured-v2:hover .nf-img img { transform: scale(1.05); }
.nf-body { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.nf-date { display: block; color: var(--warm-grey); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.nf-body h3 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; }
.nf-body p { color: var(--warm-grey-2); margin-bottom: 1.5rem; }

.news-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.news-card-v2 { background: var(--white); border-radius: 15px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.nc-img { height: 240px; overflow: hidden; }
.nc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.news-card-v2:hover .nc-img img { transform: scale(1.1); }
.nc-body { padding: 2rem; }
.nc-meta { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.nc-cat { color: var(--gold); font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.nc-date { color: var(--warm-grey); font-size: 0.65rem; font-weight: 700; }
.news-card-v2 h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin-bottom: 1rem; line-height: 1.4; }
.news-card-v2 p { color: var(--warm-grey); font-size: 0.9rem; margin-bottom: 1.5rem; height: 4.8rem; overflow: hidden; }
.nc-read { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); text-decoration: none; }
.nc-read:hover { color: var(--gold); }
.news-card-v2:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.nl-dark { padding: 6rem 3rem; background: #080d1b; text-align: center; }
.nl-dark-inner { max-width: 600px; margin: 0 auto; }
.nl-form-v2 { display: flex; gap: 1rem; margin-top: 3rem; }
.nl-form-v2 input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 1rem 2rem; color: var(--white); }
.nl-form-v2 input:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   GALLERY PAGE COMPONENTS
   ============================================================ */
.gallery-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.gallery-item-v2 { position: relative; border-radius: 15px; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.gallery-item-v2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-main); }
.gi-overlay { position: absolute; inset: 0; background: rgba(5,11,24,0.7); display: flex; align-items: center; justify-content: center; padding: 2rem; text-align: center; opacity: 0; transition: opacity 0.4s; }
.gi-caption { color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transform: translateY(10px); transition: transform 0.4s; }
.gallery-item-v2:hover img { transform: scale(1.1); }
.gallery-item-v2:hover .gi-overlay { opacity: 1; }
.gallery-item-v2:hover .gi-caption { transform: translateY(0); }

/* ============================================================
   SPONSOR PAGE COMPONENTS
   ============================================================ */
.srow-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.srow-alt .srow-inner { direction: rtl; }
.srow-alt .srow-text { direction: ltr; }
.story-img-inner { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3/2; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.story-img-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-main); }
.srow:hover .story-img-inner img { transform: scale(1.05); }

.macro-grid { display: flex; flex-direction: column; gap: 3rem; }
.m-card { display: flex; background: rgba(10,20,45,0.4); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.06); border-radius: 25px; overflow: hidden; position: relative; }
.m-card-left { width: 40%; padding: 4rem; border-right: 1px solid rgba(255,255,255,0.06); z-index: 2; position: relative; }
.m-card-right { width: 60%; padding: 4rem; z-index: 2; position: relative; }
.m-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.1; filter: grayscale(1); transition: opacity 0.5s; z-index: 1; }
.m-card:hover .m-card-bg { opacity: 0.2; }
.m-card-ov { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,11,24,0.95) 40%, rgba(5,11,24,0.7) 100%); z-index: 1; }
.m-card.m-featured { border: 2px solid var(--gold); transform: scale(1.02); }
.pkg-popular { position: absolute; top: 0; left: 0; right: 0; background: var(--gold); color: var(--bg-deep); text-align: center; font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; padding: 6px; text-transform: uppercase; z-index: 10; }

.hz-timeline { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow-x: auto; scrollbar-width: none; }
.hz-timeline::-webkit-scrollbar { display: none; }
.hz-track { display: flex; padding: 2rem 5vw 4rem; gap: 2rem; width: max-content; }
.hz-item { width: 380px; flex-shrink: 0; background: var(--white); border-radius: 20px; padding: 3rem; border-top: 5px solid var(--gold); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.hz-date { display: inline-block; background: rgba(232,148,26,0.1); color: var(--gold); padding: 5px 15px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1.5rem; }
.hz-item h4 { font-family: var(--font-bebas); font-size: 2.2rem; color: var(--navy); margin-bottom: 1rem; }
.hz-item p { color: var(--warm-grey); font-size: 0.95rem; }
.hz-item:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }

/* ============================================================
   CONTACT PAGE COMPONENTS
   ============================================================ */
.contact-layout-v2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: start; }
.contact-form-v2 { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 4rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
.form-field { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.2rem; color: var(--white); font-family: inherit; font-size: 1rem; transition: all 0.3s; }
.form-field:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 4px rgba(232,148,26,0.1); }
select.form-field option { color: #000; background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.ci-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.ci-icon { width: 50px; height: 50px; background: rgba(232,148,26,0.1); color: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-text h4 { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 5px; }
.ci-text a, .ci-text p { font-size: 1.1rem; color: var(--white); text-decoration: none; }
.ci-text a:hover { color: var(--gold); }

/* ============================================================
   SOCIAL PROMO (Global)
   ============================================================ */
.social-promo-section { padding: 4rem 3rem; background: var(--bg-deep); }
.social-promo-header { text-align: center; margin-bottom: 2.5rem; }
.social-promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
.social-promo-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 1rem 1.5rem; display: flex; flex-direction: row; align-items: center; gap: 1rem; text-decoration: none; transition: transform 0.3s var(--ease-main), border-color 0.3s, background 0.3s; }
.social-promo-card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(232,148,26,0.05); }
.social-promo-icon { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.social-promo-card span { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--white); }

/* Light Section Overrides for Cards */
.section-light-inner .news-card,
.section-light-inner .social-promo-card {
    background: var(--white);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.section-light-inner .news-card:hover,
.section-light-inner .social-promo-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.section-light-inner .news-card h3,
.section-light-inner .social-promo-card span {
    color: var(--navy);
}
.section-light-inner .news-card p {
    color: var(--warm-grey);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 6rem 3rem 3rem; background: #040812; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-logo img { height: 70px; margin-bottom: 2rem; }
.footer-tagline { font-size: 0.95rem; color: var(--warm-grey-2); line-height: 1.8; margin-bottom: 2rem; }
.footer-col h4 { font-family: var(--font-bebas); font-size: 1.2rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: var(--warm-grey-2); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 4rem auto 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--warm-grey); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.85rem; color: var(--warm-grey); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   HOMEPAGE — MINIMAL FOOTER
   ============================================================ */
.footer-home {
    background: #040812;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3.5rem 3rem 2.5rem;
}
.footer-home-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fh-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    flex-shrink: 0;
}
.fh-brand img { height: 44px; width: auto; }
.fh-name {
    display: block;
    font-family: var(--font-bebas);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}
.fh-tagline {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--warm-grey);
    font-weight: 600;
    margin-top: 4px;
}
.fh-links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}
.fh-links a {
    color: var(--warm-grey-2);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.25s;
}
.fh-links a:hover { color: var(--white); }
.fh-socials {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}
.fh-socials a {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    color: var(--warm-grey-2);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.fh-socials a:hover {
    color: var(--gold);
    border-color: rgba(232,148,26,0.45);
    background: rgba(232,148,26,0.07);
}
.fh-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fh-bottom p {
    font-size: 0.82rem;
    color: var(--warm-grey);
}
.fh-credit {
    font-size: 0.82rem;
    color: var(--warm-grey);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}
.fh-credit:hover { color: var(--gold); }

@media (max-width: 1024px) {
    .fh-links { gap: 1.5rem; }
}
@media (max-width: 768px) {
    .footer-home { padding: 2.5rem 1.5rem 2rem; }
    .footer-home-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    .fh-links { flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.75rem; }
    .fh-socials { justify-content: center; }
    .fh-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ============================================================
   REVEAL-BLUR (used in about.html)
   ============================================================ */
.reveal-blur { opacity: 0; filter: blur(10px); transition: opacity 1.1s var(--ease-main), filter 1.1s var(--ease-main); }
.reveal-blur.in { opacity: 1; filter: blur(0); }

/* ============================================================
   PORTAL SECTION (sessions.html booking)
   ============================================================ */
.portal-section { padding: 6rem 3rem; background: var(--bg-deep); }

/* ============================================================
   SPONSOR — STORYTELLER ROWS
   ============================================================ */
.story-card-icon {
    width: 58px; height: 58px;
    background: rgba(232,148,26,0.08);
    color: var(--gold);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.sif-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,11,24,0.55) 0%, transparent 55%);
}
.sif-badge {
    position: absolute; bottom: 1.4rem; left: 1.4rem;
    background: var(--gold); color: var(--bg-deep);
    font-size: 0.58rem; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; padding: 0.35rem 0.9rem;
    border-radius: 100px; z-index: 2;
}
.srow-text p { font-size: 0.95rem; color: var(--warm-grey-2); line-height: 1.85; margin-top: 0.5rem; }

/* ============================================================
   SPONSOR — PACKAGE CARDS
   ============================================================ */
.pkg-badge {
    display: inline-block; font-size: 0.55rem; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 0.28rem 0.85rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.pkg-badge-comm { background: rgba(255,255,255,0.08); color: var(--warm-grey-2); }
.pkg-badge-team { background: rgba(232,148,26,0.18); color: var(--gold); }
.pkg-badge-club { background: var(--gold); color: var(--bg-deep); }

.pkg-name {
    font-family: var(--font-bebas); font-size: 1.8rem;
    color: var(--white); letter-spacing: 2px;
    line-height: 1; margin-bottom: 0.5rem;
}
.pkg-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.75rem; }
.pkg-price strong { font-family: var(--font-bebas); font-size: 2.8rem; color: var(--gold); line-height: 1; }
.pkg-price span { font-size: 0.85rem; color: var(--warm-grey-2); font-weight: 600; }
.pkg-avail {
    display: block; font-size: 0.6rem; letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 700;
    color: var(--warm-grey); margin-bottom: 1.75rem;
}
.m-btn { padding: 0.8rem 1.8rem; font-size: 0.68rem; letter-spacing: 1.5px; }

.pkg-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.pkg-perks li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    font-size: 0.87rem; color: var(--warm-grey-2); line-height: 1.5;
}
.pkg-perks li svg { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.pkg-perks li strong { color: var(--white); }

.m-exclusive { border-color: rgba(232,148,26,0.3); }
.m-exclusive .m-card-ov { background: linear-gradient(90deg, rgba(5,11,24,0.98) 40%, rgba(5,11,24,0.88) 100%); }

.sponsor-form { display: flex; flex-direction: column; gap: 1.2rem; }
.sponsor-form .form-row { gap: 1.2rem; }

/* ============================================================
   CONTACT PAGE — MISSING STYLES
   ============================================================ */
.contact-info-v2 { margin-bottom: 2.5rem; }
.ci-text small { display: block; font-size: 0.75rem; color: var(--warm-grey); margin-top: 0.25rem; }
.contact-booking-cta {
    padding: 1.75rem;
    background: rgba(232,148,26,0.05);
    border: 1px solid rgba(232,148,26,0.18);
    border-radius: 14px;
}
.contact-booking-cta p { font-size: 0.9rem; color: var(--warm-grey-2); margin-bottom: 1.25rem; line-height: 1.7; }

/* ============================================================
   HERO GHOST & LOGO WATERMARKS
   ============================================================ */
.hc-ghost {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-bebas);
    font-size: clamp(10rem, 28vw, 32rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.045);
    letter-spacing: 0.15em;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}

.hc-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 3;
    opacity: 0.11;
    pointer-events: none;
    user-select: none;
}
.hc-logo img {
    width: clamp(320px, 52vw, 700px);
    height: auto;
    filter: grayscale(1) brightness(2);
}

/* Shimmer CTA button */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: btnShimmer 3.5s ease infinite;
}
@keyframes btnShimmer { 0% { left: -100%; } 50%, 100% { left: 200%; } }

/* ============================================================
   SOCIAL HUB — ADDITIONAL STYLES
   ============================================================ */
.social-hub-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.social-sub {
    color: var(--warm-grey-2);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-top: 1.25rem;
}

/* Social card glow overlays */
.social-card { position: relative; overflow: hidden; }
.social-card-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.6s var(--ease-main);
    filter: blur(45px);
    pointer-events: none;
    z-index: 0;
}
.ig-glow  { background: radial-gradient(circle, rgba(131,58,180,0.5), rgba(253,29,29,0.2), transparent 70%); }
.tt-glow  { background: radial-gradient(circle, rgba(105,201,208,0.4), rgba(0,0,0,0.1), transparent 70%); }
.fb-glow  { background: radial-gradient(circle, rgba(24,119,242,0.45), transparent 70%); }
.social-card:hover .social-card-glow { opacity: 1; }
.social-card > * { position: relative; z-index: 1; }

/* Social card text elements */
.social-card-platform { font-family: var(--font-bebas); font-size: 1.8rem; color: var(--white); letter-spacing: 3px; margin-bottom: 0.4rem; line-height: 1; }
.social-card-handle   { font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 2px; margin-bottom: 1.25rem; }
.social-card-desc     { font-size: 0.88rem; color: var(--warm-grey-2); line-height: 1.75; margin-bottom: 2rem; flex: 1; }
.social-card-cta      { font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.4rem; }

/* Instagram feed + TikTok embed */
.social-feed-wrap {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 2rem;
    align-items: start;
}

.ig-feed-block, .tt-embed-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
}

.ig-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.ig-feed-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.ig-feed-header small, .tt-embed-header small {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-top: 0.3rem;
}

.ig-icon, .tt-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.ig-view-all {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(232,148,26,0.3);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.ig-view-all:hover { background: rgba(232,148,26,0.1); border-color: var(--gold); }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.ig-post {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.ig-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-main);
}
.ig-post:hover .ig-img { transform: scale(1.08); }

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,11,24,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.ig-overlay span {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}
.ig-post:hover .ig-overlay { opacity: 1; }

/* TikTok embed block */
.tt-embed-header { margin-bottom: 1.25rem; }
.tt-embed-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

/* ============================================================
   SPONSOR MARQUEE SECTION
   ============================================================ */
.sponsor-ticker-section {
    padding: 7rem 3rem;
    background: var(--bg-deep);
}

.sponsor-marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.sponsor-marquee {
    display: flex;
    width: fit-content;
    animation: sponsorMarquee 40s linear infinite;
}

.sponsor-item {
    flex: 0 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item img {
    height: 220px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: all 0.4s var(--ease-main);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 2.5rem 5rem;
}

.sponsor-item:hover img {
    transform: scale(1.06);
    background: rgba(255,255,255,0.14);
    border-color: rgba(232,148,26,0.4);
    box-shadow: 0 10px 32px rgba(232,148,26,0.15);
}

@keyframes sponsorMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.sponsor-ticker-header {
    margin-bottom: 4rem;
}

/* ============================================================
   JOIN CTA — HOMEPAGE
   ============================================================ */
.join-cta {
    position: relative;
    padding: 9rem 3rem;
    background: var(--bg-deep);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.join-cta-photo {
    position: absolute;
    inset: 0;
    background-image: url('images/image.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.2) grayscale(100%);
    z-index: 1;
}
.join-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at center, rgba(255,68,0,0.5) 0%, transparent 80%);
    z-index: 2;
}
.join-cta-inner {
    position: relative;
    z-index: 3;
    max-width: 780px;
}
.join-eyebrow {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.join-cta h2 {
    font-family: var(--font-bebas);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.join-cta h2 em { font-style: normal; color: var(--gold); }
.join-cta p {
    font-size: 1rem;
    color: var(--warm-grey-2);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}
.join-cta-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   NEWS SECTION — HOMEPAGE
   ============================================================ */
.news-home {
    padding: 7rem 3rem;
    background: var(--bg-deep);
}
.news-header {
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}
.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.news-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--time-fast) var(--ease-main),
                border-color var(--time-fast) var(--ease-main),
                box-shadow var(--time-fast) var(--ease-main);
}
.news-card:hover {
    transform: translateY(-7px);
    border-color: rgba(232,148,26,0.28);
    box-shadow: 0 22px 45px rgba(0,0,0,0.45);
}
.news-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: transform 0.8s var(--ease-main);
}
.news-card:hover .news-img { transform: scale(1.05); }
.news-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-tag {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.news-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.45;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.news-card p {
    font-size: 0.87rem;
    color: var(--warm-grey-2);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    flex: 1;
}
.news-link {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: color 0.3s;
}
.news-link:hover { color: var(--gold-bright); }
.news-view-all {
    max-width: 1200px;
    margin: 3rem auto 0;
    text-align: center;
}

/* News Carousel */
.news-carousel-wrap { position: relative; overflow: hidden; max-width: 1200px; margin: 0 auto; }
.news-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s var(--ease-main);
}
.news-carousel-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--time-fast) var(--ease-main), border-color var(--time-fast) var(--ease-main);
}
.news-carousel-card:hover { transform: translateY(-6px); border-color: rgba(232,148,26,0.25); }
.news-carousel-card .news-img { height: 200px; background-size: cover; background-position: center; flex-shrink: 0; transition: transform 0.8s var(--ease-main); }
.news-carousel-card:hover .news-img { transform: scale(1.04); }
.news-carousel-card .news-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

/* Carousel Dots — mobile only */
.news-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.75rem;
}
.ncd {
    width: 8px; height: 8px;
    border-radius: 100px;
    background: rgba(255,255,255,0.2);
    border: none; cursor: pointer;
    transition: all 0.3s var(--ease-main);
    padding: 0;
}
.ncd.active { background: var(--gold); width: 24px; }

/* Desktop: static 3-card grid, no carousel behaviour */
@media (min-width: 769px) {
    .news-carousel-wrap { overflow: visible; }
    .news-carousel { transform: none !important; transition: none !important; flex-wrap: wrap; }
    .news-carousel-card { flex: 0 0 calc(33.333% - 1rem); }
}

@media (max-width: 768px) {
    /* Bleed wrap to full viewport width so 9vw padding centers 82vw cards exactly */
    .news-carousel-wrap {
        overflow: hidden;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
    }
    .news-carousel {
        padding: 0 9vw;
        gap: 1.5rem;
    }
    .news-carousel-card {
        flex: 0 0 82vw;
    }
    .news-carousel-dots { display: flex; }

    /* Center text content inside cards */
    .news-carousel-card .news-body { text-align: center; }
    .news-carousel-card .news-link { justify-content: center; }

    /* Center nc-body cards on news.html */
    .nc-body { text-align: center; }
    .nc-meta { justify-content: center; gap: 1rem; }
    .nc-read { display: block; text-align: center; }
}

/* ============================================================
   FAQ — HOMEPAGE (LIGHT SECTION)
   ============================================================ */
.faq {
    padding: 7rem 3rem;
}
.faq-light {
    background: var(--cream);
    color: var(--bg-deep);
}
.faq-light .slabel span { color: var(--gold); }
.faq-light .stitle { color: var(--navy); }
.faq-light .stitle em { color: var(--gold); }
.faq-light .faq-q { color: var(--navy); }
.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.faq-header { margin-bottom: 3.5rem; }
.faq-light .faq-list { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-light .faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }

/* ============================================================
   MOBILE RESPONSIVE — FULL OVERHAUL
   ============================================================ */

/* ---- TABLET (≤1024px) ---- */
@media (max-width: 1024px) {
    header { width: calc(100% - 2rem); padding: 0 1.5rem; }
    .nav-left ul, .nav-right ul { gap: 1.5rem; }
    .about-home-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .about-home-imgcol { max-width: 560px; margin: 0 auto; }
    .social-feed-wrap { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .prog-grid { grid-template-columns: repeat(2, 1fr); }
    .social-platforms { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .staff-featured { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .staff-img-wrap { max-width: 500px; margin: 0 auto; }
    .staff-stats-row { justify-content: center; }
    .how-steps-v2 { grid-template-columns: 1fr; }
    .age-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .srow-inner { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .srow-alt .srow-inner { direction: ltr; }
    .m-card { flex-direction: column; }
    .m-card-left, .m-card-right { width: 100%; padding: 3rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .news-featured-v2 { grid-template-columns: 1fr; }
    .gallery-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .values-grid-v2 { grid-template-columns: 1fr; }
    .spb-grid { grid-template-columns: repeat(2, 1fr); }
    .spb-stats { grid-template-columns: repeat(2, 1fr); }
    .spb-stat { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .sh-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---- MOBILE (≤768px) ---- */
@media (max-width: 768px) {

    /* --- NAV (MOBILE — logo left, burger right, nothing else) --- */
    header {
        width: calc(100% - 2rem);
        max-width: none;
        height: 62px;
        top: 0.75rem;
        border-radius: 100px;
        padding: 0 1rem 0 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-left,
    .nav-right-wrap { display: none !important; }
    .header-logo { flex: 0 0 auto; }
    .header-logo img { height: 42px; }
    .menu-btn { display: flex; flex: 0 0 auto; }

    /* --- FULLSCREEN MENU --- */
    .fullscreen-menu {
        padding: 5.5rem 1.75rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .fullscreen-menu nav {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }
    .fullscreen-menu nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .fullscreen-menu nav ul li {
        width: 100%;
        max-width: 320px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .fullscreen-menu nav ul li a {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        padding: 0.6rem 0;
        justify-content: center;
        gap: 1rem;
    }
    .fullscreen-menu::before { width: 80vw; height: 80vw; }
    .menu-socials {
        justify-content: center;
        gap: 0.5rem;
        padding-top: 1.5rem;
        width: 100%;
        max-width: 320px;
        border-top: 1px solid rgba(255,255,255,0.07);
    }

    /* --- GLOBAL TYPOGRAPHY --- */
    .stitle { font-size: clamp(2.4rem, 9vw, 3.5rem); }
    .slabel span { font-size: 0.65rem; }

    /* --- GLOBAL SECTION PADDING --- */
    .about-home, .prog-section, .social-hub, .news-home,
    .faq, .join-cta, .sponsor-ticker-section,
    .section-dark-inner, .section-light-inner { padding: 4.5rem 1.25rem; }

    /* --- HERO --- */
    .hero-cap { padding: 0 1.25rem; }
    .hc-eyebrow { font-size: 0.6rem; }
    .hc-title { font-size: clamp(3rem, 12vw, 5rem); line-height: 0.9; }
    .hc-sub { font-size: 0.9rem; max-width: 100%; }
    .hc-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hc-ctas .btn { width: 100%; text-align: center; }
    .hc-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hc-stat { min-width: 80px; }

    /* --- ABOUT HOME --- */
    .about-home-textcol .btn { width: 100%; text-align: center; }

    /* --- PROGRAMS --- */
    .prog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .prog-card { min-height: 380px; }
    .prog-header { text-align: center; margin-bottom: 3rem; }
    /* Team CTA */
    .prog-cta [style*="right: 3rem"] { display: none !important; } /* hide badge on mobile */

    /* --- SOCIAL HUB --- */
    .social-promo-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .social-feed-wrap { grid-template-columns: 1fr; }
    .sh-cards { grid-template-columns: 1fr; }

    /* --- SPONSOR MARQUEE --- */
    .sponsor-ticker-section { padding: 4rem 1.25rem; overflow: hidden; }
    .sponsor-ticker-header { margin-bottom: 2.5rem; text-align: center; }
    .sponsor-marquee-wrap { -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
    .sponsor-item img { height: 120px; max-width: 230px; padding: 1.25rem 2.5rem; }
    .sponsor-cta-wrap { padding: 0 1.25rem; }
    .sponsor-cta-wrap .btn { width: 100%; text-align: center; }

    /* --- NEWS --- */
    .news-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .news-header { text-align: center; margin-bottom: 3rem; }
    .news-view-all { text-align: center; }

    /* --- FAQ --- */
    .faq-header { text-align: center; margin-bottom: 2rem; }
    .faq-clean-header { margin-bottom: 2rem; }
    .faq-q { font-size: 0.82rem; padding: 1.1rem 0; }
    .faq-a p { padding-bottom: 1.1rem; font-size: 0.82rem; line-height: 1.65; }
    .faq-icon { font-size: 1.1rem; }
    .faq-clean { padding: 3.5rem 1.25rem; }

    /* --- JOIN CTA --- */
    .join-cta { padding: 3.5rem 1.25rem; }
    .join-cta h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); margin-bottom: 1rem; }
    .join-cta p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.75rem; }
    .join-cta-btns { flex-direction: column; gap: 0.75rem; }
    .join-cta-btns .btn { width: 100%; justify-content: center; }
    .join-eyebrow { font-size: 0.55rem; margin-bottom: 1rem; }
    .join-cta-text { padding: 4rem 1.5rem; text-align: center; }
    .join-cta-text .stitle { font-size: clamp(2.5rem, 10vw, 4rem); }
    .join-cta-text .btn { width: 100%; text-align: center; margin-top: 1.5rem; }

    /* --- FOOTER --- */
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
    .footer-logo { justify-content: center; }
    .footer-socials { justify-content: center; }

    /* --- SUBPAGE: ABOUT --- */
    .srow-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .values-grid-v2 { grid-template-columns: 1fr; }
    .impact-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tl2-item { padding-left: 36px; }
    .tl2-dot { width: 12px; height: 12px; left: 0; }

    /* --- SUBPAGE: SESSIONS --- */
    .age-grid-v2 { grid-template-columns: 1fr; }
    .how-steps-v2 { grid-template-columns: 1fr; }
    .girls-section-grid { grid-template-columns: 1fr; text-align: center; }

    /* --- SUBPAGE: STAFF --- */
    .staff-featured { grid-template-columns: 1fr; text-align: center; }
    .staff-img-wrap { max-width: 100%; }
    .staff-stats-row { justify-content: center; }
    .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .staff-card { padding: 1.5rem 1rem; }

    /* --- SUBPAGE: CONTACT --- */
    .contact-layout-v2 { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-v2 { padding: 1.75rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .contact-info-v2 { text-align: center; }

    /* --- SUBPAGE: SPONSOR --- */
    .spb-grid { grid-template-columns: 1fr; }
    .spb-stats { grid-template-columns: repeat(2, 1fr); }
    .spb-stat { border-bottom: 1px solid rgba(255,255,255,0.07); }

    /* --- SUBPAGE: MERCHANDISE --- */
    .merch-features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .merch-info-v2 { grid-template-columns: repeat(2, 1fr); }
    .m-card { flex-direction: column; }
    .m-card-left, .m-card-right { width: 100%; padding: 2rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .m-card-right { border-bottom: none; }

    /* --- SUBPAGE: NEWS --- */
    .nf-body { padding: 1.5rem; }
    .news-featured-v2 { grid-template-columns: 1fr; }
    .news-grid-v2 { grid-template-columns: 1fr; }

    /* --- SUBPAGE: MEDIA --- */
    .album-grid { columns: 2; column-gap: 0.5rem; }
    .sh-cards { grid-template-columns: 1fr; }

    /* --- SECTION LABEL ALIGNMENT --- */
    .slabel { justify-content: flex-start; }
    .sponsor-ticker-header .slabel,
    .social-hub-header .slabel,
    .news-header .slabel,
    .faq-header .slabel,
    .prog-header .slabel,
    .section-dark-inner .reveal .slabel,
    .section-light-inner .reveal .slabel { justify-content: center; }
}

/* ---- SMALL MOBILE (≤480px) ---- */
@media (max-width: 480px) {
    .stitle { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-cap { padding: 0 1rem; }
    .hc-title { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .staff-grid { grid-template-columns: 1fr; }
    .impact-stats-grid { grid-template-columns: 1fr; }
    .merch-info-v2 { grid-template-columns: 1fr; }
    .spb-stats { grid-template-columns: 1fr; }
    .album-grid { columns: 1; }
    .sponsor-item img { height: 100px; max-width: 190px; padding: 1rem 2rem; }
    .prog-cta { min-height: 240px !important; }
    .prog-cta > div[style*="padding"] { padding: 2rem 1.5rem !important; }
    .fullscreen-menu { padding: 4.5rem 1.25rem 2.5rem; }
    .fullscreen-menu nav ul li a { font-size: clamp(1.8rem, 10vw, 2.8rem); }
    .join-cta h2 { font-size: clamp(2rem, 12vw, 3rem); }
    .join-cta p { font-size: 0.8rem; }
    .faq-q { font-size: 0.78rem; padding: 0.9rem 0; }
    .faq-a p { font-size: 0.78rem; padding-bottom: 0.9rem; }
}

/* ============================================================
   NAV PERFECT ALIGNMENT
   ============================================================ */
.main-nav { display: flex; align-items: center; }

/* ============================================================
   SPONSOR PAGE — BENEFITS GRID
   ============================================================ */
.spb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.spb-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-main), border-color 0.3s, box-shadow 0.3s;
}
.spb-card:hover { transform: translateY(-8px); border-color: rgba(232,148,26,0.3); box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.spb-img { position: relative; height: 210px; overflow: hidden; }
.spb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-main); filter: brightness(0.7); }
.spb-card:hover .spb-img img { transform: scale(1.05); filter: brightness(0.85); }
.spb-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(5,11,24,0.75)); }
.spb-tag {
    position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
    background: var(--gold); color: var(--bg-deep);
    font-size: 0.58rem; font-weight: 800; letter-spacing: 2px;
    padding: 0.3rem 0.85rem; border-radius: 100px; text-transform: uppercase;
}
.spb-body { padding: 1.75rem 2rem 2rem; }
.spb-icon {
    width: 42px; height: 42px;
    background: rgba(232,148,26,0.1); color: var(--gold);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.spb-body h3 { font-family: var(--font-bebas); font-size: 1.65rem; color: var(--white); margin-bottom: 0.6rem; line-height: 1; }
.spb-body p { font-size: 0.88rem; color: var(--warm-grey-2); line-height: 1.7; }
.spb-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
}
.spb-stat { text-align: center; padding: 2.25rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.07); }
.spb-stat:last-child { border-right: none; }
.spb-stat strong { display: block; font-family: var(--font-bebas); font-size: 3.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.spb-stat span { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-grey-2); font-weight: 700; }

/* ============================================================
   MEDIA PAGE — MASONRY ALBUM GRID
   ============================================================ */
.mega-album {
    padding: 5rem 2.5rem 6rem;
    background: var(--bg-deep);
}
.mega-album .album-inner {
    max-width: 1360px;
    margin: 0 auto;
}
.mega-album .album-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.album-grid {
    columns: 4;
    column-gap: 0.75rem;
}
.album-item {
    break-inside: avoid;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.album-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-main), filter 0.4s;
    filter: brightness(0.82);
}
.album-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* ============================================================
   MEDIA PAGE — SOCIAL HUB
   ============================================================ */
.sh-inner { max-width: 1200px; margin: 0 auto; }
.sh-header { text-align: center; margin-bottom: 3rem; }
.sh-title { font-family: var(--font-bebas); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); line-height: 0.95; margin-bottom: 0.75rem; }
.sh-title em { font-style: normal; color: var(--gold); }
.sh-sub { font-size: 0.95rem; color: var(--warm-grey-2); max-width: 480px; margin: 0 auto; line-height: 1.75; }
.sh-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sh-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 2.5rem;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; text-decoration: none;
    transition: transform 0.3s var(--ease-main), border-color 0.3s, background 0.3s;
}
.sh-card:hover { transform: translateY(-8px); border-color: var(--gold); background: rgba(232,148,26,0.05); }
.sh-icon { width: 52px; height: 52px; color: var(--gold); margin-bottom: 1.25rem; }
.sh-name { font-family: var(--font-bebas); font-size: 1.75rem; color: var(--white); letter-spacing: 2px; line-height: 1; margin-bottom: 0.35rem; }
.sh-handle { font-size: 0.68rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; display: block; }
.sh-follow {
    font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--warm-grey); font-weight: 700;
    margin-top: auto; padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    width: 100%; text-align: center;
    transition: color 0.3s;
}
.sh-card:hover .sh-follow { color: var(--gold); }

/* ============================================================
   MERCH PAGE — FEATURE HIGHLIGHTS BAR
   ============================================================ */
.merch-features {
    padding: 3.5rem 3rem;
    background: #080d1b;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.merch-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.mf-item {
    display: flex; gap: 1.25rem; align-items: flex-start;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    transition: border-color 0.3s, background 0.3s;
}
.mf-item:hover { border-color: rgba(232,148,26,0.3); background: rgba(232,148,26,0.03); }
.mf-icon {
    width: 42px; height: 42px;
    background: rgba(232,148,26,0.1); color: var(--gold);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mf-item h4 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--white); margin-bottom: 0.35rem; font-weight: 700; }
.mf-item p { font-size: 0.82rem; color: var(--warm-grey-2); line-height: 1.6; }

/* ============================================================
   MERCH PAGE — ORDERING INFO CARDS
   ============================================================ */
.merch-info-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.minfo-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s var(--ease-main), box-shadow 0.3s;
}
.minfo-item:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.minfo-icon {
    width: 46px; height: 46px;
    background: rgba(232,148,26,0.1); color: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.minfo-item h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 700; }
.minfo-item p { font-size: 0.88rem; color: var(--warm-grey); line-height: 1.7; }

@media (max-width: 1024px) {
    .merch-info-v2 { grid-template-columns: repeat(2, 1fr); }
    .sh-cards { grid-template-columns: repeat(2, 1fr); }
    .album-grid { columns: 3; }
    .spb-grid { grid-template-columns: 1fr; }
    .spb-stats { grid-template-columns: repeat(2, 1fr); }
    .spb-stat:nth-child(2) { border-right: none; }
    .spb-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
    .spb-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 768px) {
    .nav-right-wrap { justify-content: flex-end; }
    .spb-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SWIPER CAROUSEL FIXES (overridden by new rules at end of file)
   ============================================================ */

/* ============================================================
   BENTO GRID CLASSES
   ============================================================ */
.bento-full { grid-column: span 12; }
.bento-half { grid-column: span 12; }
@media (min-width: 768px) {
    .bento-half { grid-column: span 6; }
}

/* ============================================================
   HERO — NEW TEXT SYSTEM
   ============================================================ */
.hc-headline-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 0.88;
}
.hc-line-a {
    font-family: var(--font-bebas);
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    color: rgba(255,255,255,0.6);
    letter-spacing: 6px;
}
.hc-line-b {
    font-family: var(--font-bebas);
    font-size: clamp(3.5rem, 9vw, 8rem);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 0.9;
}
.hc-line-c {
    font-family: var(--font-bebas);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: var(--gold);
    letter-spacing: 4px;
    margin-top: 0.4rem;
}
.hc-desc {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,0.65);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    font-weight: 400;
}

/* ============================================================
   ABOUT — LIGHT SECTION OVERRIDES
   ============================================================ */
.about-light .slabel span { color: var(--gold); }
.about-light .about-title { color: var(--navy); }
.about-light .about-title em {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    font-style: normal;
}
.about-body-light { color: #5a5a5a !important; }
.about-body-light p { color: #5a5a5a; margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.75; }
.about-light .about-home-badge {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--gold);
}

/* ============================================================
   PATHWAYS — 4-CARD HORIZONTAL ROW
   ============================================================ */
.prog-grid-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem;
}
.prog-grid-row .prog-card {
    min-height: 520px;
    padding: 2rem 1.5rem;
    border-radius: 24px;
}
.prog-grid-row .prog-card h3 {
    font-size: 1.85rem;
    line-height: 1;
}
.prog-grid-row .prog-card p {
    font-size: 0.82rem;
    line-height: 1.6;
}
.prog-grid-row .prog-num {
    font-size: 5rem;
}
.pathways-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
}
.pathways-cta p {
    color: var(--warm-grey-2);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
    .prog-grid-row { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
    .prog-grid-row .prog-card { min-height: 400px; }
}
@media (max-width: 768px) {
    .prog-grid-row { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
    .prog-grid-row .prog-card { min-height: 280px; padding: 1.25rem 1rem; }
    .prog-grid-row .prog-card h3 { font-size: 1.4rem; }
    .prog-grid-row .prog-card p { font-size: 0.75rem; line-height: 1.4; }
    .prog-grid-row .prog-num { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .prog-grid-row { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem; }
    .prog-grid-row .prog-card { min-height: 240px; padding: 1rem 0.75rem; }
    .prog-grid-row .prog-card h3 { font-size: 1.15rem; }
    .prog-grid-row .prog-card p { font-size: 0.7rem; line-height: 1.3; }
    .prog-grid-row .prog-num { font-size: 2rem; }
    .prog-grid-row .prog-chip { font-size: 0.55rem; padding: 2px 6px; }
}

/* ============================================================
   JOIN CTA — CLEANED UP
   ============================================================ */
.join-cta {
    padding: 4rem 1.5rem;
    background: var(--bg-deep);
    overflow: visible;
    display: block;
}
.join-cta-card {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 36px;
    overflow: hidden;
    padding: 4.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .join-cta-card { padding: 3rem 1.75rem; border-radius: 24px; }
}

/* ============================================================
   SOCIAL — NEW PLATFORM CARDS
   ============================================================ */
.social-hub {
    padding: 6rem 3rem;
    background: #080e1c;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.social-hub-sub {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    text-align: center;
    max-width: 460px;
    margin: 0.75rem auto 0;
    line-height: 1.65;
}
.social-platforms-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 3rem auto 0;
}
.soc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 2.25rem 1.5rem 1.75rem;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s var(--ease-main), border-color 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.soc-card:hover { transform: translateY(-10px); }
.soc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: background 0.3s, color 0.3s;
}
.soc-name {
    font-family: var(--font-bebas);
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}
.soc-handle {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}
.soc-cta {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    width: 100%;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.3s;
}

/* Instagram */
.soc-ig .soc-icon { color: #e1306c; }
.soc-ig:hover { border-color: rgba(225,48,108,0.5); background: rgba(225,48,108,0.07); box-shadow: 0 24px 48px rgba(225,48,108,0.14); }
.soc-ig:hover .soc-icon { background: rgba(225,48,108,0.18); }

/* TikTok */
.soc-tt .soc-icon { color: #69c9d0; }
.soc-tt:hover { border-color: rgba(105,201,208,0.5); background: rgba(105,201,208,0.06); box-shadow: 0 24px 48px rgba(105,201,208,0.12); }
.soc-tt:hover .soc-icon { background: rgba(105,201,208,0.18); }

/* X / Twitter */
.soc-x .soc-icon { color: rgba(255,255,255,0.75); }
.soc-x:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); box-shadow: 0 24px 48px rgba(255,255,255,0.06); }
.soc-x:hover .soc-icon { background: rgba(255,255,255,0.12); color: var(--white); }

/* YouTube */
.soc-yt .soc-icon { color: #ff3333; }
.soc-yt:hover { border-color: rgba(255,51,51,0.5); background: rgba(255,51,51,0.07); box-shadow: 0 24px 48px rgba(255,51,51,0.14); }
.soc-yt:hover .soc-icon { background: rgba(255,51,51,0.18); }

@media (max-width: 768px) {
    .social-hub { padding: 4rem 1.25rem; }
    .social-platforms-new { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .soc-card { padding: 1.75rem 1.25rem 1.5rem; border-radius: 16px; }
    .soc-icon { width: 48px; height: 48px; }
    .soc-name { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .social-platforms-new { gap: 0.65rem; }
    .soc-card { padding: 1.5rem 1rem; }
}

/* ============================================================
   SPONSOR CTA WRAP
   ============================================================ */
.sponsor-cta-wrap {
    text-align: center;
    margin-top: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}
.sponsor-cta-wrap h3 {
    font-family: var(--font-bebas);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.85rem;
    letter-spacing: 1px;
}
.sponsor-cta-wrap p {
    color: var(--warm-grey-2);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.65;
}

/* ============================================================
   MEDIA SECTION
   ============================================================ */
.media-section {
    background: #07101f;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 5rem 2rem 5rem;
}
.media-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.media-slide-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.media-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.media-footer {
    text-align: center;
    margin-top: 2.5rem;
}
.swiper-slide-active .media-slide-img { transform: none; }
@media (max-width: 768px) {
    .media-section { padding: 4rem 1rem 4rem; }
    .media-slide-img { aspect-ratio: 4/3; border-radius: 14px; }
}

/* ============================================================
   FAQ — NEW COMPACT STYLE
   ============================================================ */
.faq-new {
    padding: 5rem 1.5rem 6rem;
    background: #0c0c0c;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-new-inner {
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.faq-new .faq-list {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0;
}
.faq-new .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q-new {
    width: 100%;
    padding: 1.1rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    gap: 1rem;
}
.faq-q-new .faq-icon {
    font-size: 1.1rem;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-new .faq-a p {
    padding: 0 0 1.1rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.87rem;
    line-height: 1.7;
    margin: 0;
}
.faq-new .faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-new .faq-item.open .faq-a { max-height: 300px; }
@media (max-width: 768px) {
    .faq-new { padding: 3.5rem 1.25rem 4rem; }
    .faq-q-new { font-size: 0.85rem; padding: 0.95rem 0; }
}

/* ============================================================
   FOOTER — REDESIGN
   ============================================================ */
.footer-new {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 3rem 2.5rem;
}
.footer-new-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.fn-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    flex-wrap: wrap;
}
.fn-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    flex-shrink: 0;
}
.fn-brand img { height: 48px; width: auto; }
.fn-brand-text { display: flex; flex-direction: column; gap: 2px; }
.fn-brand-name {
    font-family: var(--font-bebas);
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1;
}
.fn-brand-tag {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.fn-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.fn-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.25s;
}
.fn-nav a:hover { color: var(--white); }
.fn-socials {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-shrink: 0;
}
.fn-soc-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}
.fn-soc-btn:hover {
    color: var(--gold);
    border-color: rgba(255,68,0,0.4);
    background: rgba(255,68,0,0.08);
    transform: translateY(-3px);
}
.fn-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}
.fn-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.fn-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}
.fn-bottom-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.fn-bottom-right span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}
.fn-bottom-right a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.25s;
}
.fn-bottom-right a:hover { color: var(--gold); }
@media (max-width: 1024px) {
    .fn-nav { gap: 1.25rem; }
}
@media (max-width: 768px) {
    .footer-new { padding: 3rem 1.5rem 2rem; }
    .fn-top { flex-direction: column; align-items: center; text-align: center; gap: 2rem; padding-bottom: 2rem; }
    .fn-nav { gap: 1rem; justify-content: center; }
    .fn-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
    .fn-bottom-right { justify-content: center; gap: 1rem; }
}

/* ============================================================
   SWIPER OVERRIDES — MEDIA CAROUSEL
   ============================================================ */
.media-swiper { width: 100%; padding-bottom: 3.5rem !important; }
.media-swiper .swiper-wrapper { align-items: stretch; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.35); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* Nav arrows */
.media-swiper .swiper-button-prev,
.media-swiper .swiper-button-next {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    top: 44%;
    transition: background 0.3s, border-color 0.3s;
}
.media-swiper .swiper-button-prev:hover,
.media-swiper .swiper-button-next:hover {
    background: rgba(255,68,0,0.25);
    border-color: var(--gold);
}
.media-swiper .swiper-button-prev::after,
.media-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .media-swiper .swiper-button-prev,
    .media-swiper .swiper-button-next { display: none; }
}

/* ============================================================
   LOGO INTEGRATION — SECTION BACKGROUNDS
   ============================================================ */

/* Shared base for all section logo watermarks */
.sec-logo {
    position: absolute;
    pointer-events: none;
    user-select: none;
    background-image: url('images/logo_white.png');
    background-size: contain;
    background-repeat: no-repeat;
    filter: grayscale(1) brightness(2);
    z-index: 0;
}

/* Pathways: large logo anchored top-right, behind the card grid */
.prog-section { position: relative; overflow: hidden; }
.sec-logo-pathways {
    top: -5%;
    right: -8%;
    width: clamp(260px, 38vw, 560px);
    height: clamp(260px, 38vw, 560px);
    background-position: center right;
    opacity: 0.05;
}

/* Join CTA card: logo behind the glow, contained by overflow:hidden */
.sec-logo-cta {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(200px, 40%, 400px);
    height: clamp(200px, 40%, 400px);
    background-position: center;
    opacity: 0.07;
    z-index: 2;
}

/* Social hub: logo soft top-left */
.social-hub { position: relative; overflow: hidden; }
.sec-logo-social {
    top: -15%;
    left: -6%;
    width: clamp(220px, 34vw, 480px);
    height: clamp(220px, 34vw, 480px);
    background-position: top left;
    opacity: 0.045;
}

/* FAQ: large centered logo ghost */
.faq-new { position: relative; overflow: hidden; }
.sec-logo-faq {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(260px, 42vw, 560px);
    height: clamp(260px, 42vw, 560px);
    background-position: center;
    opacity: 0.05;
}

/* Sponsor section */
.sponsor-ticker-section { position: relative; overflow: hidden; }
.sec-logo-sponsors {
    bottom: -10%;
    right: -5%;
    width: clamp(200px, 32vw, 460px);
    height: clamp(200px, 32vw, 460px);
    background-position: bottom right;
    opacity: 0.04;
}

