/* ═══════════════════════════════════════════════════════════
   Le Pignondor — hero.css
   Stage-profile hero (55/45 horizontal), small variant (40/60).
   NO overlay, NO gradient (rule 29, 33, 54).
   ═══════════════════════════════════════════════════════════ */

.hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 520px;
    background: var(--c-bg);
}

.hero__image {
    overflow: hidden;
    min-height: 280px;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--s-48) var(--s-24);
}

.hero__kicker {
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.25px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: var(--s-24);
}

.hero h1 {
    font-family: var(--f-heading);
    font-weight: 600;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.08;
    margin-bottom: var(--s-24);
}
.hero h1 em {
    font-style: italic;
    font-weight: 500;
}

.hero__desc {
    color: var(--c-text-dim);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: var(--s-32);
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-16);
}

/* ── Small variant (inner pages: 40/60) ─────────────────── */
.hero--small {
    min-height: 380px;
}
.hero--small .hero__content {
    padding: var(--s-40) var(--s-24);
}
