/* ============================================================
   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:    #050b18;
    --bg-card:    rgba(255,255,255,0.02);
    --gold:       #e8941a;
    --gold-bright:#fbb034;
    --cream:      #fbf9f4;
    --white:      #ffffff;
    --navy:       #0a1e45;
    --warm-grey:  #a09070;
    --warm-grey-2:#c8b898;
    --text-dim:   rgba(240,236,228,0.4);
    
    --font-main:  'Inter', sans-serif;
    --font-heading:'Outfit', sans-serif;
    --font-bebas: 'Bebas Neue', sans-serif;
    
    --radius-main: 12px;
    --radius-card: 20px;
    --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('assets/images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.035;
    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;
}

/* Global Reveal Animations */
.reveal, .reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}
.reveal.active, .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================================
   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);
}

/* Logo + wordmark (left) */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}
.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; gap: 6px; background: none; border: none; padding: 10px; cursor: pointer; z-index: 600; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── FULLSCREEN MENU — REDESIGN ── */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #060c1a;
    z-index: 450;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6rem 4rem 3.5rem;
    opacity: 0;
    visibility: hidden;
    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(232,148,26,0.14) 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(240,236,228,0.72);
    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;
    justify-content: center;
    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('assets/images/home foto.webp'); background-size: cover; background-position: center top; filter: brightness(0.38) saturate(1.2); transform: scale(1.05); animation: heroZoom 20s linear infinite alternate; z-index: 1; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hc-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,11,24,0.1) 0%, rgba(5,11,24,0.5) 50%, var(--bg-deep) 88%); 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); margin-right: -5px; text-align: center; }

.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 { height: 50px; font-size: 0.75rem; }

.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);
    z-index: 5;
    opacity: 0;
    transition: opacity 1s ease 1.4s;
}
body.hero-ready .scroll-ind { opacity: 1; animation: bounce 2s ease 2.4s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }

/* ── HERO ENTRANCE ANIMATIONS ────────────────────────────── */
.hc-eyebrow-simple,
.hc-eyebrow,
.hc-headline,
.hc-btns {
    opacity: 0;
    transform: translateY(28px);
}

body.hero-ready .hc-eyebrow-simple,
body.hero-ready .hc-eyebrow {
    animation: heroItemIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
body.hero-ready .hc-headline {
    animation: heroItemIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
body.hero-ready .hc-btns {
    animation: heroItemIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes heroItemIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   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;
    height: 52px; /* Fixed height for consistent tap target */
    padding: 0 2.8rem; 
    border-radius: 100px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    text-decoration: none; 
    border: 1px solid transparent; 
    transition: all 0.4s var(--ease-main);
}
.btn-gold { background: var(--gold); color: var(--bg-deep); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(232,148,26,0.3); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: var(--white); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,148,26,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: 5.5rem 3rem; background: var(--cream); color: var(--bg-deep); }
.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; }
.stitle em { font-style: normal; color: var(--gold); }
.about-home-lead { font-size: 1.1rem; line-height: 1.8; color: var(--navy); font-weight: 600; margin-bottom: 1.5rem; }
.about-home-body { font-size: 0.95rem; line-height: 1.8; color: var(--warm-grey); 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(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); margin-bottom: 3rem; }
.srl-item strong { display: block; font-family: var(--font-bebas); font-size: 3rem; color: var(--gold); line-height: 1; }
.srl-item span { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); font-weight: 700; }

.about-home-imgcol { position: relative; }
.about-home-photo { border-radius: 20px; 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: 5.5rem 3rem; 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; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; border: 1px solid rgba(255,255,255,0.08); }
.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.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(232,148,26,0.3); padding: 4px 12px; border-radius: 100px; font-weight: 700; white-space: nowrap; }
.prog-card h3 { font-family: var(--font-bebas); font-size: 3rem; line-height: 1; color: var(--white); margin-bottom: 1rem; }
.prog-card p { font-size: 0.9rem; color: var(--warm-grey-2); margin-bottom: 2rem; opacity: 0.8; }

@media (min-width: 769px) {
    .prog-card h3 {
        height: 110px;
        display: flex;
        align-items: flex-end;
    }
    .prog-card p {
        height: 90px;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
    }
}
.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: rgba(232,148,26,0.3); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

/* Social Hub */
.social-hub { padding: 5rem 3rem; background: #080d1b; }
.social-hub-inner { max-width: 1200px; margin: 0 auto; }
.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; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5,11,24,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-main);
    cursor: zoom-out;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    transform: scale(0.92);
    transition: transform 0.5s var(--ease-main), opacity 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.lightbox.open img { transform: scale(1); }

/* Navigation Arrows */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    color: var(--white);
    cursor: pointer;
    padding: 2rem;
    z-index: 10001;
    user-select: none;
    transition: all 0.3s var(--ease-main);
    opacity: 0.4;
    font-family: serif; /* For sharp lsaquo/rsaquo */
}
.lb-nav:hover { opacity: 1; color: var(--gold); transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3.5rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
    z-index: 10002;
    transition: transform 0.3s var(--ease-main);
}
.lightbox-close:hover { transform: scale(1.1) rotate(90deg); color: var(--gold); }

@media (max-width: 768px) {
    .lightbox { padding: 1rem; }
    .lightbox-close { top: 1rem; right: 1.5rem; font-size: 3rem; }
    .lb-nav { font-size: 3.5rem; padding: 1rem; }
    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
}

/* 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: 1200px; margin: 0 auto; position: relative; }

/* ============================================================
   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: 2/3; }
.staff-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.staff-featured .staff-img-wrap { aspect-ratio: 2/3; }
.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: 3/4; }
.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-img-col { position: relative; }
.girls-img-frame { position: relative; padding-bottom: 4rem; padding-right: 3rem; }
.girls-main-img { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.girls-main-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(5,11,24,0.75)); pointer-events: none; z-index: 1; }
.girls-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.girls-img-badge { position: absolute; bottom: 2rem; left: 2rem; z-index: 2; display: flex; align-items: center; gap: 0.6rem; background: rgba(232,148,26,0.15); border: 1px solid rgba(232,148,26,0.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 100px; padding: 0.6rem 1.25rem; font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.girls-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.girls-accent-img { position: absolute; bottom: 0; right: 0; width: 46%; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; border: 5px solid var(--bg-deep); box-shadow: 0 20px 40px rgba(0,0,0,0.6); z-index: 3; }
.girls-accent-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   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(4, 1fr); gap: 2rem; margin-top: 4rem; }
.value-card-v2 { padding: 2.5rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.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); font-size: 0.9rem; }
.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; }

.impact-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,1,0.5,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.impact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
    border-radius: 3px 3px 0 0;
}
.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,.14) !important;
    border-color: rgba(232,148,26,.35) !important;
}
.impact-card:hover::before {
    transform: scaleX(1);
}

/* Join CTA */
.join-cta-v2 { position: relative; padding: 6rem 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(3rem, 8vw, 6.5rem); line-height: 0.88; color: var(--white); margin-bottom: 1.5rem; }
.jcv-inner h2 em { font-style: normal; color: var(--gold); }
.jcv-inner p { font-size: 0.95rem; color: var(--warm-grey-2); margin-bottom: 2rem; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.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: 2rem; }
.m-card { display: flex; background: rgba(6,12,28,0.9); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; overflow: hidden; position: relative; transition: box-shadow 0.4s var(--ease-main); }
.m-card:hover { box-shadow: 0 32px 64px rgba(0,0,0,0.45); }
.m-card-left { width: 38%; padding: 3.5rem; border-right: 1px solid rgba(255,255,255,0.05); z-index: 2; position: relative; }
.m-card-right { width: 62%; padding: 3.5rem; z-index: 2; position: relative; display: flex; align-items: center; }
.m-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.08; filter: grayscale(1) blur(1px); transition: opacity 0.5s; z-index: 1; }
.m-card:hover .m-card-bg { opacity: 0.18; }
.m-card-ov { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(5,11,24,0.98) 0%, rgba(5,11,24,0.8) 55%, rgba(5,11,24,0.65) 100%); z-index: 1; }
.m-card.m-featured { border: 1.5px solid rgba(232,148,26,0.4); box-shadow: 0 0 40px rgba(232,148,26,0.07); }
.m-card.m-featured:hover { border-color: rgba(232,148,26,0.65); box-shadow: 0 32px 64px rgba(0,0,0,0.45), 0 0 40px rgba(232,148,26,0.12); }
.m-featured-wrapper { position: relative; display: flex; flex-direction: column; }
.pkg-popular { 
    position: absolute; 
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: linear-gradient(135deg, var(--gold), #ffb84d); 
    color: #000; 
    font-size: 0.65rem; 
    font-weight: 900; 
    letter-spacing: 3px; 
    padding: 0.55rem 1.8rem; 
    border-radius: 50px; 
    text-transform: uppercase; 
    z-index: 100; 
    box-shadow: 0 10px 30px rgba(232, 148, 26, 0.45);
    white-space: nowrap;
    animation: badgePulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.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: 5rem 3rem; background: #020509; border-top: 1px solid rgba(255,255,255,0.05); }
.social-promo-header { text-align: center; margin-bottom: 3rem; }
.social-promo-header h2 { font-family: var(--font-bebas); font-size: clamp(2.2rem, 4vw, 3rem); letter-spacing: -0.5px; color: var(--white); margin-bottom: 0.5rem; line-height: 1; }
.social-promo-header p { font-size: 0.9rem; color: rgba(200,184,152,0.6); line-height: 1.6; }
.social-promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 820px; margin: 0 auto; }
.social-promo-card { background: rgba(255,255,255,0.018); border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; padding: 2.75rem 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.25rem; text-decoration: none; transition: transform 0.35s var(--ease-main), border-color 0.3s, background 0.3s, box-shadow 0.35s; }
.social-promo-card:hover { transform: translateY(-6px); border-color: rgba(232,148,26,0.28); background: rgba(232,148,26,0.03); box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
.social-promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(232,148,26,0.08);
    border: 1px solid rgba(232,148,26,0.2);
    border-radius: 16px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}
.social-promo-card:hover .social-promo-icon { background: rgba(232,148,26,0.14); border-color: rgba(232,148,26,0.4); }
.social-promo-icon svg { display: block; width: 26px; height: 26px; }
.social-promo-card span { font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: rgba(240,236,228,0.6); transition: color 0.3s; }
.social-promo-card:hover span { 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: #02060f;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 3rem 2.5rem;
    position: relative;
}
.footer-home-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fh-brand {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-decoration: none;
}
.fh-brand img {
    height: 52px;
    width: 52px;
    object-fit: contain;
}
.fh-name {
    font-family: var(--font-bebas);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1.5px;
    display: block;
    line-height: 1;
}
.fh-tagline {
    font-size: 0.75rem;
    color: var(--warm-grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 5px;
}
.fh-links {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}
.fh-links a {
    color: var(--warm-grey-2);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color 0.3s;
}
.fh-links a:hover { color: var(--gold); }
.fh-socials {
    display: flex;
    gap: 0.6rem;
}
.fh-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: var(--warm-grey-2);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}
.fh-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,148,26,0.05); }
.fh-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fh-bottom p {
    font-size: 0.8rem;
    color: var(--warm-grey);
}
.fh-credit {
    font-size: 0.75rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.65;
    letter-spacing: 0.3px;
    transition: opacity 0.25s;
}
.fh-credit:hover { opacity: 1; }

@media (max-width: 1024px) {
    .fh-links { gap: 2rem; }
}
@media (max-width: 768px) {
    /* ── MOBILE FOOTER — structure only, styles defined below ── */
    .footer-home { text-align: center; background: #02060f; }
    .footer-home-inner { flex-direction: column; align-items: 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.active { 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.52rem; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1rem;
}
.pkg-badge-comm { background: rgba(255,255,255,0.07); color: rgba(200,184,152,0.8); }
.pkg-badge-team { background: rgba(232,148,26,0.15); color: var(--gold); border: 1px solid rgba(232,148,26,0.25); }
.pkg-badge-club { background: var(--gold); color: var(--bg-deep); }

.pkg-name {
    font-family: var(--font-bebas); font-size: 2rem;
    color: var(--white); letter-spacing: 2px;
    line-height: 1; margin-bottom: 0.4rem;
}
.m-featured .pkg-name { color: var(--gold); }
.m-exclusive .pkg-name { color: var(--gold-bright); }
.pkg-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.6rem; }
.pkg-price strong { font-family: var(--font-bebas); font-size: 3.2rem; color: var(--gold); line-height: 1; text-shadow: 0 0 24px rgba(232,148,26,0.2); }
.pkg-price span { font-size: 0.85rem; color: rgba(200,184,152,0.6); font-weight: 600; }
.pkg-avail {
    display: block; font-size: 0.58rem; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 700;
    color: rgba(200,184,152,0.45); margin-bottom: 2rem;
}
.m-btn { padding: 0.85rem 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.9rem; }
.pkg-perks li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.86rem; color: rgba(200,184,152,0.8); line-height: 1.55;
}
.pkg-perks li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.pkg-perks li strong { color: var(--white); }

.m-exclusive { border-color: rgba(232,148,26,0.22); }
.m-exclusive .m-card-ov { background: linear-gradient(110deg, rgba(5,11,24,0.99) 0%, rgba(5,11,24,0.9) 55%, rgba(5,11,24,0.75) 100%); }

.sponsor-form { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1.25rem; 
    background: rgba(255,255,255,0.02); 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 32px; 
    padding: 4rem;
    max-width: 1000px; /* Expanded horizontally */
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
}
.sponsor-form .form-field {
    height: 64px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    font-size: 1rem;
    padding: 0 1.5rem;
    width: 100%;
}
.sponsor-form select.form-field { 
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 12px;
    padding-right: 3rem;
}
.sponsor-form textarea.form-field { height: auto; padding: 1.5rem; min-height: 160px; }

/* ============================================================
   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%, -50%);
    z-index: 3;
    opacity: 0.06;
    pointer-events: none;
}
.hc-logo img {
    width: clamp(220px, 32vw, 480px);
    height: auto;
}

/* 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: 8px;
    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: 5rem 0;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sponsor-marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 2.5rem 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 38s linear infinite;
}

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

.header-logo:hover img {
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(232,148,26,0.3));
    transform: scale(1.05);
}

.sponsor-item img {
    height: 72px; /* Balanced for desktop */
    width: auto;
    max-width: 240px;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.sponsor-item:hover img {
    transform: scale(1.08);
}

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

.sponsor-ticker-header {
    margin-bottom: 3.5rem;
    padding: 0 3rem;
    text-align: center;
}

/* ============================================================
   JOIN CTA — HOMEPAGE
   ============================================================ */
.join-cta {
    position: relative;
    padding: 6.5rem 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('assets/images/about_home.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.22) saturate(1.1);
    z-index: 1;
}
.join-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at center, rgba(232,148,26,0.13) 0%, transparent 70%);
    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(3.5rem, 9vw, 7.5rem);
    line-height: 0.88;
    color: var(--white);
    margin-bottom: 1.75rem;
}
.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;
}

/* ============================================================
   REVIEWS — PREMIUM REDESIGN
   ============================================================ */
.reviews-home {
    padding: 7rem 0;
    background: #050b18;
    position: relative;
    overflow: hidden;
}
.reviews-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}
.reviews-header .slabel { justify-content: center; }

.reviews-main-wrap {
    position: relative;
    width: 100%;
    /* overflow intentionally not set here — .reviews-home handles horizontal
       clipping of off-screen carousel cards, allowing hover transforms and
       box-shadows to paint outside this wrapper without being clipped */
}
.reviews-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    cursor: grab;
}
.reviews-carousel:active {
    cursor: grabbing;
}
.review-card {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.review-card-inner {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-main);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.review-card-inner:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(232,148,26,0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
/* Decorative quote watermark */
.review-card-inner::after {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    right: 1.75rem;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s;
}
.review-card-inner:hover::after { opacity: 0.18; }
.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    opacity: 1;
}
.review-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-weight: 400;
}
.review-author {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}
.review-author strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}
.review-author span {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    opacity: 0.8;
}

/* Controls V2 */
.rev-controls-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.rev-v2-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.rev-v2-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-deep);
}
.rev-v2-dots {
    display: flex;
    gap: 0.6rem;
}
.rev-v2-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s;
}
.rev-v2-dots .dot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 100px;
}

.rev-cta-wrap {
    text-align: center;
    margin-top: 4rem;
}
.rev-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(232,148,26,0.3);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s var(--ease-main);
    text-decoration: none;
}
.rev-cta-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232,148,26,0.2);
}
.rev-cta-btn svg {
    transition: transform 0.4s;
}
.rev-cta-btn:hover svg {
    transform: translateX(5px);
}

/* ============================================================
   POLISH ANIMATIONS
   ============================================================ */

/* ── Join CTA — breathing glow ── */
@keyframes ctaGlowPulse {
    0%, 100% { opacity: 0.13; transform: scale(1); }
    50%       { opacity: 0.22; transform: scale(1.08); }
}
.join-cta-glow {
    animation: ctaGlowPulse 5s ease-in-out infinite;
}

/* ── About — badge hover ── */
.about-home-badge {
    transition: transform 0.45s var(--ease-main), box-shadow 0.45s var(--ease-main);
}
.about-home-badge:hover {
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 25px 50px rgba(232,148,26,0.25);
}

/* ── About — photo tilt on hover ── */
.about-home-imgcol:hover .about-home-photo {
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* ── Sponsor marquee — pause on hover ── */
.sponsor-marquee-wrap:hover .sponsor-marquee {
    animation-play-state: paused;
}

/* ── Review cards — entrance stagger ── */
.review-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-main), transform 0.7s var(--ease-main);
}
.reviews-inner.active .review-card { opacity: 1; transform: translateY(0); }

.reviews-inner.active .review-card:nth-child(1) { transition-delay: 0.05s; }
.reviews-inner.active .review-card:nth-child(2) { transition-delay: 0.12s; }
.reviews-inner.active .review-card:nth-child(3) { transition-delay: 0.19s; }
.reviews-inner.active .review-card:nth-child(4) { transition-delay: 0.26s; }
.reviews-inner.active .review-card:nth-child(5) { transition-delay: 0.33s; }
.reviews-inner.active .review-card:nth-child(6) { transition-delay: 0.40s; }
.reviews-inner.active .review-card:nth-child(7) { transition-delay: 0.47s; }
.reviews-inner.active .review-card:nth-child(8) { transition-delay: 0.54s; }
.reviews-inner.active .review-card:nth-child(9) { transition-delay: 0.61s; }

/* ── Slabel — gold line animation ── */
.slabel::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
    transform-origin: left;
    animation: labelLineIn 0.6s var(--ease-main) both;
}
@keyframes labelLineIn {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

/* ── Stat numbers — gold glow when counted ── */
@keyframes goldGlow {
    0%   { text-shadow: none; }
    40%  { text-shadow: 0 0 20px rgba(232,148,26,0.6), 0 0 40px rgba(232,148,26,0.3); }
    100% { text-shadow: none; }
}
.count-up.done {
    animation: goldGlow 1.2s ease forwards;
}

/* ── Program cards — chip bounce on hover ── */
.prog-card:hover .prog-chips {
    transform: translateY(-2px);
    transition: transform 0.4s var(--ease-main);
}

/* ── Prog-link arrow nudge ── */
.prog-link::after {
    content: '';
    display: inline-block;
    transition: transform 0.3s var(--ease-main);
}
.prog-card:hover .prog-link {
    gap: 0.75rem;
    transition: gap 0.3s var(--ease-main);
}

/* ── Timeline card — left slide on hover ── */
.tl2-card {
    transition: transform 0.4s var(--ease-main), border-color 0.4s, background 0.4s;
}

/* ── Nav links — underline slide ── */
.main-nav a {
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease-main);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* ── FAQ — icon smooth rotation ── */
.faq-icon { display: inline-flex; transition: transform 0.35s var(--ease-main), color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }

/* ── Social promo cards — icon scale ── */
.social-promo-card:hover .social-promo-icon {
    transform: scale(1.18) rotate(-6deg);
    transition: transform 0.4s var(--ease-main);
}

/* ── Scroll indicator — fade in via hero-ready already set above ── */

/* ── Footer links — underline ── */
.fh-links a {
    position: relative;
}
.fh-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-main);
}
.fh-links a:hover::after { width: 100%; }

/* ── Review card author border ── */
.review-author {
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.4s;
}
.review-card-inner:hover .review-author {
    border-color: rgba(232,148,26,0.2);
}

/* ── Prog-cta badge pulse border ── */
@keyframes dashedPulse {
    0%, 100% { border-color: rgba(232,148,26,0.2); box-shadow: none; }
    50%       { border-color: rgba(232,148,26,0.5); box-shadow: 0 0 20px rgba(232,148,26,0.1); }
}
.prog-cta-badge {
    animation: dashedPulse 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .review-card { flex: 0 0 50%; }
}
@media (max-width: 768px) {
    .review-card { flex: 0 0 100%; }
    .review-card-inner { padding: 2rem 1.5rem; }
}



/* ============================================================
   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 { text-align: center; margin-bottom: 5rem; }
.faq-header .slabel { justify-content: center; }
.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: repeat(2, 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: FULLY FRAMELESS — logo + burger float freely --- */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        z-index: 1000;
        pointer-events: none;
        display: block !important;
        transform: none !important;
    }

    /* Fully frameless on scroll — logo + burger float over content */
    header.scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Logo — centred, floating */
    .header-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: auto;
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: auto !important;
        /* Subtle shadow so logo reads against any background */
        filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
    }

    .header-logo img {
        height: 72px;
        width: auto;
        transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    header.scrolled .header-logo img,
    header.menu-open .header-logo img {
        height: 60px;
    }

    /* Burger button */
    .menu-btn {
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 12px;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        pointer-events: auto;
        transition: all 0.3s var(--ease-main);
    }
    .menu-btn:active { transform: translateY(-50%) scale(0.9); }

    header.scrolled .menu-btn {
        background: rgba(5, 11, 24, 0.8);
        border-color: rgba(232, 148, 26, 0.7);
    }

    /* Lines: full — short — full for a modern tapered look */
    .menu-btn span {
        display: block;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, width 0.3s var(--ease-main);
    }
    .menu-btn span:nth-child(1) { width: 20px; }
    .menu-btn span:nth-child(2) { width: 13px; }
    .menu-btn span:nth-child(3) { width: 20px; }

    /* X on open */
    .menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 20px; }
    .menu-btn.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
    .menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }


    .social-promo-section { padding: 3rem 1rem; }
    .social-promo-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 0.6rem;
        max-width: 100%;
    }
    .social-promo-card { 
        padding: 1.5rem 0.5rem; 
        gap: 0.75rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .social-promo-icon { 
        width: 30px; 
        height: 30px;
        color: var(--gold);
    }
    .social-promo-icon svg { width: 100%; height: 100%; }
    .social-promo-card span { 
        font-size: 0.65rem; 
        letter-spacing: 2px;
        font-weight: 800;
        line-height: 1;
        opacity: 0.9;
    }
    
    /* Hide everything else */
    .nav-left, .nav-right, .nav-right-wrap, .main-nav, .header-wordmark, .nav-pill { display: none !important; }

    @keyframes logoFloat {
        0%, 100% { transform: translateY(0) scale(1); filter: brightness(1) drop-shadow(0 0 20px rgba(255,255,255,0.1)); }
        50% { transform: translateY(-12px) scale(1.05); filter: brightness(1.2) drop-shadow(0 0 35px rgba(232,148,26,0.4)); }
    }

    /* --- FULLSCREEN MENU REDESIGN --- */
    .fullscreen-menu { 
        padding: 8rem 2.5rem 5rem;
        background: radial-gradient(circle at top right, rgba(15, 22, 40, 0.99) 0%, rgba(5, 11, 24, 1) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    /* Ghost logo in menu background */
    .fullscreen-menu::after {
        content: '';
        position: absolute;
        bottom: -5%;
        right: -10%;
        width: 70vw;
        height: 70vw;
        background: url('assets/images/logo.png') no-repeat center;
        background-size: contain;
        opacity: 0.03;
        filter: grayscale(1) brightness(2);
        pointer-events: none;
        z-index: 0;
    }
    .fullscreen-menu nav { width: 100%; position: relative; z-index: 1; }
    .fullscreen-menu nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
    .fullscreen-menu nav ul li a {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -2px;
        line-height: 1;
        color: #fff;
        opacity: 0.3;
        text-decoration: none;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        display: inline-block;
    }
    .fullscreen-menu nav ul li a:hover,
    .fullscreen-menu nav ul li a.active {
        opacity: 1;
        color: var(--gold);
        transform: translateX(10px);
    }
    .fullscreen-menu .num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1rem;
        letter-spacing: 2px;
        color: var(--gold);
        margin-right: 1.5rem;
        opacity: 0.6;
        vertical-align: middle;
    }
    .menu-socials { 
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding-top: 3rem;
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .menu-socials a { 
        font-size: 0.85rem; 
        font-weight: 600;
        letter-spacing: 2px; 
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.3s;
    }
    .menu-socials a:hover { color: #fff; }

    /* --- GLOBAL TYPOGRAPHY --- */
    .stitle { font-family: var(--font-bebas); font-size: clamp(3rem, 13vw, 4.5rem); letter-spacing: -1.5px; line-height: 0.85; margin-bottom: 1.5rem; color: inherit; }
    .section-light-inner .stitle { color: var(--bg-deep) !important; }
    .section-light-inner p { color: var(--warm-grey) !important; }
    .slabel span { font-size: 0.75rem; letter-spacing: 4px; font-weight: 800; }

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

    /* --- HERO (Standardization) --- */
    .hc-headline { margin-bottom: 2rem; transform: translateY(-10px); }
    .hc-line-top { font-size: clamp(3.2rem, 15vw, 4.8rem) !important; letter-spacing: 0.25rem !important; margin-bottom: 0.1rem; opacity: 0.8; }
    .hc-line-main { font-size: clamp(5.5rem, 24vw, 9rem) !important; letter-spacing: -4px !important; margin-top: -0.8rem !important; line-height: 0.85 !important; }
    .hc-sub { font-size: 1rem; max-width: 100%; line-height: 1.6; opacity: 0.85; margin-top: 1rem; }
    .hc-btns { flex-direction: column; align-items: stretch; gap: 0.85rem; width: 100%; margin-top: 2.5rem; padding: 0 1rem; }
    .hc-btns .btn { width: 100%; height: 58px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; border-radius: 14px; }
    /* Subpage hero text — larger to match home page impact */
    body.subpage .hc-line-main { color: var(--gold) !important; }
    body.subpage .hc-sub { font-size: 1.05rem; }

    /* --- ABOUT HOME --- */
    .about-home-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .about-home-imgcol { max-width: 100%; order: -1; }
    .about-home-photo { border-radius: 24px; }
    .about-home-badge { left: 1rem; bottom: 1rem; width: 120px; height: 120px; border-width: 1px; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
    .about-home-badge strong { font-size: 2.2rem; }
    .stat-row-light { 
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem; 
        padding: 2rem 0;
        border-top: 1px solid rgba(0,0,0,0.06);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .srl-item strong { font-size: 2.4rem; }
    .srl-item span { font-size: 0.58rem; letter-spacing: 1.5px; }
    .about-home-textcol .btn { width: 100%; height: 56px; margin: 0 auto; border-radius: 14px; }

    /* --- PROGRAMS --- */
    .prog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .prog-card { min-height: 440px; padding: 2.5rem 1.5rem; border-radius: 20px; }
    .prog-num { font-size: 5rem; top: 1rem; right: 1rem; opacity: 0.15; }
    .prog-header { text-align: center; margin-bottom: 3.5rem; }
    .prog-sub { font-size: 0.95rem; line-height: 1.6; opacity: 0.8; }
    .btn-outline { border-width: 2px; }
    /* Team CTA */
    .prog-cta [style*="right: 3rem"] { display: none !important; } /* hide badge on mobile */

    /* --- SOCIAL HUB --- */
    .social-promo-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .social-feed-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .ig-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0.5rem 1.25rem 1.5rem;
        margin: 0 -1.25rem;
        scrollbar-width: none;
    }
    .ig-grid::-webkit-scrollbar { display: none; }
    .ig-post {
        flex: 0 0 260px;
        scroll-snap-align: center;
        border-radius: 12px;
    }
    .sh-cards { grid-template-columns: 1fr; }
    .ig-view-all { padding: 0.75rem 1.25rem; font-size: 0.7rem; border-width: 1px; }

    /* --- 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: 85px; max-width: 180px; }
    .sponsor-cta-wrap { padding: 0 1.25rem; }
    .sponsor-cta-wrap .btn { width: 100%; text-align: center; }

    /* --- REVIEWS --- */
    .reviews-home { padding: 5rem 0; }
    .reviews-inner { padding: 0 1.25rem; }
    .review-card { flex: 0 0 100%; padding: 0 0.5rem; }
    .review-card-inner { padding: 2.5rem 2rem; border-radius: 20px; }
    .review-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
    .rev-controls-v2 { margin-top: 2.5rem; gap: 1rem; }
    .rev-v2-btn { width: 44px; height: 44px; }
    .rev-cta-wrap { margin-top: 3rem; }


    /* FAQ */
    .faq-header { text-align: center; margin-bottom: 3.5rem; }
    .faq-clean-header { margin-bottom: 3.5rem; text-align: center; }
    .faq-q { font-size: 0.9rem; padding: 1.5rem 0; font-weight: 700; color: var(--navy); }
    .faq-a p { padding-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.7; color: var(--warm-grey); }
    .faq-icon { font-size: 1.25rem; }
    .faq-clean { padding: 5rem 1.25rem; }

    /* --- JOIN CTA --- */
    .join-cta { padding: 6rem 1.25rem; }
    .join-cta h2 { font-size: clamp(3rem, 15vw, 5rem); margin-bottom: 1.25rem; line-height: 0.85; }
    .join-cta p { font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; opacity: 0.8; }
    .join-cta-btns { flex-direction: column; gap: 0.85rem; padding: 0 1rem; }
    .join-cta-btns .btn { width: 100%; justify-content: center; height: 58px; border-radius: 14px; }
    .join-eyebrow { font-size: 0.65rem; margin-bottom: 1.25rem; letter-spacing: 3px; }
    .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%; height: 56px; border-radius: 14px; }

    /* Button "Press" Effect */
    .btn:active { transform: scale(0.96) !important; }

    /* Watermark opacity reduction for better legibility */
    .site-bg-logo { opacity: 0.02; }

    /* --- 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: repeat(2, 1fr) !important; gap: 0.85rem; }
    .impact-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .tl2-item { padding-left: 36px; }
    .tl2-dot { width: 12px; height: 12px; left: 0; }

    /* About — join button, CTA */
    .about-home-textcol .btn {
        display: flex !important;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 54px;
        margin-top: 1.5rem !important;
    }
    .join-cta-v2 { padding: 5rem 1.5rem; text-align: center; }
    .jcv-inner h2 { font-size: clamp(2.8rem, 13vw, 4.5rem) !important; margin-bottom: 1rem; }
    .jcv-inner p { font-size: 0.88rem !important; margin-bottom: 1.5rem; }
    .jcv-btns { flex-direction: column; align-items: stretch; gap: 0.85rem; }
    .jcv-btns .btn { width: 100%; height: 54px; justify-content: center; }


    /* ─────────────────────────────────────────────────────
       PAGE: SESSIONS
    ───────────────────────────────────────────────────── */
    .portal-section { padding: 4rem 1.25rem 5rem; }
    .portal-section .reveal { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .portal-section .slabel { justify-content: center; }
    .portal-container { 
        border-radius: 20px; 
        overflow: hidden; 
        height: 600px; /* Increased height for better visibility */
        box-shadow: 0 15px 45px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.05);
        margin-top: 2rem;
    }
    .portal-container iframe { height: 100%; border: none; width: 100%; }

    /* Girls section */
    .girls-section-grid { display: flex; flex-direction: column; text-align: center; gap: 3rem; }
    .girls-img-col { order: -1; margin-bottom: 4rem; width: 100%; } /* Images on top */
    .girls-img-frame { 
        padding: 0; 
        max-width: 280px; 
        margin: 0 auto; 
        position: relative;
    }
    .girls-main-img { border-radius: 24px; box-shadow: 0 20px 45px rgba(0,0,0,0.4); width: 100%; height: auto; position: relative; z-index: 5; }
    .girls-main-img img { width: 100%; height: auto; border-radius: 24px; display: block; }
    .girls-accent-img { display: none !important; }
    .girls-img-badge { 
        position: absolute;
        left: 50%; 
        transform: translateX(-50%); 
        bottom: 1.5rem; 
        padding: 0.8rem 1.5rem; 
        font-size: 0.7rem;
        font-weight: 800;
        z-index: 20; /* Highest z-index */
        white-space: nowrap;
        background: var(--gold);
        color: #000;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .girls-badge-dot { width: 6px; height: 6px; background: #000; border-radius: 50%; }
    .girls-text-col { padding: 0 0.5rem; }
    .girls-text-col .stitle { margin-bottom: 1rem; }
    /* Girls button — centered, better typography, override inline styles */
    .girls-section-grid .btn {
        width: 100% !important;
        max-width: 100% !important;
        height: 64px !important;
        margin: 2.5rem 0 0 !important;
        border-radius: 18px !important;
        font-size: 1rem !important;
        font-weight: 900 !important;
        letter-spacing: 2px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-transform: uppercase !important;
        box-shadow: 0 10px 30px rgba(232, 148, 26, 0.3) !important;
        border: none !important;
        background: var(--gold) !important;
        color: #000 !important;
    }
    .girls-section-grid .btn:active { transform: scale(0.96) !important; }

    /* How-to join section header */
    .section-dark-inner .reveal { text-align: center !important; display: flex; flex-direction: column; align-items: center; }
    .section-dark-inner .slabel { justify-content: center; }

    /* How-to steps — Centered Content */
    .how-steps-v2 { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; align-items: center; margin-top: 3rem; }
    .how-step-v2 { 
        width: 100%;
        padding: 3.5rem 1.5rem; 
        border-radius: 28px; 
        background: rgba(255,255,255,0.03); 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center;
    }
    .step-n { font-size: 4rem; margin-bottom: 1rem; opacity: 0.15; line-height: 1; font-weight: 900; }
    .how-step-v2 h3 { font-size: 2.2rem; margin-bottom: 0.75rem; letter-spacing: -1.5px; text-align: center; line-height: 1; }
    .how-step-v2 p { font-size: 1rem; line-height: 1.7; opacity: 0.8; max-width: 260px; margin: 0 auto; text-align: center; }

    /* ─────────────────────────────────────────────────────
       PAGE: STAFF
    ───────────────────────────────────────────────────── */

    /* ── Isaac featured section ── */
    .staff-featured { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .staff-featured .staff-img-wrap { height: 420px; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); margin-bottom: 1rem; }
    .staff-featured .staff-body .staff-name { font-size: clamp(3.5rem, 15vw, 5rem); line-height: 0.85; letter-spacing: -2px; font-weight: 900; }
    .staff-featured .staff-body .staff-role { font-size: 0.85rem; letter-spacing: 4px; margin-bottom: 1.5rem; color: var(--gold); font-weight: 800; text-transform: uppercase; }
    .staff-featured .staff-body .staff-bio { font-size: 1.05rem; line-height: 1.75; opacity: 0.9; }
    .staff-featured .staff-body .staff-divider { margin: 2rem auto; width: 60px; height: 2px; background: var(--gold); }
    .staff-stats-row { justify-content: center; gap: 2rem; margin-top: 3rem; }
    .staff-stat span { font-size: 2.4rem; font-weight: 900; }
    .staff-stat small { font-size: 0.6rem; letter-spacing: 2px; opacity: 0.7; }

    /* ── Staff card grids: High-Intensity Hero Cards ── */
    .staff-grid, .staff-grid-flex { display: flex; flex-direction: column; gap: 3rem; width: 100%; }
    
    .staff-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 32px;
        background: #0c1117; /* Default: Dark Hero Card */
        border: 1px solid rgba(255,255,255,0.08);
        padding: 0;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    /* Theme adaptation: Light Cards for Light Sections */
    .section-light-inner .staff-card {
        background: #fff;
        border-color: rgba(0,0,0,0.06);
        box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    }
    .staff-card .staff-img-wrap {
        width: 100%;
        height: 360px; 
        border-radius: 0;
        margin-bottom: 0;
        overflow: hidden;
        position: relative;
    }
    .staff-card .staff-img-wrap img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        object-position: center 20%; 
    }
    /* Dynamic gradient based on theme */
    .staff-card .staff-img-wrap::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; width: 100%; height: 50%;
        background: linear-gradient(to top, #0c1117, transparent);
    }
    .section-light-inner .staff-card .staff-img-wrap::after {
        background: linear-gradient(to top, #fff, transparent);
    }

    .staff-card .staff-body { 
        padding: 2.5rem 1.5rem 3.5rem; 
        width: 100%; 
        position: relative;
        z-index: 2;
    }
    .staff-card .staff-role { 
        font-size: 0.8rem; 
        letter-spacing: 4px; 
        margin-bottom: 1rem; 
        color: var(--gold); 
        font-weight: 800;
        text-transform: uppercase;
    }
    .staff-card .staff-name { 
        font-size: 3rem; 
        line-height: 0.9; 
        margin: 0 0 1.25rem; 
        color: var(--white); /* Default: White for dark cards */
        font-family: 'Outfit', sans-serif;
        font-weight: 900;
        letter-spacing: -1.5px;
    }
    .section-light-inner .staff-card .staff-name {
        color: var(--bg-deep); /* Navy for light cards */
    }
    .staff-card .staff-bio {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--warm-grey-2);
        opacity: 0.9;
        max-width: 320px;
        margin: 0 auto;
    }
    .section-light-inner .staff-card .staff-bio {
        color: var(--warm-grey);
    }

    /* "Want to Coach" CTA */
    .section-light-inner[style*="text-align:center"] .btn,
    .section-light-inner[style*="text-align: center"] .btn {
        height: 52px;
        width: 100%;
        justify-content: center;
    }
    .section-light-inner[style*="text-align:center"] div[style*="display:flex"],
    .section-light-inner[style*="text-align: center"] div[style*="display:flex"] {
        flex-direction: column;
        gap: 0.85rem;
    }

    /* ─────────────────────────────────────────────────────
       PAGE: HOME (MOBILE OVERHAUL)
    ───────────────────────────────────────────────────── */
    .prog-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .prog-card { height: 480px !important; }
    .prog-card h3 { font-size: 2.2rem !important; }
    .prog-cta { 
        padding: 4rem 1.5rem !important; 
        text-align: center; 
        min-height: unset !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .prog-cta > div:nth-child(3) { /* Content Box */
        padding: 0 !important; 
        text-align: center;
        max-width: 100% !important;
    }
    .prog-cta h3 { font-size: 3rem !important; margin-bottom: 1rem !important; }
    .prog-cta p { margin-left: auto; margin-right: auto; }
    .prog-cta div[style*="display: flex"] { justify-content: center; width: 100%; gap: 0.75rem; }
    .prog-cta div[style*="display: flex"] .btn { width: 100%; }
    .prog-cta-badge { display: none !important; }

    /* ─────────────────────────────────────────────────────
       PAGE: STAFF (MOBILE OVERHAUL)
    ───────────────────────────────────────────────────── */
    .staff-hero .hc-line-main { color: var(--gold); }
    
    .staff-featured { flex-direction: column; gap: 3rem; }
    .staff-featured .staff-img-wrap { width: 100%; height: 480px; border-radius: 28px; }
    .staff-featured .staff-body { padding: 0; text-align: center; }
    .staff-featured .staff-name { font-size: 3.5rem; }
    .staff-featured .staff-stats-row { justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
    
    .staff-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .staff-grid-flex { flex-direction: column; gap: 3rem; }
    .staff-grid-flex .staff-card { width: 100%; flex: none; }

    /* ─────────────────────────────────────────────────────
       PAGE: CONTACT (MOBILE REDESIGN)
    ───────────────────────────────────────────────────── */
    .contact-layout-v2 { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form-v2 {
        padding: 2rem 1.25rem;
        border-radius: 18px;
        background: rgba(255,255,255,0.02);
        border: 1px solid rgba(255,255,255,0.06);
    }
    .contact-form-v2 .stitle { font-size: clamp(2rem, 8vw, 2.8rem); }
    .contact-form-v2 > p { font-size: 0.82rem; margin-bottom: 1.75rem !important; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { font-size: 0.6rem; margin-bottom: 0.5rem; }
    .form-field { padding: 0.95rem 1rem; font-size: 0.95rem; border-radius: 10px; }

    /* Contact info — horizontal pill cards instead of centered stacks */
    .contact-info-col .stitle { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 1.5rem !important; text-align: center; }
    .contact-info-col .slabel { justify-content: center; }
    .contact-info-v2 { text-align: left; margin-bottom: 1.25rem; }
    .ci-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
        margin-bottom: 0.75rem;
        padding: 1rem 1.25rem;
        background: rgba(255,255,255,0.025);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 14px;
    }
    .ci-icon { margin: 0; width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
    .ci-text h4 { font-size: 0.58rem; letter-spacing: 1.5px; margin-bottom: 3px; }
    .ci-text a, .ci-text p { font-size: 0.92rem; line-height: 1.4; }
    .ci-text small { font-size: 0.7rem; margin-top: 2px; }
    .ci-item a { word-break: break-word; }

    .contact-booking-cta { padding: 1.5rem 1.25rem; border-radius: 16px; margin-top: 1rem; }
    .contact-booking-cta p { font-size: 0.82rem; margin-bottom: 1rem; }
    .contact-booking-cta .btn { width: 100%; height: 54px; border-radius: 12px; font-size: 0.8rem; letter-spacing: 1.5px; display: flex; align-items: center; justify-content: center; }

    /* FAQ */
    .faq-clean { padding: 4rem 1.25rem; }
    .faq-clean-inner { max-width: 100%; }
    .faq-q { font-size: 0.82rem; padding: 1rem 0; line-height: 1.5; }
    .faq-clean-header .slabel { justify-content: center; }

    /* ─────────────────────────────────────────────────────
       PAGE: ABOUT (MOBILE OVERHAUL)
    ───────────────────────────────────────────────────── */
    .about-hero .hc-line-main { color: var(--gold); }
    
    .about-home-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .about-home-textcol .stitle { margin-left: auto; margin-right: auto; }
    .about-home-lead { font-size: 1.15rem; line-height: 1.6; }
    .about-home-body { font-size: 0.9rem; line-height: 1.7; }
    .about-home-imgcol { padding-top: 1.5rem; }
    .about-home-photo { border-radius: 28px; overflow: hidden; height: 380px; }
    .about-home-badge { bottom: -15px; right: -5px; padding: 1.5rem; border-radius: 20px; }

    .values-grid-v2 { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .value-card-v2 { padding: 2.5rem 1.5rem; border-radius: 24px; text-align: center; }
    .value-icon-v2 { margin: 0 auto 1.5rem; }

    .impact-stats-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .impact-stats-grid > div { padding: 3rem 1.5rem !important; border-radius: 20px !important; }

    /* ─────────────────────────────────────────────────────
       PAGE: SESSIONS (MOBILE OVERHAUL)
    ───────────────────────────────────────────────────── */
    .sessions-hero .hc-line-main { color: var(--gold); }

    .portal-section { padding: 4rem 1.25rem; }
    .portal-container { 
        height: 600px; 
        border-radius: 24px; 
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    
    .how-steps-v2 { gap: 2.5rem; margin-top: 3.5rem; }
    .how-step-v2 { 
        padding-left: 1.5rem; 
        border-left: 2px solid var(--gold); 
        text-align: left;
    }
    .how-step-v2 .step-n {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
        opacity: 0.85;
        display: block;
        line-height: 1;
    }
    .how-step-v2 h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--white); }
    .how-step-v2 p { font-size: 0.9rem; line-height: 1.6; color: var(--warm-grey-2); }

    .girls-section-grid { grid-template-columns: 1fr; gap: 4rem; }
    .girls-img-col { margin-top: 1rem; }
    .girls-img-frame { height: 400px; }
    .girls-main-img { height: 100%; border-radius: 24px; }
    .girls-accent-img { width: 140px; height: 180px; bottom: -20px; right: -10px; border-width: 6px; }

    .join-cta-v2 { padding: 6rem 1.25rem; }
    .jcv-inner h2 { font-size: 3.2rem; }
    .jcv-btns { flex-direction: column; gap: 1rem; }
    .jcv-btns .btn { width: 100%; justify-content: center; height: 60px; }

    /* ─────────────────────────────────────────────────────
       PAGE: SPONSOR (MOBILE RE-ENGINEERED)
    ───────────────────────────────────────────────────── */
    .sponsor-hero .hc-line-main { color: var(--gold); }
    
    /* Benefits: Horizontal Snap Gallery (Ultra-Premium) */
    .spb-grid { 
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.25rem;
        padding: 0 1.25rem 2.5rem;
        margin: 0 -1.25rem;
        scrollbar-width: none;
    }
    .spb-grid::-webkit-scrollbar { display: none; }
    
    /* Dots for slider */
    .spb-dots-container {
        display: flex;
        justify-content: center;
        gap: 0.65rem;
        margin-top: 0.5rem;
        margin-bottom: 2.5rem;
    }
    .spb-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        transition: all 0.3s ease;
    }
    .spb-dot.active {
        background: var(--gold);
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(232,148,26,0.4);
    }
    
    .spb-card { 
        flex: 0 0 88vw; 
        scroll-snap-align: center;
        border-radius: 32px; 
        background: rgba(255,255,255,0.02); 
        border: 1px solid rgba(255,255,255,0.06);
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(0,0,0,0.5);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
    }
    .spb-img { 
        height: 200px; 
        position: relative;
    }
    .spb-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 40%, rgba(5,11,24,0.95) 100%);
    }
    .spb-tag {
        bottom: -15px; /* Pull it down into the dark gradient */
        left: 2rem;
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }
    .spb-body { padding: 2.5rem 2rem; text-align: left; position: relative; z-index: 2; flex-grow: 1; display: flex; flex-direction: column; }
    .spb-icon {
        position: absolute;
        top: -45px;
        right: 2rem;
        width: 50px;
        height: 50px;
        background: var(--bg-deep);
        border: 1px solid rgba(232,148,26,0.4);
        box-shadow: 0 0 20px rgba(232,148,26,0.15);
        border-radius: 14px;
        z-index: 3;
    }
    .spb-body h3 { 
        font-size: 1.9rem; 
        line-height: 0.95; 
        font-family: var(--font-bebas); 
        color: var(--white);
        margin-bottom: 0.85rem;
        letter-spacing: 1px;
    }
    .spb-body p { font-size: 0.9rem; line-height: 1.65; color: var(--warm-grey); }

    /* Stats: Balanced 2x2 Grid (Precision Engineered) */
    .spb-stats { 
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0;
        border-radius: 24px;
        background: rgba(255,255,255,0.015);
        border: 1px solid rgba(255,255,255,0.06);
        overflow: hidden;
        margin-top: 3.5rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }
    .spb-stat { 
        padding: 2.25rem 1rem; 
        border-right: 1px solid rgba(255,255,255,0.06); 
        border-bottom: 1px solid rgba(255,255,255,0.06); 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .spb-stat:nth-child(even) { border-right: none; }
    .spb-stat:nth-last-child(-n+2) { border-bottom: none; }
    .spb-stat strong { 
        font-size: 3.2rem; 
        color: var(--gold); 
        font-family: var(--font-bebas);
        line-height: 0.9;
        margin-bottom: 0.35rem;
        text-shadow: 0 0 25px rgba(232,148,26,0.2);
    }
    .spb-stat span { font-size: 0.65rem; letter-spacing: 2px; color: var(--warm-grey-2); }
    .spb-stat div { font-size: 0.55rem !important; opacity: 0.7; } /* specifically targeting the small description */

    /* Sponsorship Packages: Premium Stacking */
    .macro-packages { padding: 5rem 1.25rem; }
    .macro-packages .stitle { font-size: clamp(3rem, 14vw, 4rem); }
    .macro-grid { gap: 1.75rem; }
    .m-card { 
        flex-direction: column; 
        border-radius: 32px; 
        background: #080d1b; 
        border: 1px solid rgba(255,255,255,0.06);
        position: relative;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        overflow: visible; /* Fix for badge visibility */
    }
    .m-card-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,11,24,0.9) 0%, transparent 60%); z-index: 2; pointer-events: none; }
    .m-card.m-featured { 
        border: 2px solid var(--gold); 
        box-shadow: 0 0 50px rgba(232,148,26,0.25), inset 0 0 80px rgba(232,148,26,0.08);
        z-index: 10;
    }
    .m-featured-wrapper { position: relative; z-index: 10; margin-top: 1rem; }
    .pkg-popular { 
        top: -18px; 
        right: auto;
        left: 50%; 
        transform: translateX(-50%);
        font-size: 0.78rem; 
        letter-spacing: 2px; 
        background: var(--gold);
        color: #000 !important; 
        padding: 0.6rem 2rem;
        border-radius: 50px;
        box-shadow: 0 12px 35px rgba(232,148,26,0.6);
        z-index: 100;
        font-weight: 900;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        pointer-events: none;
    }
    .m-card-left { 
        width: 100%; 
        padding: 2.5rem 1.5rem 2rem; 
        border-right: none; 
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
    }
    .pkg-badge { font-size: 0.6rem; letter-spacing: 3px; margin-bottom: 1.5rem; padding: 0.4rem 1rem; border-radius: 100px; }
    .pkg-name { font-size: 2.2rem; color: var(--white); margin-bottom: 0.25rem; line-height: 1; font-family: var(--font-bebas); letter-spacing: 2px; text-transform: uppercase; }
    .m-card.m-featured .pkg-name { color: var(--gold); text-shadow: 0 0 15px rgba(232,148,26,0.3); }
    .pkg-price { display: flex; align-items: baseline; gap: 0.25rem; justify-content: center; margin-bottom: 0.75rem; }
    .pkg-price strong { font-size: 3.5rem; line-height: 0.9; font-family: var(--font-bebas); text-shadow: 0 0 30px rgba(255,255,255,0.1); }
    .m-card.m-featured .pkg-price strong { color: var(--gold); text-shadow: 0 0 30px rgba(232,148,26,0.2); }
    .pkg-avail { font-size: 0.7rem; color: var(--warm-grey); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
    .m-card-right { width: 100%; padding: 2rem 1.5rem 2.5rem; }
    .pkg-perks { display: flex; flex-direction: column; gap: 0.85rem; }
    .pkg-perks li { 
        font-size: 0.88rem; 
        padding: 0; 
        color: var(--warm-grey-2); 
        display: flex;
        align-items: flex-start;
        line-height: 1.5;
    }
    .pkg-perks li svg { 
        color: var(--gold); 
        margin-right: 12px; 
        flex-shrink: 0;
        margin-top: 3px;
        filter: drop-shadow(0 0 8px rgba(232,148,26,0.4));
    }
    .pkg-perks li strong { color: var(--white); }
    .m-btn { 
        width: 100% !important; 
        height: 58px !important; 
        margin-top: 2rem !important; 
        border-radius: 14px;
        justify-content: center;
        display: flex !important;
        align-items: center;
        font-size: 0.85rem !important;
        letter-spacing: 2px !important;
    }

    /* Sponsor form redesign: High-Premium Centered */
    .sponsor-form { 
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 4rem 1.5rem; 
        background: rgba(255,255,255,0.02); 
        border-radius: 32px; 
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 30px 70px rgba(0,0,0,0.4);
        backdrop-filter: blur(20px);
        max-width: 100%; /* Fill the container on mobile/tablet */
        margin: 0 auto;
    }
    .sponsor-form .form-field {
        height: 60px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 16px;
        color: var(--white);
        font-size: 1rem;
        padding: 0 1.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        margin-bottom: 0;
    }
    .sponsor-form select.form-field { 
        cursor: pointer; 
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1.5rem center;
        background-size: 12px;
        padding-right: 3rem;
    }
    .sponsor-form textarea.form-field { padding: 1.5rem; height: auto; min-height: 150px; }
    .sponsor-form .form-field:focus {
        background: rgba(255,255,255,0.06);
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(232,148,26,0.1);
        outline: none;
    }
    .sponsor-form .btn {
        height: 64px; 
        font-size: 0.95rem; 
        letter-spacing: 2px; 
        border-radius: 16px; 
        box-shadow: 0 15px 30px rgba(232,148,26,0.25);
    }

    /* Sponsor Ticker Mobile Detail */
    .sponsor-ticker-section { padding: 4rem 0; }
    .sponsor-ticker-header { margin-bottom: 2.5rem; padding: 0 1.25rem; }
    .sponsor-ticker-header .stitle { font-size: 2.5rem; line-height: 0.95; }
    .sponsor-marquee-wrap { padding: 2rem 0; }
    .sponsor-item { width: 180px; margin: 0 1.5rem; filter: none; opacity: 1; }
    /* ─────────────────────────────────────────────────────
       PAGE: MERCHANDISE (FULL REDESIGN)
    ───────────────────────────────────────────────────── */
    .merch-hero .hc-line-main { color: var(--gold); }
    
    .portal-section { padding: 5rem 1.25rem; }
    .portal-container { 
        border-radius: 32px; 
        height: 680px; 
        background: #000;
        border: 2px solid rgba(232, 148, 26, 0.25); 
        box-shadow: 0 35px 90px rgba(0,0,0,0.7);
        position: relative;
    }
    /* "Live" Store Indicator */
    .portal-container::before {
        content: '● LIVE STORE';
        position: absolute;
        top: -12px;
        right: 25px;
        background: var(--gold);
        color: #000;
        padding: 5px 14px;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 900;
        letter-spacing: 1px;
        z-index: 10;
        box-shadow: 0 6px 20px rgba(232,148,26,0.5);
    }

    /* Merch Info: Final 2x2 Mobile Fix */
    .merch-info-v2 { 
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 0.75rem !important; 
        margin-top: 3rem;
        width: 100% !important;
        box-sizing: border-box;
    }
    .minfo-item { 
        padding: 1.5rem 0.75rem !important; 
        border-radius: 20px; 
        background: #fff; 
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 180px;
        justify-content: flex-start;
        box-sizing: border-box;
        overflow: hidden; /* Prevent text bleed */
    }
    .minfo-icon { 
        width: 32px !important; 
        height: 32px !important; 
        margin-bottom: 1rem; 
        color: var(--gold);
        flex-shrink: 0;
    }
    .minfo-icon svg { width: 100%; height: 100%; }
    .minfo-item h4 { 
        font-size: 0.8rem !important; 
        margin-bottom: 0.5rem; 
        color: var(--navy);
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 100%;
    }
    .minfo-item p { 
        font-size: 0.65rem !important; 
        line-height: 1.4; 
        color: var(--warm-grey);
        margin: 0;
        width: 100%;
        word-wrap: break-word;
    }

    /* ─────────────────────────────────────────────────────
       SUBPAGE: MEDIA
    ───────────────────────────────────────────────────── */
    .album-grid { columns: 1; column-gap: 0; }
    .mega-album { padding: 5rem 1.25rem; }
    .sh-cards { grid-template-columns: 1fr; gap: 1rem; }
    .sh-card { border-radius: 20px; padding: 2rem 1.5rem; }

    /* ─────────────────────────────────────────────────────
       SECTION LABEL ALIGNMENT (global)
    ───────────────────────────────────────────────────── */
    /* Centre all section labels on mobile — consistent & cleaner */
    .slabel { justify-content: center; }
}


/* ---- SMALL MOBILE (≤480px) ---- */
@media (max-width: 480px) {
    .stitle { font-size: clamp(2.5rem, 13vw, 3.8rem); letter-spacing: -1.5px; line-height: 0.85; }
    .hero-cap { padding: 0 0.75rem; }
    .hc-title { font-size: clamp(2.8rem, 14vw, 4.5rem); }

    /* ── Hero text — same punch on ALL pages at <480px ── */
    .hc-line-top  { font-size: clamp(2.6rem, 14vw, 4rem)  !important; letter-spacing: 0.1rem !important; }
    .hc-line-main { font-size: clamp(4.5rem, 23vw, 7rem)  !important; letter-spacing: -2px   !important; margin-top: -0.6rem !important; line-height: 0.82 !important; }
    .hc-sub       { font-size: 0.88rem !important; line-height: 1.65; opacity: 0.85; }

    /* ── CTA buttons — full-width, 54px tap target ── */
    .hc-btns { flex-direction: column; align-items: stretch; gap: 0.85rem; width: 100%; margin-top: 2rem; }
    .hc-btns .btn { width: 100%; height: 54px; font-size: 0.82rem; justify-content: center; }

    .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: 82px; max-width: 160px; }
    .about-home, .prog-section, .social-hub, .reviews-home, .faq, .join-cta { padding: 3.5rem 1rem; }
    .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; }

    /* ── Footer at tiny screens ── */
    .footer-home { padding: 2rem 1rem 1.5rem; }
    .fh-socials a { padding: 0.5rem 0.85rem; }
}


/* ============================================================
   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.5rem; }
.spb-card {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-main), border-color 0.3s, box-shadow 0.4s;
}
.spb-card:hover { transform: translateY(-8px); border-color: rgba(232,148,26,0.28); box-shadow: 0 32px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,148,26,0.06) inset; }
.spb-img { position: relative; height: 220px; overflow: hidden; }
.spb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-main), filter 0.5s; filter: brightness(0.6) saturate(0.85); }
.spb-card:hover .spb-img img { transform: scale(1.06); filter: brightness(0.75) saturate(1); }
.spb-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(5,11,24,0.6) 60%, rgba(5,11,24,0.92) 100%); }
.spb-tag {
    position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
    background: var(--gold); color: var(--bg-deep);
    font-size: 0.55rem; font-weight: 800; letter-spacing: 2.5px;
    padding: 0.3rem 0.9rem; border-radius: 100px; text-transform: uppercase;
}
.spb-body { padding: 2rem 2rem 2.25rem; }
.spb-icon {
    width: 44px; height: 44px;
    background: rgba(232,148,26,0.09);
    border: 1px solid rgba(232,148,26,0.2);
    color: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s, border-color 0.3s;
}
.spb-card:hover .spb-icon { background: rgba(232,148,26,0.15); border-color: rgba(232,148,26,0.4); }
.spb-body h3 { font-family: var(--font-bebas); font-size: 1.6rem; color: var(--white); margin-bottom: 0.65rem; line-height: 1; }
.spb-body p { font-size: 0.87rem; color: rgba(200,184,152,0.75); line-height: 1.72; }
.spb-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
    background: rgba(232,148,26,0.03);
    border: 1px solid rgba(232,148,26,0.1);
    border-radius: 18px;
    overflow: hidden;
}
.spb-stat { text-align: center; padding: 2.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.06); transition: background 0.3s; }
.spb-stat:hover { background: rgba(232,148,26,0.04); }
.spb-stat:last-child { border-right: none; }
.spb-stat strong { display: block; font-family: var(--font-bebas); font-size: 3.8rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; text-shadow: 0 0 30px rgba(232,148,26,0.25); }
.spb-stat span { font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(200,184,152,0.65); 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: 3;
    column-gap: 1rem;
}
.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);
}

.album-footer {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
}
.album-footer .btn {
    min-width: 280px;
    height: 62px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .album-footer { margin-top: 4rem; padding: 0 1.25rem; }
    .album-footer .btn { width: 100%; min-width: unset; }
}

/* ============================================================
   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.07);
    border-radius: 18px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: border-color 0.3s var(--ease-main), box-shadow 0.3s var(--ease-main), transform 0.3s var(--ease-main);
}
.minfo-item:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(232,148,26,0.12);
    transform: translateY(-4px);
}
.minfo-icon {
    width: 48px;
    height: 48px;
    background: rgba(232,148,26,0.1);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.minfo-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.65rem;
}
.minfo-item p {
    font-size: 0.9rem;
    color: var(--warm-grey);
    line-height: 1.7;
}

/* Button Glint Effect */
.hoverable.btn-shimmer::after {
    animation: btnShimmer 4s ease infinite;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    30%, 100% { left: 200%; }
}

.values-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .values-grid-v2 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
    .values-grid-v2 { grid-template-columns: repeat(2, 1fr) !important; gap: 0.85rem; }
    .value-card-v2 { padding: 1.75rem 1rem; }
    .value-icon-v2 { margin-bottom: 1rem; width: 40px; height: 40px; }
    .value-card-v2 h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
    .value-card-v2 p { font-size: 0.82rem; line-height: 1.55; }
}

@media (min-width: 769px) {
    .staff-grid-flex {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }
}

/* ─────────────────────────────────────────────────────
   FINAL MOBILE POLISH: SOCIAL & FOOTER
───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .social-promo-section { padding: 6rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); }
    .social-promo-header h2 { font-size: 2.2rem; line-height: 0.95; margin-bottom: 0.75rem; text-align: center; }
    .social-promo-header p { text-align: center; opacity: 0.7; }
    .social-promo-grid { 
        display: grid !important; 
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 0.75rem; 
        margin-top: 3rem;
    }
    .social-promo-card { 
        padding: 1.5rem 0.5rem; 
        border-radius: 20px; 
        background: rgba(255,255,255,0.03); 
        border: 1px solid rgba(255,255,255,0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }
    .social-promo-icon { margin-bottom: 0.75rem; color: var(--gold); }
    .social-promo-icon svg { width: 30px; height: 30px; }
    .social-promo-card span { font-size: 0.65rem; letter-spacing: 1.5px; color: var(--white); font-weight: 700; text-transform: uppercase; }

    /* Footer Home — Mobile (definitive Redesign) */
    .footer-home { 
        padding: 3rem 1.5rem 2rem; 
        text-align: center; 
        background: #02060f; 
    }
    .footer-home-inner { 
        flex-direction: column; 
        align-items: center; 
        gap: 1.5rem; 
        padding-bottom: 1.5rem; 
        border-bottom: 1px solid rgba(255,255,255,0.04); 
    }
    .fh-brand { 
        flex-direction: column; 
        align-items: center; 
        gap: 0.5rem; 
    }
    .fh-brand img { 
        width: 44px; 
        height: 44px; 
    }
    .fh-name { 
        font-size: 1.25rem; 
        letter-spacing: 1px; 
        color: var(--white);
    }
    .fh-tagline { 
        display: none; 
    }
    .fh-links { 
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
        width: 100%;
    }
    .fh-links a { 
        font-size: 0.72rem; 
        letter-spacing: 0.5px;
        font-weight: 700;
        color: var(--warm-grey-2);
        text-transform: uppercase;
        border: none;
        background: none;
        padding: 0;
        margin: 0;
    }
    .fh-socials { 
        display: flex;
        justify-content: center; 
        gap: 1.5rem; 
        width: 100%; 
        margin-top: 0.25rem;
    }
    .fh-socials a { 
        background: none;
        border: none;
        padding: 0;
        width: auto;
        height: auto;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        color: var(--warm-grey-2);
        font-size: 0.7rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
        transition: color 0.3s;
    }
    .fh-socials a:hover {
        color: var(--gold);
    }
    .fh-socials a svg {
        width: 16px;
        height: 16px;
        margin: 0;
    }
    .fh-socials a span { 
        display: inline; 
    }
    .fh-bottom { 
        flex-direction: column; 
        gap: 0.4rem; 
        margin-top: 0; 
        padding-top: 1.25rem; 
        border-top: 1px solid rgba(255,255,255,0.04); 
        width: 100%; 
    }
    .fh-bottom p { 
        font-size: 0.65rem; 
        opacity: 0.3; 
    }
    .fh-credit { 
        font-size: 0.68rem; 
        display: block; 
        opacity: 0.5; 
        margin-top: 0.15rem; 
    }
}

/* Luxury Touch: Card Shimmer Effect */
.m-card { position: relative; overflow: hidden; }
.m-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 55%
    );
    transform: rotate(-45deg);
    transition: 0s;
    pointer-events: none;
    opacity: 0;
}
.m-card:active::after {
    left: 100%;
    top: 100%;
    opacity: 1;
    transition: 0.8s ease-in-out;
}

/* ============================================================
   REDESIGNED ABOUT STORY IMAGE SECTION (CLEAN & MINIMAL)
   ============================================================ */
.about-story-imgcol {
    position: relative;
    width: 100%;
}
.about-story-photo {
    aspect-ratio: 4/3; /* Widescreen landscape photo ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
}
.about-story-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--bg-deep) !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    z-index: 5;
}

@media (max-width: 768px) {
    .about-story-imgcol {
        margin-top: 2.5rem;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-story-photo {
        aspect-ratio: 16/10;
    }
    .about-story-badge {
        width: 80px !important;
        height: 80px !important;
        bottom: -0.5rem;
        left: -0.5rem;
    }
    .about-story-badge strong {
        font-size: 1.6rem !important;
    }
    .about-story-badge small {
        font-size: 0.5rem !important;
    }
}

/* ============================================================
   ABOUT: PREMIUM AWARD SPOTLIGHT
   ============================================================ */
.about-award-section {
    position: relative;
    background: #050b18; /* Dark cinematic navy */
    padding: 8rem 2.5rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(232, 148, 26, 0.1);
}

/* Subtle gold spotlight overlay */
.about-award-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 148, 26, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.award-split-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

/* Left Content Card */
.award-content-card {
    text-align: left;
}

.award-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 148, 26, 0.1);
    border: 1px solid rgba(232, 148, 26, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.award-winner-badge .badge-icon {
    font-size: 1rem;
    animation: wiggle 2s ease infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    50% { transform: rotate(15deg); }
}

.award-title {
    font-family: var(--font-bebas);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 0.85;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #fbb034 0%, #e8941a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.award-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--warm-grey-2);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* Quote Box Styling */
.award-quote-box {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--gold);
}

.quote-mark {
    position: absolute;
    left: 0.5rem;
    top: -1.5rem;
    font-family: var(--font-bebas);
    font-size: 5rem;
    color: rgba(232, 148, 26, 0.15);
    line-height: 1;
}

.award-quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.award-body-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-grey-2);
    opacity: 0.85;
}

/* Right Overlapping Collage */
.award-collage-wrapper {
    position: relative;
    width: 100%;
}

.award-collage {
    position: relative;
    height: 480px;
    width: 100%;
}

.award-collage-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.award-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

/* Image 1: Main Photo */
.award-collage-item.img-large {
    width: 65%;
    height: 330px;
    left: 0;
    bottom: 0;
    z-index: 2;
}

/* Image 2: Staggered Top-Right */
.award-collage-item.img-small-top {
    width: 50%;
    height: 200px;
    right: 0;
    top: 0;
    z-index: 1;
}

/* Image 3: Staggered Bottom-Right overlapping */
.award-collage-item.img-small-bottom {
    width: 48%;
    height: 180px;
    right: -10px;
    bottom: 40px;
    z-index: 3;
}

.award-collage-item .img-caption {
    position: absolute;
    bottom: 12px;
    left: 15px;
    background: rgba(5, 11, 24, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Hover Stagger Animations */
.award-collage-item:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10 !important;
    border-color: var(--gold);
    box-shadow: 0 35px 80px rgba(232, 148, 26, 0.2);
}

.award-collage-item:hover img {
    transform: scale(1.03);
}

/* Responsive adjustment for Award Grid */
@media (max-width: 991px) {
    .award-split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .award-collage {
        height: 420px;
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-award-section {
        padding: 5rem 1.25rem;
    }
    .award-winner-badge {
        margin-bottom: 1.5rem;
    }
    .award-title {
        font-size: 3.5rem;
    }
    .award-subtitle {
        margin-bottom: 2rem;
    }
    .award-quote-box {
        margin-bottom: 2.25rem;
    }
    .award-quote-text {
        font-size: 0.95rem;
    }
    .award-body-text {
        font-size: 0.9rem;
    }
    
    /* Premium 1-featured + 2-columns grid for mobile award collage */
    .award-collage {
        position: static;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        margin-top: 1rem;
    }
    .award-collage-item {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }
    .award-collage-item.img-large {
        grid-column: span 2;
        aspect-ratio: 16/10;
    }
    .award-collage-item.img-small-top {
        grid-column: span 1;
        aspect-ratio: 1/1;
    }
    .award-collage-item.img-small-bottom {
        grid-column: span 1;
        aspect-ratio: 1/1;
    }
    .award-collage-item .img-caption {
        bottom: 8px;
        left: 10px;
        font-size: 0.5rem;
        padding: 3px 8px;
    }
}

/* ============================================================
   ABOUT PAGE REFINEMENTS
   ============================================================ */
/* Header Center Alignment helper */
.section-header-centered {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header-centered .stitle {
    margin-top: 0.5rem;
}

/* Our Impact Component */
.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.impact-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}
.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(232, 148, 26, 0.08);
    border-color: rgba(232, 148, 26, 0.2);
}
.impact-card-num {
    font-family: var(--font-bebas);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.impact-card-title {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bg-deep);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.impact-card-desc {
    font-size: 0.88rem;
    color: var(--warm-grey);
    line-height: 1.6;
    margin: 0;
}

/* Clean about us section spacings */
.about-home-textcol .btn {
    margin-top: 2rem;
}
.impact-subtitle-text {
    max-width: 520px;
    margin: 0.75rem auto 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--warm-grey);
}

/* ============================================================
   ARTISTIC REDESIGN — OUR STORY & AWARD SECTIONS (PREMIUM)
   ============================================================ */

/* --- OUR STORY SECTION (DESKTOP REFINEMENTS) --- */
.section-light-inner {
    background: #FAF8F3 !important; /* Premium warm parchment cream */
}

/* Premium Editorial Slabel */
.about-home-textcol .slabel {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 2px solid var(--gold);
    padding-left: 10px;
    margin-bottom: 1.5rem;
}

/* Editorial Title Styling */
.about-home-textcol .stitle {
    font-family: var(--font-bebas);
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    color: var(--bg-deep);
}
.about-home-textcol .stitle em {
    font-family: var(--font-bebas) !important;
    font-style: normal !important;
    color: var(--gold) !important;
}

/* Paragraph styling */
.about-home-lead {
    font-family: var(--font-main);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.about-home-body {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-grey);
    margin-bottom: 2rem;
}

/* Elegant Frosted Image Frame */
.about-home-imgcol {
    position: relative;
    z-index: 2;
}
/* Subtle golden spotlight gradient behind the image */
.about-home-imgcol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(232, 148, 26, 0.04) 0%, transparent 75%);
    pointer-events: none;
    z-index: -1;
}

.about-home-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 75px rgba(160, 144, 112, 0.15);
    border: 1px solid rgba(160, 144, 112, 0.08);
    aspect-ratio: 4/5;
    position: relative;
}
.about-home-photo img {
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.about-home-imgcol:hover .about-home-photo img {
    transform: scale(1.04);
}

/* Beautiful Frosted Glass Overlapping Badge */
.about-home-badge {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    color: var(--bg-deep) !important;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 148, 26, 0.35) !important;
    box-shadow: 0 20px 45px rgba(160, 144, 112, 0.18) !important;
    z-index: 5;
    transition: all 0.5s var(--ease-main);
}
.about-home-badge strong {
    font-family: var(--font-bebas);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--gold);
}
.about-home-badge small {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
}
.about-home-imgcol:hover .about-home-badge {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(232, 148, 26, 0.22) !important;
}


/* --- BASKETBALL ENGLAND AWARD SECTION (DESKTOP REFINEMENTS) --- */
.about-award-section {
    position: relative;
    background: #030710; /* Ultra-deep dark space black */
    padding: 9rem 3rem;
    border-top: 1px solid rgba(232, 148, 26, 0.06);
    border-bottom: 1px solid rgba(232, 148, 26, 0.06);
}

/* Subtle glowing spotlight gradient */
.about-award-section::before {
    background: radial-gradient(circle, rgba(232, 148, 26, 0.05) 0%, transparent 65%);
}

.award-winner-badge {
    background: rgba(232, 148, 26, 0.06) !important;
    border: 1px solid rgba(232, 148, 26, 0.25) !important;
    box-shadow: 0 0 25px rgba(232, 148, 26, 0.08) !important;
}

.award-title {
    font-size: clamp(3.2rem, 5.5vw, 4.8rem) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.5px !important;
}

.award-body-text {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: rgba(240, 236, 228, 0.85) !important; /* Softer white for beautiful readability */
}

/* 100% Clean Grid Award Collage for Desktop (No absolute overlaps) */
.award-collage {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
    height: auto !important;
    position: static !important;
}

.award-collage-item {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45) !important;
    transform: none !important;
    transition: all 0.4s var(--ease-main) !important;
}

.award-collage-item.img-large {
    grid-column: span 2 !important;
    aspect-ratio: 16/10 !important;
}

.award-collage-item.img-small-top,
.award-collage-item.img-small-bottom {
    grid-column: span 1 !important;
    aspect-ratio: 1/1 !important;
}

/* Premium hover transitions on the clean grid items */
.award-collage-item:hover {
    transform: translateY(-5px) scale(1.02) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 35px 80px rgba(232, 148, 26, 0.22) !important;
}

/* Beautiful custom floating gold highlight accent in background */
.award-collage-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(232, 148, 26, 0.1);
    border-radius: 32px;
    pointer-events: none;
    z-index: 0;
}


/* ============================================================
   MOBILE VIEW OVERHAUL & REDESIGN (≤768px) — PREMIUM & CLEAN
   ============================================================ */
@media (max-width: 768px) {

    /* --- HERO EYEBROW & DOT ALIGNMENT --- */
    .hc-eyebrow {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .hc-eyebrow-dot {
        width: 6px !important;
        height: 6px !important;
        background: var(--gold) !important;
        border-radius: 50% !important;
        display: block !important;
        margin: 0 !important;
    }
    .hc-eyebrow span {
        font-size: 0.72rem !important;
        letter-spacing: 3px !important;
        margin-right: 0 !important;
        text-align: center !important;
        line-height: 1 !important;
    }

    /* --- MOBILE TYPOGRAPHY & OVERLAP FIXES --- */
    .stitle, 
    .award-title, 
    .jcv-inner h2,
    .social-promo-header h2,
    .sh-title,
    .hc-line-main {
        font-family: var(--font-bebas) !important;
        line-height: 1.02 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }
    
    .stitle {
        font-size: clamp(2.4rem, 10vw, 3.8rem) !important;
        margin-bottom: 1.5rem !important;
    }
    
    .award-title {
        font-size: clamp(2.4rem, 10vw, 3.8rem) !important;
        line-height: 1.05 !important;
        margin-bottom: 1rem !important;
    }

    /* Resets standard paragraphs to ensure readable mixed-case Inter body font */
    p, 
    .about-home-lead, 
    .about-home-body, 
    .award-body-text, 
    .value-card-v2 p, 
    .impact-card-desc,
    .impact-subtitle-text,
    .jcv-inner p {
        font-family: var(--font-main) !important;
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
        text-transform: none !important;
        letter-spacing: 0px !important;
        color: var(--warm-grey-2) !important;
    }

    /* Color adjustments for light/dark inner sections */
    .section-light-inner p,
    .section-light-inner .about-home-lead,
    .section-light-inner .about-home-body,
    .section-light-inner .impact-subtitle-text,
    .impact-card-desc {
        color: var(--warm-grey) !important;
    }
    
    .about-home-lead {
        font-size: 1.08rem !important;
        font-weight: 600 !important;
        margin-bottom: 1.25rem !important;
    }
    
    .about-home-body {
        margin-bottom: 1.25rem !important;
    }

    /* --- OUR STORY SECTION (MOBILE DESIGN LIBERTY) --- */
    .section-light-inner#story {
        padding: 5.5rem 1.5rem !important;
    }
    .about-home-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .about-home-textcol {
        text-align: left !important;
    }
    .about-home-textcol .slabel {
        justify-content: flex-start !important;
        margin-bottom: 0.75rem !important;
    }
    .about-home-textcol .stitle {
        text-align: left !important;
        margin-bottom: 1.5rem !important;
    }
    .about-home-textcol p {
        text-align: left !important;
        margin-bottom: 1.25rem !important;
    }
    .about-home-textcol .btn {
        width: 100% !important;
        height: 56px !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 2rem 0 0 !important;
    }
    
    /* Layout: Image on top, beautifully framed */
    .about-home-imgcol {
        max-width: 100% !important;
        order: -1 !important;
        margin-bottom: 1rem !important;
    }
    .about-home-photo {
        border-radius: 24px !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/10 !important;
        box-shadow: 0 20px 45px rgba(160, 144, 112, 0.2) !important;
        border: 1px solid rgba(160, 144, 112, 0.1) !important;
    }
    
    /* Beautiful glass badge overlay on photo corner */
    .about-home-badge {
        width: 90px !important;
        height: 90px !important;
        bottom: -12px !important;
        right: -8px !important;
        left: auto !important;
        border-radius: 22px !important;
        padding: 1rem !important;
        box-shadow: 0 15px 30px rgba(160, 144, 112, 0.22) !important;
    }
    .about-home-badge strong {
        font-size: 2rem !important;
    }
    .about-home-badge small {
        font-size: 0.55rem !important;
        letter-spacing: 2px !important;
    }

    /* --- AWARD SECTION (MOBILE DESIGN LIBERTY) --- */
    .about-award-section {
        padding: 5.5rem 1.5rem !important;
    }
    .award-split-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .award-content-card {
        text-align: left !important;
    }
    .award-winner-badge {
        margin: 0 0 1.5rem !important;
    }
    .award-title {
        text-align: left !important;
        margin-bottom: 0.75rem !important;
    }
    .award-subtitle {
        text-align: left !important;
        margin-bottom: 2rem !important;
    }
    .award-body-text {
        text-align: left !important;
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0 !important;
    }
    
    /* Beautiful responsive photo collage */
    .award-collage {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        height: auto !important;
        position: static !important;
        margin-top: 1rem !important;
    }
    .award-collage-item {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 16px !important;
        box-shadow: 0 15px 30px rgba(0,0,0,0.4) !important;
    }
    .award-collage-item.img-large {
        grid-column: span 2 !important;
        aspect-ratio: 16/10 !important;
    }
    .award-collage-item.img-small-top,
    .award-collage-item.img-small-bottom {
        grid-column: span 1 !important;
        aspect-ratio: 1/1 !important;
    }

    /* --- VALUES GRID (2 UNDER 2 - COMPACT REDESIGN) --- */
    .values-grid-v2 {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 under 2 cards layout */
        gap: 0.75rem !important;
        margin-top: 2.5rem !important;
    }
    .value-card-v2 {
        padding: 1.5rem 1rem !important; /* Made smaller/compact */
        border-radius: 16px !important;
        text-align: center !important;
    }
    .value-icon-v2 {
        margin: 0 auto 0.75rem !important;
        width: 36px !important;
        height: 36px !important;
    }
    .value-icon-v2 svg {
        width: 20px !important;
        height: 20px !important;
    }
    .value-card-v2 h3 {
        font-family: var(--font-heading) !important;
        font-size: 1.15rem !important; /* Compact header size */
        margin-bottom: 0.4rem !important;
    }
    .value-card-v2 p {
        font-size: 0.78rem !important; /* Small readable paragraph */
        line-height: 1.45 !important;
        margin: 0 !important;
    }

    /* --- IMPACT STATS GRID (FORCE 1-COLUMN) --- */
    .impact-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 3rem !important;
    }
    .impact-card {
        padding: 2.5rem 1.75rem !important;
        border-radius: 18px !important;
    }
    .impact-card-num {
        font-size: 3.2rem !important;
    }
    .impact-card-title {
        font-size: 0.68rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .section-header-centered {
        margin-bottom: 2.5rem !important;
    }
}
