/* ============================
           DESIGN TOKENS
        ============================ */
:root {
    --ebony: #000000;
    --ivory: #FFFFFF;
    --pink: #FF008C;
    --gold: #AA7E16;
    --purple: #432A53;
    --surface: #080808;
    --card: #101010;
    --teal: #00C8BE;
    --pearl-grad: linear-gradient(160deg, #7FE8E0 0%, #B8A0E0 35%, #F0A0C8 70%, #FF008C 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ebony);
    color: var(--ivory);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ============================
           E★ PATTERN BACKGROUND
        ============================ */
.e-pattern-bg {
    background-color: #000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg transform='rotate(-18 48 48)'%3E%3Ctext x='2' y='68' font-family='Georgia%2C serif' font-size='58' font-weight='900' fill='rgba(255%2C255%2C255%2C0.07)'%3EE%3C/text%3E%3Cpolygon points='70%2C14 73%2C23 82%2C23 75%2C28 78%2C37 70%2C32 62%2C37 65%2C28 58%2C23 67%2C23' fill='rgba(255%2C255%2C255%2C0.07)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 96px 96px;
}

/* ============================
           NAVBAR
        ============================ */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 1.6rem 0;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

#mainNav.scrolled {
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(16px);
    padding: 1rem 0;
    border-bottom-color: rgba(255,0,140,0.15);
}

.nav-brand-icon {
    width: 38px;
    height: 38px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.nav-brand-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ivory);
    line-height: 1.3;
}

/* Desktop links */
.nav-link-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    transition: color 0.2s;
}

.nav-link-item:hover {
    color: var(--pink) !important;
}

/* ── Hamburger button ───────────────── */
#drawerToggle {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 36px;
    height: 36px;
}

.hb-line {
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.75);
    transition: transform 0.38s cubic-bezier(0.76,0,0.24,1),
                        opacity   0.28s ease,
                        width     0.38s cubic-bezier(0.76,0,0.24,1);
}

.hb-line:nth-child(1) {
    width: 24px;
}

.hb-line:nth-child(2) {
    width: 16px;
}

/* Open state — morph into × */
#drawerToggle.is-open .hb-line:nth-child(1) {
    width: 22px;
    transform: translateY(6px) rotate(45deg);
}

#drawerToggle.is-open .hb-line:nth-child(2) {
    width: 22px;
    transform: translateY(0px) rotate(-45deg);
}

/* ── Scrim ──────────────────────────── */
#drawerScrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 9100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.42s cubic-bezier(0.76,0,0.24,1);
}

#drawerScrim.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ── Drawer panel ───────────────────── */
#drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
    background: #000;
    border-left: 1px solid rgba(255,255,255,0.07);
    z-index: 9200;
    transform: translateX(100%);
    transition: transform 0.52s cubic-bezier(0.76,0,0.24,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#drawer.is-open {
    transform: translateX(0);
}

/* Top bar inside drawer */
.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.drawer-brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.drawer-close {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px;
    color: rgba(255,255,255,0.35);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1;
    transition: color 0.2s;
}

.drawer-close:hover {
    color: var(--pink);
}

/* Nav list */
.drawer-nav {
    flex: 1;
    padding: 0.8rem 0;
    list-style: none;
    overflow-y: auto;
}

.drawer-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Stagger each item when drawer opens */
#drawer.is-open .drawer-nav li {
    opacity: 1;
    transform: translateX(0);
}

#drawer.is-open .drawer-nav li:nth-child(1) {
    transition-delay: 0.10s;
}

#drawer.is-open .drawer-nav li:nth-child(2) {
    transition-delay: 0.15s;
}

#drawer.is-open .drawer-nav li:nth-child(3) {
    transition-delay: 0.20s;
}

#drawer.is-open .drawer-nav li:nth-child(4) {
    transition-delay: 0.25s;
}

#drawer.is-open .drawer-nav li:nth-child(5) {
    transition-delay: 0.30s;
}

#drawer.is-open .drawer-nav li:nth-child(6) {
    transition-delay: 0.35s;
}

#drawer.is-open .drawer-nav li:nth-child(7) {
    transition-delay: 0.40s;
}

.drawer-link {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding: 1.1rem 1.8rem;
    text-decoration: none;
    position: relative;
    transition: background 0.22s ease;
}

.drawer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--pink);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.28s cubic-bezier(0.76,0,0.24,1);
}

.drawer-link:hover {
    background: rgba(255,255,255,0.025);
}

.drawer-link:hover::before {
    transform: scaleY(1);
}

.drawer-link:hover .dl-num {
    color: var(--pink);
}

.drawer-link:hover .dl-label {
    color: var(--ivory);
}

.dl-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.18);
    min-width: 20px;
    transition: color 0.22s;
}

.dl-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: color 0.22s;
}

/* Drawer footer */
.drawer-footer {
    padding: 1.5rem 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.drawer-footer-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    line-height: 1.7;
}

.drawer-year {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--pink);
    margin-bottom: 6px;
}

/* ============================
           HERO
        ============================ */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #000;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-size: 110px 110px;
}

/* Diagonal color splits — brand star-angle system */
.hero-wedge-pearl {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 58%;
    background: var(--pearl-grad);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    opacity: 0.82;
}

.hero-wedge-gold {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 45vh 0 0 38vw;
    border-color: transparent transparent transparent var(--gold);
    opacity: 0.85;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.3s forwards;
}

.hero-logo-lockup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-e-svg {
    width: clamp(80px, 10vw, 120px);
}

.hero-title-block {
    text-align: left;
}

.hero-title-above {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    display: block;
    line-height: 1;
}

.hero-title-main {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ivory);
    line-height: 0.88;
    display: block;
}

.hero-year {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    letter-spacing: 0.5em;
    color: var(--pink);
    margin: 1.8rem 0;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-tagline {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.8s forwards;
}

.scroll-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,0,140,0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================
           BUTTONS
        ============================ */
.btn-brand-solid {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--pink);
    color: #fff;
    border: 2px solid var(--pink);
    padding: 0.85rem 2.4rem;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

.btn-brand-solid:hover {
    background: #fff;
    color: var(--pink);
    transform: translateY(-2px);
}

.btn-brand-outline {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.85rem 2.4rem;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

.btn-brand-outline:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}

/* ============================
           SECTION UTILITIES
        ============================ */
.sec-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--pink);
    display: block;
    margin-bottom: 1rem;
}

.sec-headline {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ivory);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.body-copy {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
}

.pink {
    color: var(--pink);
}

.gold {
    color: var(--gold);
}

.brand-rule {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,0,140,0.4), transparent);
    margin: 2.5rem 0;
}

/* Section spacing */
.sec-pad {
    padding: 7rem 0;
}

.sec-pad-lg {
    padding: 9rem 0;
}

/* ============================
           ABOUT
        ============================ */
#about {
    background: #000;
    overflow: hidden;
    position: relative;
}

.about-right-block {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38%;
    background: var(--purple);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 55% 100%);
    opacity: 0.12;
}

.stat-val {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--pink);
    line-height: 1;
}

.stat-lbl {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-top: 0.4rem;
    line-height: 1.5;
}

.stat-divider {
    width: 1px;
    height: 55px;
    background: rgba(255,0,140,0.2);
}

.blockquote-brand {
    border-left: 3px solid var(--pink);
    padding-left: 1.5rem;
}

.blockquote-brand p {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

/* About image placeholder */
.about-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.07);
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://eltonjohnimpactawards.com/assets/img/eltonjohn-photo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
}

.about-img-diagonal {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 80px 0;
    border-color: transparent var(--gold) transparent transparent;
    opacity: 0.6;
}

.about-img-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.about-img-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
}

.about-img-caption {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
}

.about-img-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px;
}

/* ============================
           HONOREES
        ============================ */
#honorees {
    position: relative;
}

.honoree-inner {
    background: rgba(0,0,0,0.88);
    padding: 7rem 0;
}

.honoree-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.honoree-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,0,140,0.5);
    box-shadow: 0 20px 60px rgba(255,0,140,0.12);
}

.honoree-img-area {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #1a1a1a;
}

.honoree-img-area.featured {
    aspect-ratio: unset;
    height: 100%;
    min-height: 280px;
}

.honoree-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honoree-placeholder svg {
    opacity: 0.08;
}

.honoree-color-wash {
    position: absolute;
    inset: 0;
    transition: opacity 0.35s ease;
}

.honoree-card:hover .honoree-color-wash {
    opacity: 0.65 !important;
}

.honoree-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}

.honoree-award-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--pink);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 10px;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.honoree-body {
    padding: 1.6rem;
}

.honoree-body.featured {
    padding: 2.8rem;
}

.honoree-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 0.2rem;
}

.honoree-name.xl {
    font-size: clamp(2rem, 4vw, 3rem);
}

.honoree-bio {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    margin-top: 0.8rem;
}

/* ============================
           PODCAST
        ============================ */
#podcast {
    background: var(--purple);
    position: relative;
    overflow: hidden;
}

.podcast-wedge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 220px 500px;
    border-color: transparent transparent rgba(255,0,140,0.12) transparent;
}

.podcast-card {
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.8rem;
    backdrop-filter: blur(12px);
}

.host-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.host-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--pink), #6A0080);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.host-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.host-role {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1px;
}

.podcast-pull {
    border-left: 3px solid var(--pink);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* ============================
           COMMUNITY IMPACT
        ============================ */
#community {
    background: var(--ebony);
}

.org-card {
    display: block;
    text-decoration: none;
    background: #080808;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 1.6rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.org-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.org-card:hover {
    border-color: rgba(255,0,140,0.2);
    background: #0c0c0c;
}

.org-card:hover::before {
    transform: scaleX(1);
}

.org-card:hover .org-logo-placeholder {
    border-color: rgba(255,0,140,0.25);
}

/* Card inner layout */
.org-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.org-card-text {
    flex: 1;
    min-width: 0;
}

/* Placeholder logo */
.org-logo-placeholder {
    flex-shrink: 0;
    width: 72px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.org-logo-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
}

.org-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    opacity: 0.55;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.org-card:hover .org-logo-img {
    opacity: 0.8;
}

.org-logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1.4;
    padding: 4px;
}

.org-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ivory);
}

.org-desc {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    margin-top: 4px;
}

/* ============================
           ADVISORY BOARD
        ============================ */
#advisory {
    background: #060606;
}

.board-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.board-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: rgba(255,0,140,0.12);
    line-height: 1;
    min-width: 58px;
    flex-shrink: 0;
}

.board-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ivory);
}

.board-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-top: 3px;
    line-height: 1.55;
}

/* ============================
           HISTORY
        ============================ */
#history {
    background: var(--ebony);
    position: relative;
    overflow: hidden;
}

.history-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(ellipse, rgba(67,42,83,0.28) 0%, transparent 70%);
    pointer-events: none;
}

.tl-item {
    position: relative;
    padding-left: 2.8rem;
    padding-bottom: 3rem;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 11px;
    height: 11px;
    background: var(--pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.tl-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 22px;
    width: 1px;
    height: calc(100% - 18px);
    background: linear-gradient(to bottom, rgba(255,0,140,0.35), transparent);
}

.tl-item:last-child::after {
    display: none;
}

.tl-year {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.4rem;
}

.tl-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.tl-text {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
}

.history-stat-box {
    border: 1px solid rgba(255,255,255,0.07);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.history-stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(67,42,83,0.22), transparent);
}

.hs-val {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--pink);
    line-height: 1;
    position: relative;
}

.hs-lbl {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    position: relative;
    margin-top: 4px;
}

.prev-honorees-box {
    border: 1px solid rgba(255,0,140,0.2);
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,0,140,0.06), rgba(67,42,83,0.15));
}

/* ============================
           PARTNERS
        ============================ */
#partners {
    background: #020202;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.main-partner-pill {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.7rem 2rem;
}

.partner-badge {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.6rem 1.1rem;
    transition: color 0.3s, border-color 0.3s;
}

.partner-badge:hover {
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,0,140,0.18);
}

.main-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

/* ============================
           FOOTER
        ============================ */
footer {
    background: #000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,0,140,0.1);
}

.footer-copy {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.18);
    text-align: center;
    margin-top: 1.5rem;
}

.footer-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

/* ============================
           REVEAL ANIMATIONS
        ============================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal.d1 {
    transition-delay: 0.1s;
}

.reveal.d2 {
    transition-delay: 0.2s;
}

.reveal.d3 {
    transition-delay: 0.3s;
}

.reveal.d4 {
    transition-delay: 0.4s;
}

.reveal.d5 {
    transition-delay: 0.5s;
}

.reveal.d6 {
    transition-delay: 0.6s;
}

/* Mobile tweaks */
@media (max-width: 767px) {
    .hero-logo-lockup {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title-block {
        text-align: center;
    }

    .hero-wedge-pink {
        border-width: 0 0 16vh 80vw;
    }

    .hero-wedge-pearl {
        width: 55%;
        height: 40%;
    }
}