#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 5rem;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 58%, rgba(122,21,40,0.16) 0%, transparent 72%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}

.hero-banner {
    width: min(760px, 88vw);
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 1.1s cubic-bezier(0.22,1,0.36,1) forwards 0.25s;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 60px rgba(122,21,40,0.2));
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-top: 1.6rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) forwards 0.75s;
    position: relative;
    z-index: 1;
}

.hero-divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(122,21,40,0.6), transparent);
    margin: 3rem auto 0;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.3s;
    position: relative;
    z-index: 1;
}