/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background: url('../images/content/hero-bg.webp') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(17, 17, 17, .82) 0%,
            rgba(42, 42, 42, .7) 50%,
            rgba(17, 17, 17, .85) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(128, 0, 0, .2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(216, 209, 198, .08) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, .5) 40px,
            rgba(255, 255, 255, .5) 41px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0;
}

.hero-text {
    color: var(--white);
}

.hero-text .section-label {
    color: var(--stone);
}

.hero-text h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    color: var(--white);
    margin: 16px 0 24px;
}

.hero-text h1 em {
    font-style: italic;
    color: var(--stone);
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-firefighter-note {
    margin-top: 14px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
}

.hero-firefighter-note a {
    color: rgba(255, 255, 255, .9);
    text-decoration: underline;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 720px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        background-position: 65% center;
        padding-top: 60px;
    }

    .hero-content {
        padding: 48px 32px;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}