/* Hero — single screen, centered (matching druckmannlab.com layout) */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fefefe 0%, #faf9f7 100%);
    padding-top: var(--nav-height);
}

/* Full-width black banner with image */
.hero__banner {
    width: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-lg);
}

.hero__image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Text content below banner */
.hero__container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-lg);
}

/* Tagline — wide enough to avoid excessive line breaks */
.hero__tagline {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0 auto var(--space-lg);
}

/* Affiliations — single paragraph, compact */
.hero__affiliations {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.hero__affiliations a {
    color: var(--color-accent);
    font-weight: 500;
}

.hero__affiliations a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .hero__banner {
        padding: var(--space-lg) 0;
    }

    .hero__image {
        width: 200px;
        height: 200px;
    }

    .hero__tagline {
        font-size: 1.1rem;
    }

    .hero__affiliations {
        font-size: 0.9rem;
    }
}
