/* ── Hero ─────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--color-dark);           /* fallback color */
    padding: var(--navbar-height) var(--space-4) var(--space-16);
}

/* ── Slideshow ───────────────────────────────────────────── */
.hero__slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.03);    /* subtle Ken Burns start */
}

.hero__slide--active {
    opacity: 1;
    animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1.06); }
    to   { transform: scale(1.00); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__slide { transition: none; }
    .hero__slide--active { animation: none; transform: scale(1); }
}

/* ── Overlay ─────────────────────────────────────────────── */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(13,13,18,.55) 0%,
        rgba(13,13,18,.70) 50%,
        rgba(13,13,18,.80) 100%
    );
}

/* ── Radial glow — evokes the sun from the logo ─────────── */
.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(200,146,10,.14) 0%,
        rgba(30,61,143,.06) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 2;
}

/* ── Content (above all layers) ─────────────────────────── */
.hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    max-width: 760px;
}

/* ── Logo ────────────────────────────────────────────────── */
.hero__logo-wrap {
    position: relative;
}

.hero__logo {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-gold), 0 0 0 8px rgba(200,146,10,.08);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero__logo:hover {
    transform: scale(1.04);
    box-shadow: 0 0 60px rgba(200,146,10,.45), 0 0 0 12px rgba(200,146,10,.06);
}

@media (min-width: 768px) {
    .hero__logo { width: 200px; height: 200px; }
}

/* ── Text ────────────────────────────────────────────────── */
.hero__eyebrow {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
        0 0 18px rgba(200,146,10,.8),
        0 2px 8px rgba(0,0,0,.6);
}

.hero__org-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    text-shadow:
        0 0 40px rgba(255,255,255,.25),
        0 4px 24px rgba(0,0,0,.7);
}

.hero__title {
    font-family: var(--font-body);
    font-size: clamp(var(--text-sm), 2vw, var(--text-lg));
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.hero__divider {
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C8920A, transparent);
    margin: var(--space-2) auto;
    border-radius: var(--radius-full);
}

.hero__subtitle {
    font-size: clamp(var(--text-base), 2.5vw, var(--text-lg));
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ── CTA group ───────────────────────────────────────────── */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

/* ── Slide indicators (dots) — in-flow, above the CTA ──── */
.hero__indicators {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    border: none;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition-base), transform var(--transition-base);
}

.hero__dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

.hero__dot:hover:not(.active) {
    background: rgba(255,255,255,.65);
}

/* ── Scroll-down indicator ───────────────────────────────── */
.hero__scroll-down {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
    transition: opacity var(--transition-fast);
    z-index: 3;
}
.hero__scroll-down:hover { opacity: 1; }
.hero__scroll-down svg { width: 28px; height: 28px; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}
