/* ============================================================
   Les Veilleurs du Souvenir — Feuille de styles principale
   Palette : gris ardoise, vert sauge, or bronze
   Mobile-first depuis 320px
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaire:    #4A5568;
    --secondaire:  #6B7C5E;
    --accent:      #9C8B6E;
    --texte:       #2D3748;
    --texte-clair: #718096;
    --fond:        #FFFFFF;
    --fond-alt:    #F7FAFC;
    --fond-sombre: #2D3748;
    --bordure:     #E2E8F0;
    --succes:      #48BB78;
    --erreur:      #E53E3E;
    --info:        #4299E1;
    --ombre:       0 2px 8px rgba(0,0,0,0.08);
    --ombre-lg:    0 4px 20px rgba(0,0,0,0.12);
    --radius:      6px;
    --transition:  0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--texte);
    background: var(--fond);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondaire);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Typographie ───────────────────────────────────────────── */
h1, h2, h3, h4 {
    color: var(--primaire);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--texte-clair);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ── Boutons ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--secondaire);
    color: #fff;
}

.btn-primary:hover {
    background: #5a6b4e;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--secondaire);
    border: 2px solid var(--secondaire);
}

.btn-secondary:hover {
    background: var(--secondaire);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: #8a7a5f;
    color: #fff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ── Header & Navigation ──────────────────────────────────── */
.site-header {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primaire);
    font-weight: 700;
    font-size: 1.1rem;
}

.site-logo img {
    height: 45px;
    width: auto;
}

.site-logo span {
    line-height: 1.2;
}

/* Navigation */
.main-nav {
    display: none;
}

.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--ombre-lg);
    padding: 20px;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--texte);
    font-weight: 500;
    border-bottom: 1px solid var(--bordure);
    transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondaire);
    background: var(--fond-alt);
}

.nav-cta {
    margin-top: 10px;
}

.nav-cta a {
    display: block;
    text-align: center;
    background: var(--secondaire);
    color: #fff !important;
    border-radius: var(--radius);
    border: none !important;
}

.nav-cta a:hover {
    background: #5a6b4e;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primaire);
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Bandeau contact */
.header-top {
    background: var(--fond-sombre);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 0;
    display: none;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top a {
    color: #fff;
    text-decoration: none;
}

.header-top a:hover {
    color: var(--accent);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, rgba(45,55,72,0.85), rgba(74,85,104,0.8)),
                url('/images/hero-entretien-sepulture-bourgoin-jallieu.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero .btn-primary {
    background: var(--secondaire);
}

.hero .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.hero .btn-secondary:hover {
    background: #fff;
    color: var(--primaire);
}

/* ── Sections ──────────────────────────────────────────────── */
.section {
    padding: 50px 0;
}

.section-alt {
    background: var(--fond-alt);
}

/* ── Cartes ────────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ombre-lg);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--fond-alt);
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    margin-bottom: 0.5rem;
}

.card-body p {
    color: var(--texte-clair);
    margin-bottom: 1rem;
}

/* ── Prestations (cartes icônes) ───────────────────────────── */
.prestation-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.prestation-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--secondaire);
}

/* ── Zone d'intervention ───────────────────────────────────── */
.zone-list {
    columns: 2;
    gap: 10px;
}

.zone-list li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.zone-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondaire);
    font-weight: bold;
}

/* ── Processus ─────────────────────────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 20px;
    counter-increment: step;
}

.process-step::before {
    content: counter(step);
    display: flex;
    width: 50px;
    height: 50px;
    background: var(--secondaire);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--texte-clair);
    font-size: 0.95rem;
}

/* ── Tarifs ─────────────────────────────────────────────────── */
.tarifs-section {
    margin-bottom: 2rem;
}

.tarif-categorie-titre {
    font-size: 1.3rem;
    color: var(--primaire);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.offre-card {
    background: #fff;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 15px;
    transition: all var(--transition);
    position: relative;
}

.offre-card:hover {
    border-color: var(--secondaire);
    box-shadow: var(--ombre);
}

.offre-card.selected {
    border-color: var(--secondaire);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(107,124,94,0.15);
}

.offre-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 10px;
}

.offre-nom {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primaire);
}

.offre-prix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondaire);
    white-space: nowrap;
}

.offre-prix-info {
    font-size: 0.85rem;
    color: var(--texte-clair);
    font-weight: 400;
}

.offre-description {
    color: var(--texte-clair);
    margin-bottom: 1rem;
}

.offre-details {
    margin-bottom: 1rem;
}

.offre-details li {
    padding: 3px 0 3px 22px;
    position: relative;
    font-size: 0.95rem;
}

.offre-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondaire);
    font-weight: bold;
}

.offre-btn {
    margin-top: 1rem;
}

/* ── Options du devis ──────────────────────────────────────── */
.options-section {
    background: var(--fond-alt);
    border-radius: var(--radius);
    padding: 25px;
    margin: 2rem 0;
}

.option-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bordure);
}

.option-item:last-child {
    border-bottom: none;
}

.option-item label {
    flex: 1;
    cursor: pointer;
}

.option-nom {
    font-weight: 600;
    display: block;
}

.option-desc {
    font-size: 0.9rem;
    color: var(--texte-clair);
}

.option-prix {
    font-weight: 600;
    color: var(--secondaire);
    white-space: nowrap;
}

.option-qty {
    width: 80px;
    padding: 6px 10px;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ── Récapitulatif devis ───────────────────────────────────── */
.recap-devis {
    background: #fff;
    border: 2px solid var(--secondaire);
    border-radius: var(--radius);
    padding: 25px;
}

.devis-form-section {
    order: 3;
}

.recap-titre {
    font-size: 1.2rem;
    color: var(--primaire);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bordure);
}

.recap-ligne {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
}

.recap-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0;
    margin-top: 10px;
    border-top: 2px solid var(--primaire);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primaire);
}

/* ── Formulaires ───────────────────────────────────────────── */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--texte);
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--erreur);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--texte);
    transition: border-color var(--transition);
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondaire);
    box-shadow: 0 0 0 3px rgba(107,124,94,0.15);
}

.form-control.error {
    border-color: var(--erreur);
}

.form-error {
    color: var(--erreur);
    font-size: 0.85rem;
    margin-top: 4px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-check input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--secondaire);
}

/* ── Alertes ───────────────────────────────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-succes {
    background: #F0FFF4;
    color: #276749;
    border: 1px solid #C6F6D5;
}

.alert-erreur {
    background: #FFF5F5;
    color: #C53030;
    border: 1px solid #FED7D7;
}

.alert-info {
    background: #EBF8FF;
    color: #2B6CB0;
    border: 1px solid #BEE3F8;
}

/* ── Confirmation ──────────────────────────────────────────── */
.confirmation-box {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--secondaire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirmation-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--fond-sombre);
    color: #CBD5E0;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col p,
.footer-col a {
    color: #A0AEC0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
}

.footer-bottom a {
    color: #A0AEC0;
}

/* ── Page mentions / confirmation ──────────────────────────── */
.page-header {
    background: var(--fond-sombre);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #A0AEC0;
}

.page-content {
    padding: 40px 0;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p,
.page-content li {
    margin-bottom: 0.75rem;
}

.page-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* ── Conteneurs restreints ──────────────────────────────────── */
.narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
.narrow-sm { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── Zone d'intervention image ─────────────────────────────── */
.zone-img-wrapper {
    background: var(--fond-alt);
    border-radius: var(--radius);
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zone-img-wrapper img {
    max-width: 100%;
    border-radius: var(--radius);
}

/* ── Liste avantages ───────────────────────────────────────── */
.avantages-list {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.avantages-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.avantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondaire);
    font-weight: bold;
}

/* ── Communes titre ────────────────────────────────────────── */
.communes-titre {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* ── Prestations sous-titres ───────────────────────────────── */
.prestation-content h3 {
    margin-top: 1rem;
}

/* ── Bouton avec espacement haut ───────────────────────────── */
.btn-spaced {
    margin-top: 1.5rem;
}

/* ── Section CTA centrée ───────────────────────────────────── */
.section-cta {
    text-align: center;
}

.section-cta p {
    max-width: 600px;
    margin: 1rem auto;
}

/* ── Options titre ─────────────────────────────────────────── */
.options-section h2 {
    margin-bottom: 1rem;
}

/* ── Devis ancre ───────────────────────────────────────────── */
#devis {
    scroll-margin-top: 80px;
}

/* ── Tarifs recap note ─────────────────────────────────────── */
.recap-note {
    font-size: 0.8rem;
    margin-top: 10px;
}

.recap-btn-devis {
    display: none;
    margin-top: 15px;
    text-align: center;
}

/* Bouton remonter en haut */
.btn-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--secondaire);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 10px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
}
.btn-top.visible {
    opacity: 1;
    visibility: visible;
}
.btn-top:hover {
    background: #5a6b4e;
}

/* ── Erreurs liste ─────────────────────────────────────────── */
.alert-list {
    margin-top: 0.5rem;
    padding-left: 20px;
    list-style: disc;
}

/* ── Form check spacing ───────────────────────────────────── */
.form-check {
    margin-bottom: 1rem;
}

/* ── Confirmation page ─────────────────────────────────────── */
.confirmation-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.confirmation-btns {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* ── Mentions mise à jour ──────────────────────────────────── */
.mentions-updated {
    font-size: 0.9rem;
}

/* ── Utilitaires ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondaire { color: var(--secondaire); }
.text-muted { color: var(--texte-clair); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }

/* ── Responsive : 600px+ ──────────────────────────────────── */
@media (min-width: 600px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }

    .hero { padding: 80px 0; }
    .hero h1 { font-size: 2.5rem; }

    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }

    .section { padding: 60px 0; }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .zone-list {
        columns: 3;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Responsive : 900px+ ──────────────────────────────────── */
@media (min-width: 900px) {
    .header-top {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .main-nav {
        display: block;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .main-nav ul {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    .main-nav a {
        padding: 8px 15px;
        border-bottom: none;
        border-radius: var(--radius);
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: var(--fond-alt);
    }

    .nav-cta {
        margin-top: 0;
        margin-left: 10px;
    }

    .nav-cta a {
        padding: 8px 20px;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tarifs-layout {
        display: grid;
        grid-template-columns: 1fr 350px;
        grid-template-rows: auto auto;
        gap: 30px;
        align-items: flex-start;
    }

    .tarifs-layout > div:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .recap-aside {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .recap-devis {
        position: sticky;
        top: 80px;
    }

    .devis-form-section {
        grid-column: 1;
        grid-row: 2;
        order: 0;
    }
}

/* ── Responsive : 1200px+ ─────────────────────────────────── */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 100px 0;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section {
        padding: 80px 0;
    }
}

/* ── Contact section ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-card {
    background: var(--fond-alt);
    border-radius: var(--radius);
    padding: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--secondaire);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: var(--texte-clair);
    font-size: 0.95rem;
}

/* ── Prestations page ──────────────────────────────────────── */
.prestation-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .prestation-detail {
        grid-template-columns: 1fr 1fr;
    }

    .prestation-detail.reverse {
        direction: rtl;
    }

    .prestation-detail.reverse > * {
        direction: ltr;
    }
}

.prestation-img {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--fond-alt);
    min-height: 250px;
}

.prestation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestation-content h2 {
    margin-bottom: 0.75rem;
}

.prestation-content p {
    margin-bottom: 1rem;
    color: var(--texte-clair);
}

.prestation-list {
    list-style: none;
    padding: 0;
}

.prestation-list li {
    padding: 6px 0 6px 25px;
    position: relative;
}

.prestation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondaire);
    font-weight: bold;
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
    .site-header,
    .site-footer,
    .hamburger,
    .btn { display: none; }

    body { font-size: 12pt; }
}
