/* ==============================================
   NEO-BRUTALIST HERO — MOBILE-FIRST
   ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg);
}

@media (min-width: 900px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* === HERO IMAGE — MOBILE BACKGROUND === */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-alt);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--bg) 60%
    );
}

@media (min-width: 900px) {
    .hero-bg {
        position: relative;
    }
    .hero-bg::after {
        background: linear-gradient(
            to right,
            var(--bg) 0%,
            transparent 50%
        );
    }
}

/* === HERO CONTENT — MOBILE STACK === */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-md);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    min-height: 100vh;
    min-height: 100dvh;
}

@media (min-width: 480px) {
    .hero-content {
        padding: var(--space-xl);
    }
}

@media (min-width: 900px) {
    .hero-content {
        justify-content: center;
        padding: var(--space-2xl);
        max-width: 700px;
    }
}

/* === HERO BADGE === */
.hero-badge {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--accent);
    padding: var(--space-2xs) var(--space-xs);
    display: inline-block;
    margin-bottom: var(--space-sm);
    width: fit-content;
}

@media (min-width: 480px) {
    .hero-badge {
        font-size: var(--text-xs);
        letter-spacing: 0.2em;
        margin-bottom: var(--space-md);
    }
}

/* === HERO HEADLINE — RESPONSIVE SCALE === */
.hero h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 0.95;
    color: var(--text);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

@media (min-width: 375px) {
    .hero h1 {
        font-size: 2rem;
    }
}

@media (min-width: 480px) {
    .hero h1 {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-md);
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: var(--text-5xl);
        margin-bottom: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: var(--text-6xl);
    }
}

.hero h1 .highlight {
    display: block;
    color: var(--accent);
}

/* === HERO SUBTITLE === */
.hero-sub {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    max-width: 480px;
    display: none;
}

@media (min-width: 375px) {
    .hero-sub {
        display: block;
        font-size: 0.875rem;
        margin-bottom: var(--space-md);
    }
}

@media (min-width: 480px) {
    .hero-sub {
        font-size: var(--text-base);
        line-height: 1.7;
        margin-bottom: var(--space-lg);
    }
}

@media (min-width: 900px) {
    .hero-sub {
        margin-bottom: var(--space-xl);
    }
}

/* Hero meta, credibility, CTA and animations in separate files */
