/* ============================================================================
   Pages locales SEO (hubs ville + service×ville) — réutilise le design system
   (style.css / enhancements.css). Styles spécifiques aux pages de contenu.
   ============================================================================ */

/* En-tête de page (page-hero) */
.page-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}
.page-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(17,17,17,0.85) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
    display: inline-block;
    color: #fff;
    background: rgba(155,77,43,0.9);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.page-hero h1 .accent { color: #E8C9A0; }
.page-hero p.lead {
    color: rgba(255,255,255,0.92);
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    max-width: 46rem;
    line-height: 1.6;
}
.page-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

/* Fil d'Ariane */
.breadcrumb {
    background: var(--color-bg-alt);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-family: var(--font-body);
    font-size: 0.85rem;
}
.breadcrumb ol {
    list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem;
    max-width: 1400px; margin: 0 auto; padding: 0.9rem var(--space-md);
    color: var(--color-text-light);
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb li + li::before { content: "›"; margin-right: 0.4rem; color: var(--color-text-light); }

/* Prose / contenu éditorial */
.prose { max-width: 48rem; }
.prose p, .local-card p { font-family: var(--font-body); color: var(--color-text); line-height: 1.8; margin-bottom: 1.1rem; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 1.75rem 0 0.6rem; }
.prose ul { margin: 0 0 1.25rem 1.2rem; }
.prose ul li { font-family: var(--font-body); line-height: 1.7; margin-bottom: 0.5rem; list-style: disc; }

/* Grille de cartes locales (services / villes) */
.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.local-card {
    display: block;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.local-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); }
.local-card h3 { margin-bottom: 0.6rem; font-size: 1.3rem; }
.local-card .price { color: var(--color-accent); font-weight: 600; font-family: var(--font-body); }

/* Bloc prix */
.price-band {
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem 1.75rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    font-family: var(--font-body);
}
.price-band strong { color: var(--color-accent); }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1.25rem 0; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.faq-item p { font-family: var(--font-body); color: var(--color-text-light); line-height: 1.7; }

/* Liens villes dans le footer (maillage) */
.footer-links ul li a { transition: color 0.2s var(--ease); }
.footer-links ul li a:hover { color: var(--color-accent); }

@media (max-width: 768px) {
    .page-hero { min-height: 60svh; padding-top: 5rem; }
}
