/* ==========================================================================
   Viltgroen — Hero: Centered Layout, Heavy Gradient, 90vh, Editorial
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero--short {
    min-height: 70vh;
}

.hero--compact {
    min-height: 50vh;
}

.hero--menu {
    min-height: 60vh;
}

/* Gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 17, 23, 0.5) 0%,
        rgba(13, 17, 23, 0.75) 40%,
        rgba(13, 17, 23, 0.95) 100%
    );
    z-index: 1;
}

/* Hero content — centered, narrow */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: var(--s-32);
    text-align: center;
}

/* Kicker in hero */
.hero__kicker {
    display: inline-block;
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--c-accent);
    padding-bottom: var(--s-8);
    border-bottom: 1px solid var(--c-accent);
    margin-bottom: var(--s-24);
}

/* Title — display weight, not bold */
.hero__title {
    font-family: var(--f-heading);
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--c-white);
    margin-bottom: var(--s-16);
    line-height: 1.1;
}

/* Subtitle */
.hero__subtitle {
    font-family: var(--f-body);
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--c-text-dim);
    margin-bottom: var(--s-32);
}

/* Badge row */
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-8);
    margin-bottom: var(--s-32);
}

/* CTA row in hero */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-16);
}
