*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

 :root {
    --flame: #42A5CC;
    /* cerulean – primary accent (replaces orange) */
    --ember: #62AFD4;
    /* sky blue – hover/secondary accent */
    --gold: #B2E1FB;
    /* light sky – highlight/glow accent */
    --night: #0D0F14;
    /* near-black with blue tint */
    --deep: #131720;
    /* deep navy-dark */
    --card: #1A1E2A;
    /* card surface, blue-dark */
    --steel: #4A6C80;
    /* steel blue – used for borders/dividers/muted accents */
    --slate: #4A4C5F;
    /* dark slate – section bg variant */
    --border: rgba(74, 108, 128, 0.25);
    --text: #E2EBF0;
    --muted: #7A96A8;
    --white: #FFFFFF;
    --ff-display: 'Playfair Display', serif;
    --ff-body: 'Barlow', sans-serif;
    --ff-cond: 'Barlow Condensed', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--night);
    color: var(--text);
    font-family: var(--ff-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}


/* ─── SCROLLBAR ─── */

 ::-webkit-scrollbar {
    width: 4px;
}

 ::-webkit-scrollbar-track {
    background: var(--deep);
}

 ::-webkit-scrollbar-thumb {
    background: var(--flame);
}


/* ─── NAV ─── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 4rem;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(13, 15, 20, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--ff-cond);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
}

.nav-logo span {
    color: var(--flame);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--flame);
    color: var(--white);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.65rem 1.6rem;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--ember);
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
}


/* ─── HERO ─── */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ── SLIDESHOW ── */

.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 7s ease;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
}

.hero-slide.leaving {
    opacity: 0;
    transform: scale(1.08);
}


/* Slide nav dots */

.slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.slide-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
}

.slide-dot.active {
    background: var(--flame);
    width: 22px;
    border-radius: 3px;
}


/* Slide progress bar */

.slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--flame), var(--gold));
    z-index: 10;
    transition: width linear;
}


/* Prev / Next arrows */

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(13, 15, 20, 0.5);
    border: 1px solid rgba(74, 108, 128, 0.35);
    color: var(--white);
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(6px);
}

.slide-arrow:hover {
    background: var(--flame);
    border-color: var(--flame);
}

.slide-arrow.prev {
    left: 1.5rem;
}

.slide-arrow.next {
    right: 1.5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 15, 20, 0.85) 0%, rgba(13, 15, 20, 0.55) 55%, rgba(13, 15, 20, 0.3) 100%), radial-gradient(ellipse at 80% 50%, rgba(66, 165, 204, 0.18) 0%, transparent 60%);
}


/* ── HERO INNER LAYOUT ── */

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 9rem 4rem 6rem;
    min-height: 100vh;
}


/* Left: text */

.hero-content {
    flex: 1;
    max-width: 560px;
}


/* Right: cards 2-column grid */

.hero-cards {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 340px;
    animation: fadeUp 0.9s 0.6s ease both;
}


/* Each stat card */

.hero-stat-card {
    width: 100%;
    background: rgba(13, 15, 20, 0.52);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(98, 175, 212, 0.22);
    border-radius: 12px;
    padding: 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.3rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(178, 225, 251, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--flame), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
    border-color: rgba(66, 165, 204, 0.4);
}

.hero-stat-card:hover::before {
    opacity: 1;
}

.stat-card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 6px rgba(66, 165, 204, 0.5));
    line-height: 1;
}

.stat-card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card-number {
    font-family: var(--ff-cond);
    font-weight: 900;
    font-size: 1.7rem;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 16px rgba(66, 165, 204, 0.45);
}

.stat-card-number span {
    color: var(--flame);
}

.stat-card-label {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(178, 225, 251, 0.6);
    margin-top: 0.2rem;
    font-weight: 500;
}


/* Countdown spans both columns */

.hero-countdown-card {
    grid-column: 1 / -1;
    background: rgba(66, 165, 204, 0.1);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(66, 165, 204, 0.32);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(66, 165, 204, 0.12), inset 0 1px 0 rgba(178, 225, 251, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #62AFD4, #B2E1FB, #62AFD4, transparent);
}

.hero-countdown-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(66, 165, 204, 0.22);
}

.cd-card-label {
    font-family: var(--ff-cond);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 0.6rem;
    display: block;
}

.cd-card-units {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
}

.cd-card-unit {
    text-align: center;
}

.cd-card-num {
    font-family: var(--ff-cond);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1;
    background: rgba(13, 15, 20, 0.45);
    border: 1px solid rgba(74, 108, 128, 0.3);
    border-radius: 5px;
    padding: 0.15rem 0.35rem;
    min-width: 2rem;
    display: block;
    text-align: center;
}

.cd-card-lbl {
    font-size: 0.45rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(178, 225, 251, 0.5);
    margin-top: 0.2rem;
    display: block;
}

.cd-card-sep {
    font-family: var(--ff-cond);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--flame);
    margin-bottom: 0.7rem;
    opacity: 0.6;
}

.cd-card-event {
    font-size: 0.52rem;
    color: rgba(178, 225, 251, 0.4);
    margin-top: 0.45rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
}

.hero-eyebrow {
    font-family: var(--ff-cond);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: fadeUp 0.8s ease both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--flame);
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.2rem;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
    color: var(--flame);
    font-style: italic;
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(232, 228, 220, 0.75);
    max-width: 520px;
    margin-bottom: 2.2rem;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s 0.45s ease both;
    margin-bottom: 0;
}

.btn-primary {
    background: var(--flame);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
    border-radius: 20px;
}

.btn-primary:hover {
    background: var(--ember);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
    border-color: var(--flame);
    color: var(--flame);
}


/* ─── SECTIONS ─── */

section {
    padding: 6rem 4rem;
}

.section-eyebrow {
    font-family: var(--ff-cond);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--flame);
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.5rem;
}


/* ─── FEATURED EVENT ─── */

.featured-event {
    background: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.event-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    padding: 20px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(1.2);
}

.event-date-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--flame);
    color: var(--white);
    font-family: var(--ff-cond);
    font-weight: 900;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--card) 0%, var(--deep) 100%);
    border-left: 4px solid var(--flame);
}

.event-title {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.event-title em {
    color: var(--flame);
    font-style: italic;
}

.event-desc {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.event-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.event-tag {
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
}


/* ─── VISION ─── */

.vision-section {
    background: var(--night);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.vision-pillar {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s, background 0.3s;
}

.vision-pillar:hover {
    border-color: var(--flame);
    background: rgba(66, 165, 204, 0.06);
}

.pillar-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--flame);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--white);
}

.pillar-title {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.pillar-text {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.vision-right {
    position: relative;
}

.vision-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vision-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.9);
    transition: filter 0.3s;
}

.vision-img:first-child {
    margin-top: 2rem;
}

.vision-img:hover {
    filter: brightness(1) saturate(1.1);
}

.vision-quote {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--flame);
    color: var(--white);
    padding: 1.5rem 2rem;
    max-width: 260px;
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
}


/* ─── WHO WE ARE ─── */

.who-section {
    background: var(--deep);
    text-align: center;
}

.who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 1.5rem 0 3rem;
}

.who-tag {
    background: rgba(66, 165, 204, 0.1);
    border: 1px solid rgba(66, 165, 204, 0.3);
    color: var(--flame);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--border);
}

.who-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-right: 1px solid var(--border);
}

.who-card:last-child {
    border-right: none;
}

.who-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.8);
    transition: filter 0.5s, transform 0.5s;
}

.who-card:hover img {
    filter: brightness(0.4) saturate(1);
    transform: scale(1.04);
}

.who-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-family: var(--ff-cond);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

video {
    width: 100%;
    height: auto;
    display: block;
}


/* ─── INITIATIVES ─── */

.initiatives-section {
    background: var(--night);
}

.initiatives-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.initiative-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--flame);
    transition: height 0.4s;
}

.initiative-card:hover::before {
    height: 100%;
}

.initiative-card:hover {
    border-color: rgba(66, 165, 204, 0.35);
    transform: translateY(-3px);
}

.initiative-num {
    font-family: var(--ff-cond);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(66, 165, 204, 0.15);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.initiative-title {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.initiative-text {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ─── EXPERIENCES ─── */

.experiences-section {
    background: var(--deep);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 3rem;
}

.experience-item {
    background: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.experience-item:nth-child(2n) {
    direction: rtl;
}

.experience-item:nth-child(2n)>* {
    direction: ltr;
}

.experience-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: filter 0.4s, transform 0.4s;
}

.experience-item:hover .experience-img img {
    filter: brightness(0.9);
    transform: scale(1.03);
}

.experience-text {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-num {
    font-family: var(--ff-cond);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--flame);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.exp-title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.exp-desc {
    color: var(--muted);
    font-size: 0.88rem;
}


/* ─── CTA ─── */

.cta-section {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #2B3E4D 0%, #4A6C80 50%, #2B3E4D 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.btn-white {
    background: var(--white);
    color: #4A6C80;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


/* ─── FOOTER ─── */

footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 4rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {}

.footer-logo {
    font-family: var(--ff-cond);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--flame);
}

.footer-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact a {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--flame);
}

.footer-col h4 {
    font-family: var(--ff-cond);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    color: var(--muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--flame);
}

.footer-newsletter {}

.footer-newsletter p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-right: none;
    padding: 0.7rem 1rem;
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--muted);
}

.newsletter-form button {
    background: var(--flame);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--ember);
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    border-radius: 10px;
}

.social-link {
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    border-radius: 15px;
}

.social-link:hover {
    border-color: var(--flame);
    color: var(--white);
    background: var(--flame);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--muted);
}


/* ─── FLAME DIVIDER ─── */

.flame-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4A6C80, #42A5CC, #B2E1FB, #42A5CC, #4A6C80, transparent);
}


/* ─── ANIMATIONS ─── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes counterUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
    .hero-cards {
        width: 300px;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 1.4rem 2rem;
    }
    nav.scrolled {
        padding: 0.9rem 2rem;
    }
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    section {
        padding: 4rem 2rem;
    }
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 7rem 2rem 3rem;
        gap: 2.5rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-cards {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }
    .hero-countdown-card {
        grid-column: 1 / -1;
    }
    .featured-event {
        grid-template-columns: 1fr;
    }
    .event-image {
        min-height: 260px;
    }
    .event-content {
        padding: 2.5rem 2rem;
    }
    .vision-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    .experience-item {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }
    .experience-img {}
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .cta-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 500px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
    .who-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .nav-cta {
        display: none;
    }
}