/* ==========================================================================
   Hero — ESGscheibe (static, text left, photo right)
   ========================================================================== */

.ts-hero {
    background: var(--ts-dark);
    border-bottom: 1px solid var(--ts-dark-tertiary);
    padding: 4.5rem 0 3rem;
}

.ts-hero-container {
    max-width: var(--ts-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ts-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.ts-hero-text {
    min-width: 0;
}

.ts-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ts-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.ts-hero-title {
    font-family: var(--ts-font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ts-white);
    margin: 0 0 1rem;
}

.ts-hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ts-silver);
    margin: 0 0 1.5rem;
    max-width: 36rem;
}

.ts-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.ts-hero-media {
    aspect-ratio: 4 / 3;
    background: var(--ts-dark-tertiary);
    border-radius: var(--ts-radius-lg);
    overflow: hidden;
    position: relative;
}

.ts-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-hero-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--ts-silver-light);
}

.ts-hero-media-placeholder span {
    font-size: 0.75rem;
    font-family: var(--ts-font-mono);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

/* Mobile */
@media (max-width: 860px) {
    .ts-hero {
        padding: 2.5rem 0 2.5rem;
    }

    .ts-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ts-hero-media {
        order: -1;
    }

    .ts-hero-title {
        font-size: 1.65rem;
    }

    .ts-hero-subtitle {
        font-size: 0.95rem;
    }

    .ts-hero-cta {
        flex-direction: column;
    }

    .ts-hero-cta .ts-btn {
        width: 100%;
    }
}
