/* ═══════════════════════════════════════════
   HERO — Landing Section
   ═══════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 1.2rem;
    position: relative;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--neon);
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.6rem, 9vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 0 40px var(--neon-glow);
}
.hero-title span {
    color: var(--neon);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ── Cycling phrases container ── */
.hero-cycle {
    height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
}
.hero-cycle p {
    position: absolute;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: #ccc;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-cycle p.active {
    opacity: 1;
}

/* ── Scroll hint ── */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #555;
    animation: bob 2.4s ease-in-out infinite;
}
