/* ──────────────────────────────────────────────────────────────────
   PAGES VILLES — Composant page_hero_ville utilisé sur /traiteur-{ville}
────────────────────────────────────────────────────────────────── */

.page-hero-ville {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    padding: 80px 0 70px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}

/* Filigrane : nom de ville en grand gold semi-transparent */
.page-hero-ville__bg-name {
    position: absolute;
    right: 4%;
    bottom: 6%;
    font-family: var(--display);
    font-size: clamp(60px, 11vw, 180px);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--gold);
    opacity: 0.12;
    line-height: 0.9;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    user-select: none;
    text-align: right;
    max-width: 92%;
}
/* Pour les noms longs (Dar Bouazza, Mohammedia, Bouznika) */
.page-hero-ville__bg-name--long {
    font-size: clamp(50px, 8.5vw, 140px);
}

.page-hero-ville .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
}
.page-hero-ville .breadcrumb {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 241, 230, 0.7);
    margin-bottom: 18px;
    display: flex;
    gap: 8px;
    padding: 0;
    list-style: none;
}
.page-hero-ville .breadcrumb a {
    color: rgba(247, 241, 230, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero-ville .breadcrumb a:hover { color: var(--gold-bright); }
.page-hero-ville .breadcrumb .sep { color: var(--gold); }
.page-hero-ville .hero-eyebrow { color: var(--gold-bright) !important; }
.page-hero-ville .hero-eyebrow::before { background: var(--gold-bright); }

.page-hero-ville__title {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.04;
    margin: 0 0 18px;
    color: var(--cream);
    letter-spacing: 0.01em;
    max-width: 800px;
}
.page-hero-ville .lead {
    font-size: 18px;
    color: rgba(247, 241, 230, 0.85);
    max-width: 600px;
    margin-bottom: 32px;
}

.page-hero-ville__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 48px;
    margin-top: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(247, 241, 230, 0.15);
}
.page-hero-ville__stat { display: flex; flex-direction: column; gap: 4px; }
.page-hero-ville__stat b {
    font-family: var(--display);
    font-size: 30px;
    color: var(--gold-bright);
    font-weight: 400;
    line-height: 1;
}
.page-hero-ville__stat span {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 241, 230, 0.72);
}

@media (max-width: 860px) {
    .page-hero-ville { padding: 60px 0 50px; min-height: 320px; }
    .page-hero-ville__title { font-size: clamp(32px, 8vw, 48px); }
    .page-hero-ville__bg-name {
        font-size: clamp(48px, 16vw, 100px);
        bottom: 4%;
        right: 4%;
        opacity: 0.10;
    }
    .page-hero-ville__bg-name--long {
        font-size: clamp(38px, 12vw, 80px);
    }
    .page-hero-ville__stats { gap: 20px 28px; padding-top: 22px; }
    .page-hero-ville__stat b { font-size: 24px; }
}
@media (max-width: 480px) {
    .page-hero-ville__bg-name,
    .page-hero-ville__bg-name--long {
        font-size: clamp(40px, 14vw, 70px);
    }
}
