/* =========================================
   HOME HERO - TYPOGRAPHY
========================================= */

/* Logo Mark */
.home-hero-logo {
    max-width: 32px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    /* Pure white */
    opacity: 0.7;

    /* Fade in animation */
    opacity: 0;
    animation: homeHeroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.home-hero-logo-picture {
    display: block;
    width: 32px;
    margin-bottom: 2rem;
}

.home-hero-logo-picture .home-hero-logo {
    margin-bottom: 0;
}

/* Main Headline */
.home-hero-headline {
    font-family: var(--home-font-display);
    font-weight: 100;
    /* Hairline */
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--home-text-primary);
    margin: 0 0 2rem;
    text-transform: uppercase;
}

/* Individual Words */
.home-hero-word {
    display: block;
    overflow: hidden;

    /* Staggered fade in */
    opacity: 0;
    transform: translateY(30px);
    animation: homeHeroWordReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-hero-word:nth-child(1) {
    animation-delay: 0.5s;
}

.home-hero-word:nth-child(2) {
    animation-delay: 0.7s;
}

.home-hero-word:nth-child(3) {
    animation-delay: 0.9s;
}

/* Subtitle */
.home-hero-subtitle {
    font-family: var(--home-font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--home-text-muted);
    text-transform: uppercase;
    margin: 0;
    padding-left: 2rem;
    border-left: 1px solid var(--home-border-muted);

    /* Fade in */
    opacity: 0;
    animation: homeHeroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .home-hero-logo {
        margin-bottom: 1.5rem;
        max-width: 40px;
    }

    .home-hero-logo-picture {
        width: 40px;
        margin-bottom: 1.5rem;
    }

    .home-hero-logo-picture .home-hero-logo {
        margin-bottom: 0;
    }

    .home-hero-headline {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .home-hero-subtitle {
        border-left: none;
        padding-left: 0;
        font-size: 0.8rem;
    }
}
