/* ============================================================
   SAINT-ROCH-ÉVÉNEMENTS — style.css
   ============================================================
   Ce fichier contient tout le design visuel du site.

   SOMMAIRE (cherche le titre avec Ctrl+F / Cmd+F) :
   1.  VARIABLES     — couleurs, polices réutilisables
   2.  BASE          — reset, typographie, éléments communs
   3.  NAV           — barre de navigation en haut
   4.  HERO          — section plein écran avec vidéo drone
   5.  EVENT BAND    — bandeau doré "Événements à venir"
   6.  SECTIONS      — fond alterné blanc / beige
   7.  LE LIEU       — photo + texte de présentation
   8.  SALLE         — galerie + équipements
   9.  COUCHAGES     — photos des chambres
   10. TRAITEUR      — cartes des formules
   11. GALERIE       — grille photos + lightbox
   12. TARIFS        — cartes de prix
   13. TÉMOIGNAGES   — avis clients
   14. CONTACT       — formulaire + coordonnées
   15. MAP           — section localisation
   16. FOOTER        — pied de page
   17. RESPONSIVE    — adaptations mobile / tablette
   ============================================================ */


/* ─────────────────────────────────────────
   1. VARIABLES — modifier ici pour changer les couleurs
───────────────────────────────────────── */
:root {
            --sage: #8B9D7A;
            --sage-light: #a5b596;
            --sage-dark: #6d7d5e;
            --gold: #B5935A;
            --gold-light: #c4a568;
            --brown: #5C3D1E;
            --brown-dark: #3d2810;
            --beige: #F5EDD9;
            --beige-dark: #EDE0C4;
            --white: #FAFAF8;
            --text: #3a2e1f;
            --text-light: #6b5a42;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Raleway', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

        /* ── Scroll Reveal — fondu doux à l'entrée dans le viewport ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Délais en cascade pour les grilles de cartes */
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        /* Pas d'animation si l'utilisateur préfère pas de mouvement */
        @media (prefers-reduced-motion: reduce) {
            .reveal { opacity: 1; transform: none; transition: none; }
        }

        /* ── Anti-zoom tactile global ──
           touch-action:manipulation désactive le zoom double-tap sur tous les éléments
           interactifs. Les inputs en 16px minimum empêchent le zoom auto d'iOS
           sur focus. */
        button, a, [onclick], label, summary {
            touch-action: manipulation;
        }
        @media (max-width: 900px) {
            input, textarea, select {
                font-size: 16px !important; /* ≥ 16px = pas de zoom iOS sur focus */
            }
        }
        h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
        .section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--brown); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
        .section-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); font-style: italic; margin-bottom: 1rem; }
        .divider { display: flex; align-items: center; gap: 1rem; margin: 0.5rem 0 2.5rem; color: var(--gold); }
        .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.4; }

        /* ═══════════ NAV ═══════════ */
        #navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(109,125,94,0.96);
            backdrop-filter: blur(10px);
            padding: 0.7rem 0;
            transition: background 0.3s, box-shadow 0.3s;
        }
        #navbar.scrolled { background: rgba(61,40,16,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
        /* logo TOUJOURS collé à gauche — liens TOUJOURS collés à droite */
        .nav-inner {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0 1.5rem;
        }
        .nav-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem; font-weight: 600;
            color: var(--beige); letter-spacing: 0.06em; text-transform: uppercase;
            text-decoration: none;
            display: flex; align-items: center; gap: 0.7rem;
            flex-shrink: 0;       /* ne rétrécit jamais */
            white-space: nowrap;  /* ne passe jamais sur 2 lignes */
        }
        .nav-logo span { display: block; font-size: 0.58rem; font-weight: 300; letter-spacing: 0.12em; color: rgba(245,237,217,0.7); }
        .nav-links {
            display: flex; list-style: none; gap: 0;
            flex-wrap: nowrap;    /* reste toujours sur une ligne */
            margin-left: auto;    /* pousse les liens tout à droite */
        }
        .nav-links a {
            color: var(--beige); font-size: 0.68rem; font-weight: 500;
            letter-spacing: 0.08em; text-transform: uppercase;
            padding: 0.4rem 0.55rem; border-radius: 3px;
            transition: background 0.2s; white-space: nowrap;
        }
        .nav-links a:hover { background: rgba(181,147,90,0.3); }
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
        .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--beige); transition: 0.3s; }

        /* ═══════════ HERO avec VIDEO ═══════════ */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            text-align: center; overflow: hidden;
            padding-top: 90px;
        }
        /* Wrapper de l'image d'accueil, plein écran */
        #hero-yt-wrap {
            position: absolute; inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }
        /* Photo d'accueil : remplit tout l'écran sans se déformer.
           object-position définit le point de l'image qui reste visible
           quand elle est rognée (center = milieu, top = haut de l'image). */
        #hero-photo {
            position: absolute; inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            pointer-events: none;
        }
        #hero::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(30,20,10,0.35) 0%, rgba(30,20,10,0.6) 100%);
            z-index: 1;
        }
        .hero-content { position: relative; z-index: 2; padding: 2rem; }
        /* Pastille du logo.
           Le monogramme SRE est dessiné en brun foncé : il lui faut donc un
           fond CLAIR pour ressortir. Un fond sombre le rendrait invisible.
           Pour ajuster : montez le dernier chiffre de background vers 1
           (fond plus opaque, logo plus lisible) ou vers 0 (plus transparent). */
        .hero-logo-circle {
            width: 140px; height: 140px; border-radius: 50%;
            border: 2px solid rgba(245,237,217,0.75);
            margin: 0 auto 1.5rem;
            background: rgba(245,237,217,0.92);
            box-shadow: 0 4px 24px rgba(30,20,10,0.45);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .hero-logo-circle img { width: 85%; height: 85%; object-fit: contain; }
        .hero-brand { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; color: var(--beige); letter-spacing: 0.15em; text-transform: uppercase; text-shadow: 0 2px 25px rgba(0,0,0,0.4); margin-bottom: 0.3rem; }
        .hero-location { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: rgba(245,237,217,0.8); letter-spacing: 0.3em; margin-bottom: 1.5rem; }
        .hero-ornament { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-bottom: 1.5rem; }
        .hero-ornament::before, .hero-ornament::after { content: ''; display: block; width: 50px; height: 1px; background: rgba(245,237,217,0.5); }
        .hero-slogan { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 3vw, 1.9rem); font-style: italic; color: var(--beige); letter-spacing: 0.1em; margin-bottom: 0.25rem; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }
        .hero-slogan-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(0.9rem, 2vw, 1.3rem); font-weight: 300; color: rgba(245,237,217,0.78); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 3rem; }
        .hero-services { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; align-items: flex-start; }
        .hero-svc {
            display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
            color: var(--beige); text-decoration: none;
            width: 160px;
            padding: 1rem 1rem; border-radius: 8px;
            border: 1px solid rgba(245,237,217,0.15);
            transition: background 0.3s, border-color 0.3s, transform 0.3s;
            cursor: pointer;
        }
        .hero-svc:hover {
            background: rgba(245,237,217,0.12);
            border-color: rgba(245,237,217,0.4);
            transform: translateY(-4px);
        }
        .hero-svc-icon {
            width: 60px; height: 60px;
            border: 1.5px solid rgba(245,237,217,0.45); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
            transition: border-color 0.3s, background 0.3s;
        }
        .hero-svc:hover .hero-svc-icon {
            border-color: var(--gold-light);
            background: rgba(181,147,90,0.2);
        }
        .hero-svc-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; opacity: 0.95; }
        .hero-svc-desc { font-size: 0.65rem; letter-spacing: 0.08em; opacity: 0.65; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.82rem; }
        .hero-sep { width: 1px; height: 55px; background: rgba(245,237,217,0.2); align-self: center; }
        /* « Découvrir » : placé dans le flux normal, sous les trois services.
           Auparavant il était en position absolue collée au bas de l'écran,
           ce qui le faisait chevaucher la carte « Service Traiteur ».
           Pour l'éloigner ou le rapprocher des cartes, jouez sur margin-top. */
        .scroll-hint { position: relative; margin-top: 2.6rem; color: rgba(245,237,217,0.6); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; animation: bounce 2s infinite; z-index: 2; cursor: pointer; text-decoration: none; transition: color 0.2s; }
        .scroll-hint:hover { color: rgba(245,237,217,1); }
        .scroll-hint::after { content: '↓'; font-size: 1.1rem; }
        @keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

        /* ═══════════ EVENT BAND ═══════════ */
        .event-band { background: var(--gold); padding: 1.1rem 0; text-align: center; }
        .event-band p { color: var(--brown-dark); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; }
        .event-band strong { font-style: normal; font-weight: 700; }

        /* ═══════════ SECTIONS ═══════════ */
        section { padding: 5rem 0; }
        #lieu, #couchages, #tarifs { background: var(--white); }
        #salle, #traiteur, #contact { background: var(--beige); }

        /* ═══════════ LE LIEU ═══════════ */
        .lieu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .lieu-text p { color: var(--text-light); margin-bottom: 1.1rem; font-size: 0.93rem; }
        .lieu-address { color: var(--gold) !important; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem !important; }
        .lieu-photo { border-radius: 6px; overflow: hidden; box-shadow: 0 12px 45px rgba(92,61,30,0.2); aspect-ratio: 3/4; }
        .lieu-photo img { width: 100%; height: 100%; object-fit: cover; }

        /* ═══════════ SALLE ═══════════ */
        .cap-banner { background: linear-gradient(135deg, var(--sage), var(--sage-dark)); border-radius: 6px; padding: 2.5rem; text-align: center; color: var(--beige); margin-bottom: 2rem; }
        .cap-banner .num { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 700; line-height: 1; }
        .cap-banner p { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.88; margin-top: 0.4rem; }
        .salle-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 2rem; border-radius: 6px; overflow: hidden; }
        .salle-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; cursor: pointer; touch-action: manipulation; }
        .salle-gallery img:hover { transform: scale(1.04); }
        .equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
        .equip-card { background: var(--white); border-radius: 6px; padding: 2rem; border-top: 3px solid var(--gold); }
        .equip-card h3 { font-size: 1rem; color: var(--brown); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
        .equip-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
        .equip-card ul li { font-size: 0.87rem; color: var(--text-light); padding-left: 1rem; position: relative; }
        .equip-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
        .options-note { background: var(--beige-dark); border-radius: 5px; padding: 1.2rem 1.5rem; border-left: 4px solid var(--gold); }
        .options-note p { font-size: 0.87rem; color: var(--text-light); font-style: italic; }
        .options-note strong { color: var(--brown); font-style: normal; }

        /* ═══════════ COUCHAGES ═══════════ */
        .couch-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
        .couch-photo-wrap { border-radius: 6px; overflow: hidden; box-shadow: 0 4px 20px rgba(92,61,30,0.12); display: flex; flex-direction: column; }
        .couch-photo-wrap img { width: 100%; flex: 1; min-height: 0; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; cursor: pointer; touch-action: manipulation; }
        .couch-photo-wrap img:hover { transform: scale(1.05); }
        .couch-photo-wrap .label { background: var(--sage); color: var(--beige); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; padding: 0.6rem; }
        .couch-total { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 6px; padding: 2rem; text-align: center; color: var(--brown-dark); margin-bottom: 2.5rem; }
        .couch-total .big { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; line-height: 1; }
        .couch-total p { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.4rem; }
        .couch-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text-light); max-width: 720px; margin: 0 auto 2rem; text-align: center; line-height: 1.7; }
        .couch-grid-wrap { position: relative; }
        .couch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .couch-arrow { display: none; position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: var(--white); border: none; border-radius: 50%; width: 2.4rem; height: 2.4rem; font-size: 1.5rem; line-height: 1; color: var(--brown); box-shadow: 0 2px 10px rgba(92,61,30,0.18); cursor: pointer; }
        .couch-arrow-prev { left: -1.2rem; }
        .couch-arrow-next { right: -1.2rem; }
        .couch-detail-title { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 1rem 0 0.4rem; }
        .couch-dim { color: var(--text-light); font-size: 0.85rem; }
        .couch-linge-note { margin-top: 2rem; padding: 1rem 1.4rem; background: rgba(212,160,23,0.1); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; font-size: 0.85rem; color: var(--text); line-height: 1.6; }
        .couch-linge-note strong { color: var(--brown); }
        @media (max-width: 900px) { .couch-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .couch-grid { grid-template-columns: 1fr; } }

        /* ═══════════ TRAITEUR ═══════════ */
        .traiteur-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--text-light); max-width: 680px; margin: 0 auto 3rem; text-align: center; }
        .traiteur-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
        .tr-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 15px rgba(92,61,30,0.07); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
        .tr-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(92,61,30,0.15); }
        .tr-photo { width: 100%; height: 160px; object-fit: cover; }
        .tr-head { padding: 1.1rem 1.4rem 0.8rem; display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--beige-dark); }
        .tr-head h3 { font-size: 1.05rem; color: var(--brown); letter-spacing: 0.04em; }
        .tr-head .price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
        .tr-body { padding: 1rem 1.4rem 1.4rem; }
        .tr-body .desc { font-size: 0.83rem; color: var(--text-light); font-style: italic; margin-bottom: 0.7rem; }
        .tr-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
        .tr-body ul li { font-size: 0.82rem; color: var(--text-light); padding-left: 1rem; position: relative; }
        .tr-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; top: 0.22em; }
        .tr-small-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 1.5rem; }
        .tr-small { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 10px rgba(92,61,30,0.06); }
        .tr-small img { width: 100%; height: 120px; object-fit: cover; }
        .tr-small-body { padding: 1rem 1.2rem 1.2rem; }
        .tr-small-body h4 { font-size: 0.9rem; color: var(--brown); margin-bottom: 0.2rem; }
        .tr-small-body .price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--gold); margin-bottom: 0.3rem; }
        .tr-small-body p { font-size: 0.82rem; color: var(--text-light); font-style: italic; }
        .tr-note { background: var(--sage); border-radius: 6px; padding: 1.4rem 2rem; text-align: center; color: var(--beige); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; }

        /* ═══════════ GALERIE ═══════════ */
        #galerie { background: var(--brown-dark); padding: 5rem 0; }
        #galerie .section-title { color: var(--beige); }
        #galerie .section-subtitle { color: var(--gold-light); }
        #galerie .divider { color: var(--gold); }
        #galerie .divider::before, #galerie .divider::after { background: var(--gold); }
        .galerie-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px;
            gap: 0.5rem;
        }
        .galerie-item { overflow: hidden; border-radius: 4px; cursor: pointer; touch-action: manipulation; }
        .galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .galerie-item:hover img { transform: scale(1.08); }
        .galerie-item.wide { grid-column: span 2; }
        .galerie-item.tall { grid-row: span 2; }

        /* Lightbox */
        /* ── Lightbox redesign ── */
        #lightbox {
            display: none; position: fixed; inset: 0; z-index: 2000;
            background: rgba(15,10,5,0.93);
            backdrop-filter: blur(6px);
            align-items: center; justify-content: center;
            padding: 1rem;
            animation: lbFadeIn 0.2s ease;
        }
        #lightbox.open { display: flex; }
        @keyframes lbFadeIn { from { opacity:0 } to { opacity:1 } }

        /* Carte centrale photo + légende */
        #lightbox-box {
            display: flex; flex-direction: column;
            align-items: center;
            max-width: min(88vw, 900px);
            background: #1a1208;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.7);
            animation: lbSlideIn 0.25s cubic-bezier(0.22,1,0.36,1);
        }
        @keyframes lbSlideIn { from { transform: scale(0.93); opacity:0 } to { transform: scale(1); opacity:1 } }

        #lightbox-img {
            max-width: 100%; max-height: 72vh;
            object-fit: contain; display: block;
        }

        /* Barre de légende en bas */
        #lightbox-footer {
            width: 100%;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.85rem 1.3rem;
            background: rgba(245,237,217,0.05);
            border-top: 1px solid rgba(245,237,217,0.1);
            gap: 1rem;
        }
        #lightbox-caption {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic; font-size: 1rem;
            color: rgba(245,237,217,0.85);
            flex: 1;
        }
        #lightbox-counter {
            font-size: 0.72rem; letter-spacing: 0.15em;
            color: rgba(245,237,217,0.4);
            white-space: nowrap;
        }

        /* Bouton fermeture */
        #lightbox-close {
            position: absolute; top: 1rem; right: 1rem;
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(245,237,217,0.12);
            border: 1px solid rgba(245,237,217,0.2);
            color: rgba(245,237,217,0.85); font-size: 1rem;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: background 0.2s; z-index: 10;
        }
        #lightbox-close:hover { background: rgba(245,237,217,0.25); }

        /* Flèches navigation */
        #lightbox-prev, #lightbox-next {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 48px; height: 48px; border-radius: 50%;
            background: rgba(245,237,217,0.1);
            border: 1px solid rgba(245,237,217,0.2);
            color: white; font-size: 1.8rem; line-height: 1;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: background 0.2s; z-index: 10;
        }
        #lightbox-prev { left: 0.8rem; }
        #lightbox-next { right: 0.8rem; }
        #lightbox-prev:hover, #lightbox-next:hover { background: rgba(245,237,217,0.25); }
        @media (max-width: 600px) {
            #lightbox-prev { left: 0.2rem; }
            #lightbox-next { right: 0.2rem; }
            #lightbox-footer { padding: 0.65rem 0.9rem; }
            #lightbox-caption { font-size: 0.88rem; }
        }

        /* ═══════════ TARIFS ═══════════ */
        .tarif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
        .tarif-card { background: var(--beige); border-radius: 8px; padding: 2.5rem 2rem; text-align: center; border-top: 4px solid var(--sage); transition: transform 0.3s; }
        .tarif-card.star { background: var(--sage); border-top-color: var(--gold); }
        .tarif-card:hover { transform: translateY(-5px); }
        .tarif-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--brown); margin-bottom: 0.4rem; }
        .tarif-card.star h3 { color: var(--beige); }
        .tarif-price { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--brown); line-height: 1; margin: 0.8rem 0 0.2rem; }
        .tarif-card.star .tarif-price { color: var(--beige); }
        .tarif-price span { font-size: 1.1rem; font-weight: 300; }
        .tagline { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.4rem; }
        .tarif-card.star .tagline { color: var(--beige-dark); }
        .tarif-btn { margin-top: auto; font-size: 0.8rem; color: var(--sage-dark); letter-spacing: 0.08em; padding-top: 1rem; border-top: 1px solid rgba(107,127,89,0.2); }
        .tarif-card.star .tarif-btn { color: var(--beige-dark); border-top-color: rgba(245,237,217,0.2); }
        .tarif-card { display: flex; flex-direction: column; }
        .tarif-details { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.45rem; }
        .tarif-details li { font-size: 0.85rem; color: var(--text-light); padding-left: 1.3rem; position: relative; }
        .tarif-card.star .tarif-details li { color: rgba(245,237,217,0.85); }
        .tarif-details li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-size: 0.8rem; }
        .tarif-card.star .tarif-details li::before { color: var(--beige-dark); }
        .tarif-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .tib { background: var(--beige); border-radius: 6px; padding: 1.5rem; border-left: 3px solid var(--gold); }
        .tib h4 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.7rem; }
        .tib p, .tib li { font-size: 0.85rem; color: var(--text-light); }
        .tib ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
        .tib ul li::before { content: '• '; color: var(--gold); }

        /* ═══════════ TÉMOIGNAGES ═══════════ */
        #temoignages { background: linear-gradient(135deg, var(--sage-dark), var(--sage)) !important; }
        #temoignages .section-title { color: var(--beige); }
        #temoignages .section-subtitle { color: rgba(245,237,217,0.8); }
        #temoignages .divider { color: rgba(245,237,217,0.4); }
        #temoignages .divider::before, #temoignages .divider::after { background: rgba(245,237,217,0.3); }
        /* ── Témoignages : slider 1 carte à la fois ── */
        .temo-grid { display: block; max-width: 660px; margin: 0 auto; }
        .temo-card {
            display: none;
            background: rgba(245,237,217,0.13); border-radius: 6px; padding: 2rem;
            border: 1px solid rgba(245,237,217,0.18);
            animation: temoIn 0.35s ease;
        }
        .temo-card.temo-active { display: block; }
        .temo-card.temo-from-left { animation: temoInLeft 0.35s ease; }
        @keyframes temoIn     { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
        @keyframes temoInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
        .temo-card .stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 0.8rem; }
        .temo-card .quote { font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; font-style: italic; color: var(--beige); line-height: 1.65; margin-bottom: 1.2rem; }
        .temo-card .author { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,237,217,0.65); }
        /* Navigation slider */
        .temo-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.8rem; }
        .temo-nav-btn {
            width: 42px; height: 42px; border-radius: 50%;
            background: rgba(245,237,217,0.15); border: 1px solid rgba(245,237,217,0.35);
            color: rgba(245,237,217,0.9); font-size: 1.6rem; line-height: 1; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s; touch-action: manipulation;
        }
        .temo-nav-btn:hover { background: rgba(245,237,217,0.3); }
        .temo-dots { display: flex; gap: 7px; align-items: center; }
        .temo-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: rgba(245,237,217,0.35); cursor: pointer;
            transition: background 0.2s, transform 0.2s; touch-action: manipulation;
        }
        .temo-dot.active { background: var(--gold-light); transform: scale(1.3); }
        .temo-cta { text-align: center; margin-top: 2.5rem; }
        .temo-cta p { color: rgba(245,237,217,0.75); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; margin-bottom: 1rem; }

        /* ═══════════ DISPONIBILITÉS ═══════════ */
        #disponibilites { background: var(--white); }
        .dispo-wrap { max-width: 860px; margin: 0 auto; }
        .dispo-nav { display: flex; align-items: flex-start; gap: 1rem; }
        .dispo-btn-nav {
            background: none; border: 1px solid var(--sage);
            color: var(--sage-dark); border-radius: 4px;
            width: 36px; height: 36px; font-size: 1.3rem; cursor: pointer;
            flex-shrink: 0; margin-top: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .dispo-btn-nav:hover { background: var(--sage); color: var(--beige); }
        .dispo-months { display: flex; gap: 1.5rem; flex: 1; justify-content: center; flex-wrap: wrap; }
        .dispo-month { flex: 1; min-width: 220px; max-width: 260px; }
        .dispo-month-title {
            text-align: center; font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem; font-weight: 600; color: var(--brown);
            text-transform: capitalize; margin-bottom: 0.6rem; letter-spacing: 0.05em;
        }
        .dispo-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
        .dispo-dow {
            text-align: center; font-size: 0.65rem; font-weight: 700;
            color: var(--text-light); text-transform: uppercase;
            padding: 4px 0; letter-spacing: 0.05em;
        }
        .dispo-day {
            aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
            font-size: 0.78rem; border-radius: 4px; cursor: default; color: var(--text);
        }
        .dispo-day.empty { background: none; }
        .dispo-day.today { font-weight: 700; outline: 2px solid var(--sage); outline-offset: -2px; }
        .dispo-day.past { color: #ccc; }
        .dispo-day.free { background: rgba(107,127,89,0.12); color: var(--sage-dark); }
        .dispo-day.option { background: rgba(160,60,40,0.18); color: #8c2a1a; font-weight: 600; }
        .dispo-day.taken { background: rgba(160,60,40,0.18); color: #8c2a1a; font-weight: 600; }
        .dispo-day.gite  { background: rgba(58,123,213,0.12) !important; color: #3a7bd5 !important; font-weight: 600; outline: 2px solid #3a7bd5; outline-offset: -2px; }
        .dispo-legend { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.2rem; flex-wrap: wrap; }
        .leg-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-light); }
        .leg-dot { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
        .leg-free   { background: rgba(107,127,89,0.25); }
        .leg-taken  { background: rgba(160,60,40,0.25); }
        .leg-gite   { background: rgba(58,123,213,0.15); border: 2px solid #3a7bd5; }
        .dispo-note { text-align: center; margin-top: 1.8rem; font-size: 0.88rem; color: var(--text-light); }
        .dispo-note a { color: var(--sage-dark); }

        /* ═══════════ CONTACT ═══════════ */
        .contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
        .contact-info h3 { font-size: 1.45rem; color: var(--brown); margin-bottom: 1.5rem; }
        .citem { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
        .cicon { width: 38px; height: 38px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; color: var(--beige); }
        .ctext .label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
        .ctext .value { font-size: 0.93rem; color: var(--brown); font-weight: 500; }
        .ctext .value a:hover { color: var(--gold); }
        .social-links { display: flex; gap: 0.8rem; margin-top: 1.8rem; flex-wrap: wrap; }
        .social-link { display: flex; align-items: center; gap: 0.5rem; background: var(--sage); color: var(--beige); padding: 0.55rem 1rem; border-radius: 4px; font-size: 0.77rem; letter-spacing: 0.05em; transition: background 0.2s; }
        .social-link:hover { background: var(--sage-dark); }
        .contact-form { background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(92,61,30,0.09); }
        .contact-form h3 { font-size: 1.45rem; color: var(--brown); margin-bottom: 0.4rem; }
        .contact-form .form-desc { font-size: 0.84rem; color: var(--text-light); margin-bottom: 1.5rem; }
        .form-group { margin-bottom: 1.1rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.35rem; font-weight: 600; }
        input, textarea, select { width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--beige-dark); border-radius: 4px; font-family: 'Raleway', sans-serif; font-size: 0.88rem; color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none; }
        input:focus, textarea:focus, select:focus { border-color: var(--sage); }
        textarea { height: 95px; resize: vertical; }
        .btn { display: inline-block; padding: 0.85rem 2.5rem; border-radius: 4px; font-family: 'Raleway', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border: none; }
        .btn-primary { background: var(--sage); color: var(--beige); }
        .btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(109,125,94,0.35); }
        .btn-outline { background: transparent; border: 1.5px solid var(--beige); color: var(--beige); }
        .btn-outline:hover { background: rgba(245,237,217,0.15); }

        /* ═══════════ MAP ═══════════ */
        .map-wrap { background: var(--sage-dark); padding: 3rem 0; text-align: center; }
        .map-wrap p { color: rgba(245,237,217,0.8); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 0.8rem; }
        .map-wrap a { color: var(--beige); font-size: 0.85rem; letter-spacing: 0.1em; text-decoration: underline; }

        /* ═══════════ FOOTER ═══════════ */
        footer { background: var(--brown-dark); padding: 3rem 0 1.5rem; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
        .footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--beige); margin-bottom: 0.25rem; }
        .footer-brand .sub { font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(245,237,217,0.5); margin-bottom: 0.9rem; }
        .footer-brand p { font-size: 0.86rem; color: rgba(245,237,217,0.65); line-height: 1.7; }
        .footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
        .footer-col ul li a { font-size: 0.84rem; color: rgba(245,237,217,0.6); transition: color 0.2s; }
        .footer-col ul li a:hover { color: var(--gold); }
        .footer-col p { font-size: 0.84rem; color: rgba(245,237,217,0.6); margin-bottom: 0.4rem; }
        .footer-bottom { border-top: 1px solid rgba(245,237,217,0.08); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
        .footer-bottom p { font-size: 0.76rem; color: rgba(245,237,217,0.35); }

        /* ═══════════ RESPONSIVE ═══════════ */
        @media (max-width: 900px) {
            .lieu-grid, .contact-layout, .tarif-info-grid { grid-template-columns: 1fr; }
            .equip-grid { grid-template-columns: 1fr; }
            .couch-photos { grid-template-columns: 1fr 1fr; }
            .traiteur-grid { grid-template-columns: 1fr 1fr; }
            .tr-small-grid { grid-template-columns: 1fr 1fr; }
            .tarif-grid { grid-template-columns: 1fr; }
            /* .temo-grid — slider, pas besoin de responsive grille */
            .galerie-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .salle-gallery { grid-template-columns: 1fr 1fr; }
        }

        /* ── Boutons navigation carrousels ── */
        .carousel-wrap {
            position: relative;
        }
        /* Caché par défaut sur desktop */
        .carousel-nav {
            display: none;
        }
        @media (max-width: 700px) {
            /* Espace vertical identique à l'ancien padding haut/bas des grilles */
            .carousel-wrap {
                margin-top: 0.25rem;
                margin-bottom: 1rem;
            }
            .carousel-nav {
                display: flex;
                align-items: center; justify-content: center;
                position: absolute; top: 0; bottom: 0; margin: auto 0;
                width: 36px; height: 36px; border-radius: 50%;
                background: rgba(61,40,16,0.72);
                border: 1px solid rgba(245,237,217,0.3);
                color: #fff; font-size: 1.5rem; line-height: 1;
                cursor: pointer; z-index: 5;
                transition: background 0.2s;
                pointer-events: auto;
                touch-action: manipulation;
            }
            .carousel-nav:hover { background: rgba(61,40,16,0.92); }
            /* 9% = juste au-delà du peek (7.5%) des cartes à 85% */
            .carousel-prev { left: 9%; }
            .carousel-next { right: 9%; }
        }

        /* ── Indication de défilement (carrousels mobile) ── */
        .swipe-hint {
            display: none;
            text-align: center;
            font-size: 0.72rem;
            color: var(--gold);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
            opacity: 0.75;
        }

        @media (max-width: 700px) {
            .swipe-hint { display: block; }

            /* ── CARROUSEL traiteur (cartes principales) ── */
            /* vw garantit que card + padding = 100vw, centrage parfait */
            .traiteur-grid {
                display: flex !important;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-padding-inline-start: 9vw;
                scroll-behavior: smooth;
                overscroll-behavior-x: none;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 1rem;
                padding: 0 9vw;
                margin: 0 -2rem 1.2rem;
            }
            .traiteur-grid::-webkit-scrollbar { display: none; }
            .traiteur-grid .tr-card {
                flex: 0 0 82vw;
                scroll-snap-align: start;
                scroll-snap-stop: always;
            }

            /* ── CARROUSEL traiteur (petites cartes) ── */
            .tr-small-grid {
                display: flex !important;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-padding-inline-start: 14vw;
                scroll-behavior: smooth;
                overscroll-behavior-x: none;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 1rem;
                padding: 0 14vw;
                margin: 0 -2rem 1.2rem;
            }
            .tr-small-grid::-webkit-scrollbar { display: none; }
            .tr-small-grid .tr-small {
                flex: 0 0 72vw;
                scroll-snap-align: start;
                scroll-snap-stop: always;
            }

            /* ── CARROUSEL tarifs ── */
            .tarif-grid {
                display: flex !important;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-padding-inline-start: 7.5vw;
                scroll-behavior: smooth;
                overscroll-behavior-x: none;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 1rem;
                padding: 0 7.5vw;
                margin: 0 -2rem 1.2rem;
            }
            .tarif-grid::-webkit-scrollbar { display: none; }
            .tarif-grid .tarif-card {
                flex: 0 0 85vw;
                scroll-snap-align: start;
                scroll-snap-stop: always;
            }

            /* Afficher le hint "Appuyez pour détails" en permanence sur mobile */
            .tr-hint { opacity: 0.9 !important; }
            /* Désactiver le hover transform sur mobile (utilise :active à la place) */
            .tr-clickable:hover { transform: none; box-shadow: none; }
            .tr-clickable:active { transform: scale(0.98); opacity: 0.9; }
        }

        @media (max-width: 500px) {
            /* Couchages : 1 colonne pour éviter la case vide à côté de la 3e photo */
            .couch-photos { grid-template-columns: 1fr; }
        }

        @media (max-width: 600px) {

            /* ── NAVBAR ── */
            .nav-links {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; right: 0; left: auto;
                width: 220px; background: rgba(61,40,16,0.97);
                padding: 1rem; border-radius: 0 0 0 8px;
                box-shadow: -4px 4px 20px rgba(0,0,0,0.3);
                /* Animation ouverture */
                opacity: 0; transform: translateY(-10px);
                pointer-events: none;
                transition: opacity 0.22s ease, transform 0.22s ease;
            }
            .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
            .nav-toggle { display: flex; margin-left: auto; }
            .nav-logo { font-size: 0.72rem; gap: 0.45rem; }
            .nav-logo img { width: 26px !important; height: 26px !important; }
            .nav-logo span { display: none; }

            /* ── HERO ── */
            .hero-logo-circle { width: 90px; height: 90px; margin-bottom: 1rem; }
            .hero-brand { font-size: clamp(1.5rem, 7.5vw, 2rem); letter-spacing: 0.04em; }
            .hero-location { font-size: clamp(0.7rem, 3vw, 0.95rem); letter-spacing: 0.12em; margin-bottom: 1rem; }
            .hero-ornament { margin-bottom: 0.8rem; }
            .hero-slogan { font-size: 1.35rem; }
            .hero-slogan-sub { font-size: 0.95rem; margin-bottom: 1.8rem; }
            .hero-services { flex-wrap: nowrap; gap: 0.6rem; justify-content: center; width: 100%; padding: 0 0.8rem; }
            .hero-sep { display: none; }
            .hero-svc { width: auto; padding: 1rem 0.5rem; flex: 1; border: 1px solid rgba(245,237,217,0.25); border-radius: 8px; background: rgba(245,237,217,0.06); }
            .hero-svc-icon { width: 50px; height: 50px; font-size: 1.3rem; }
            .hero-svc-label { font-size: 0.72rem; }
            .hero-svc-desc { font-size: 0.7rem; }

            /* ── YouTube ── */
            #hero-photo { width: 100%; height: 100%; object-fit: cover; }

            /* ── SECTIONS ── */
            .couch-photos { grid-template-columns: 1fr 1fr; }
            /* ── COUCHAGES : 1 colonne sur petit mobile (évite la case vide) ── */
            .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
            .galerie-item.wide { grid-column: span 1; }
            .form-row { grid-template-columns: 1fr; }
            .salle-gallery { grid-template-columns: 1fr; }

            /* ── LIGHTBOX mobile ── */
            #lightbox-prev, #lightbox-next { width: 40px; height: 40px; font-size: 1.4rem; }
            #lightbox-prev { left: 0.3rem; }
            #lightbox-next { right: 0.3rem; }
            #lightbox-box { max-width: 100vw; border-radius: 0; }
            #lightbox-img { max-height: 65vh; }

            /* ── MODALES mobile : carte centrée, tout visible sans scroll ── */
            .tr-modal { padding: 1rem 0.8rem; align-items: flex-start; }
            /* Pas de max-height ici : c'est le fond (.tr-modal) qui défile.
               Une hauteur maximale sur cette fenêtre coupait le bas du
               contenu — le bouton « Nous contacter » devenait inatteignable
               sur téléphone dès que la liste des entrées s'allongeait. */
            .tr-modal-inner {
                max-width: 94%;
                border-radius: 14px;
            }
            /* Photo réduite en bandeau */
            .tr-modal-photo { height: 90px !important; object-position: center 35%; }
            /* Description cachée sur mobile (visible sur la carte) */
            .tr-modal-desc { display: none !important; }
            .tr-modal-content { padding: 0.75rem 0.9rem 1rem !important; }
            .tr-modal-header { margin-bottom: 0.4rem; flex-wrap: nowrap; }
            .tr-modal-header h2 { font-size: 1.05rem !important; }
            .tr-modal-price { font-size: 0.9rem !important; }
            .tr-modal-list { margin-bottom: 0.4rem; }
            .tr-modal-list li { font-size: 0.78rem; padding: 0.1rem 0 0.1rem 0.9rem; }
            .tr-modal-note { font-size: 0.72rem; padding: 0.5rem 0.7rem; margin: 0.5rem 0; }
            .tr-modal-cta { padding: 0.6rem 1rem !important; font-size: 0.74rem !important; margin-top: 0.5rem; }
            /* Modales tarif */
            .tarif-modal-box {
                max-width: 94%;
                border-radius: 14px;
            }

            /* ── FOOTER ── */
            .footer-bottom { flex-direction: column; text-align: center; }

            /* ── DISPONIBILITÉS mobile ── */
            .dispo-months { gap: 1rem; }
            .dispo-nav { gap: 0.5rem; }
            .dispo-btn-nav { width: 36px; height: 36px; font-size: 1.2rem; }
        }

        /* ═══════════ MODALES TRAITEUR ═══════════ */
        .tr-clickable { cursor: pointer; }
        .tr-clickable:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(92,61,30,0.18); }
        .tr-clickable:hover .tr-hint { opacity: 1; }
        .tr-hint {
            position: absolute; top: 12px; right: 12px;
            background: rgba(61,40,16,0.78); color: var(--beige);
            font-size: 0.67rem; letter-spacing: 0.08em; text-transform: uppercase;
            padding: 0.3rem 0.65rem; border-radius: 20px;
            opacity: 0; transition: opacity 0.25s;
            pointer-events: none;
        }

        /* Overlay sombre */
        /* ─────────────────────────────────────────────────────────────
           DÉFILEMENT DES MODALES — ne pas modifier sans lire ceci
           ─────────────────────────────────────────────────────────────
           « align-items: center » centrait la fenêtre verticalement.
           Tant que le contenu était court, tout allait bien. Mais dès
           qu'il devient plus haut que l'écran, le centrage repousse le
           HAUT de la fenêtre au-dessus de la zone visible — et cette
           partie devient définitivement inaccessible : on ne peut pas
           défiler « vers le négatif ». C'est ce qui faisait disparaître
           la photo du Buffet Champêtre au fur et à mesure que vous
           ajoutiez du texte.

           La solution : « flex-start » (la fenêtre part du haut) plus
           « margin: auto » sur la fenêtre elle-même. Le navigateur la
           centre quand elle tient à l'écran, et la laisse défiler
           normalement quand elle est trop grande. Rien n'est jamais
           coupé, quelle que soit la longueur de vos textes.
           ───────────────────────────────────────────────────────────── */
        .tr-modal {
            display: none;
            position: fixed; inset: 0;
            background: rgba(30,20,10,0.72);
            backdrop-filter: blur(4px);
            z-index: 9000;
            align-items: flex-start; justify-content: center;
            padding: 1.5rem;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch; /* défilement fluide sur iPhone */
        }
        .tr-modal.open { display: flex; }

        /* ── Flèches navigation entre modales ── */
        .modal-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px; height: 48px;
            border-radius: 50%;
            background: rgba(245,237,217,0.15);
            border: 1px solid rgba(245,237,217,0.35);
            color: #fff;
            font-size: 2rem; line-height: 1;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s, opacity 0.2s;
            z-index: 10;
            pointer-events: auto;
        }
        .modal-nav-btn:hover { background: rgba(245,237,217,0.3); }
        .modal-nav-prev { left: 0.8rem; }
        .modal-nav-next { right: 0.8rem; }
        @media (max-width: 600px) {
            .modal-nav-prev { left: 0.2rem; }
            .modal-nav-next { right: 0.2rem; }
            .modal-nav-btn {
                width: 38px; height: 38px; font-size: 1.6rem;
                color: var(--brown);
                background: rgba(255,255,255,0.92);
                border: 1px solid rgba(92,61,30,0.18);
                box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            }
        }

        /* ── Points de navigation (dots) ── */
        .modal-dots {
            display: flex; justify-content: center; gap: 6px;
            padding: 0.9rem 0 0.2rem;
        }
        .modal-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--beige-dark);
            transition: background 0.2s, transform 0.2s;
        }
        .modal-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        /* Boîte modale */
        .tr-modal-inner {
            position: relative;
            background: var(--white);
            border-radius: 10px;
            max-width: 820px;
            width: 100%;
            margin: auto;      /* centre si ça tient, ne coupe jamais sinon */
            overflow: hidden;  /* arrondit les coins de la photo */
            box-shadow: 0 24px 70px rgba(30,20,10,0.45);
            animation: modalIn 0.28s cubic-bezier(0.22,1,0.36,1);
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.94) translateY(18px); }
            to   { opacity: 1; transform: scale(1)    translateY(0); }
        }

        /* Photo en haut */
        .tr-modal-photo {
            width: 100%; height: 300px;
            object-fit: cover; display: block;
        }

        /* Contenu texte */
        .tr-modal-content {
            padding: 2rem 2.2rem 2.4rem;
        }
        .tr-modal-header {
            display: flex; align-items: baseline;
            justify-content: space-between; gap: 1rem;
            margin-bottom: 0.9rem;
            flex-wrap: wrap;
        }
        .tr-modal-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem; font-weight: 700;
            color: var(--brown); letter-spacing: 0.04em;
            margin: 0;
        }
        .tr-modal-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.55rem; font-weight: 700;
            color: var(--gold); white-space: nowrap;
        }
        .tr-modal-desc {
            font-size: 0.95rem; color: var(--text-light);
            line-height: 1.7; margin-bottom: 1.3rem;
        }
        .tr-modal-list {
            list-style: none; display: flex;
            flex-direction: column; gap: 0.55rem;
            margin-bottom: 1.4rem;
        }
        /* ─────────────────────────────────────────────────────────────
           white-space: pre-line
           ─────────────────────────────────────────────────────────────
           Par défaut, un navigateur IGNORE les retours à la ligne tapés
           dans le code HTML : tout s'affiche à la suite, en un seul bloc.

           « pre-line » lui dit : « respecte les retours à la ligne du
           code, mais continue d'ignorer les espaces d'indentation ».

           Concrètement, dans index.html vous pouvez écrire :

               <li>4 entrées au choix parmi 6 :
               - Taboulé Normand…
               - La Ferme et le Potager…
               </li>

           …et chaque tiret s'affichera sur sa propre ligne sur le site,
           sans avoir à ajouter la moindre balise. Cela fonctionne dans
           toutes les modales des formules, pas seulement le Buffet
           Champêtre : il suffit d'écrire vos listes de la même façon.
           ───────────────────────────────────────────────────────────── */
        .tr-modal-list li {
            font-size: 0.88rem; color: var(--text);
            padding-left: 1.4rem; position: relative;
            line-height: 1.55;
            white-space: pre-line;
        }
        .tr-modal-list li::before {
            content: '✦'; position: absolute; left: 0;
            color: var(--sage); font-size: 0.65rem; top: 0.22em;
        }
        .tr-modal-note {
            background: var(--beige); border-left: 3px solid var(--gold);
            padding: 0.75rem 1rem; border-radius: 4px;
            font-size: 0.84rem; color: var(--brown);
            margin-bottom: 1.6rem; line-height: 1.5;
        }
        .tr-modal-cta {
            display: inline-block;
        }

        /* Bouton fermeture */
        .tr-modal-close {
            position: fixed; top: 1rem; right: 1rem;
            width: 42px; height: 42px; border-radius: 50%;
            background: rgba(30,20,10,0.65); color: #fff;
            border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
            font-size: 1.1rem; display: flex;
            align-items: center; justify-content: center;
            transition: background 0.2s; z-index: 9500;
        }
        .tr-modal-close:hover { background: rgba(30,20,10,0.92); }

        /* ── MODALES TARIFS ── */
        .tarif-modal-box {
            background: var(--white); border-radius: 4px;
            max-width: 480px; width: 100%;
            margin: auto;      /* même principe que .tr-modal-inner */
            position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            border-top: 4px solid var(--gold);
        }
        .tarif-modal-box.tarif-modal-star { border-top-color: var(--brown); }
        .tarif-modal-badge {
            background: var(--brown); color: var(--beige);
            font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
            text-align: center; padding: 0.45rem 1rem; font-weight: 600;
        }
        .tarif-modal-inner { padding: 2.2rem 2.5rem 2rem; text-align: center; }
        .tarif-modal-ornament { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.3em; }
        .tarif-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--brown); letter-spacing: 0.05em; margin-bottom: 0.3rem; }
        .tarif-modal-sub { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
        .tarif-modal-price-block { margin-bottom: 1.4rem; }
        .tarif-modal-amount { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; color: var(--brown); line-height: 1; }
        .tarif-modal-euro { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold); }
        .tarif-modal-divider { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 1.4rem; opacity: 0.6; }
        .tarif-modal-desc { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.4rem; }
        .tarif-modal-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
        .tarif-modal-list li { font-size: 0.85rem; color: var(--text); padding-left: 1.4rem; position: relative; }
        .tarif-modal-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }
        .tarif-modal-note { font-size: 0.75rem; color: var(--text-light); background: var(--beige); border-radius: 3px; padding: 0.6rem 0.9rem; margin-bottom: 1.5rem; text-align: center; }
        .tarif-modal-cta {
            display: block; width: 100%; padding: 0.9rem;
            background: var(--brown); color: var(--beige);
            text-align: center; border-radius: 3px;
            font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase;
            font-weight: 500; transition: background 0.2s; text-decoration: none;
        }
        .tarif-modal-cta:hover { background: var(--brown-dark); }

        /* Responsive modale — voir les règles mobiles centralisées plus haut */

        /* ══════════════════════════════════════════
           BOUTON INVENTAIRE & MODALE INVENTAIRE
        ══════════════════════════════════════════ */
        .btn-inventaire { background: var(--brown); color: var(--beige); }
        .btn-inventaire:hover { background: var(--brown-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(92,61,30,0.35); }
        .inv-btn-wrap { text-align: center; margin-top: 1.8rem; }

        .inv-modal-inner {
            background: var(--white);
            border-radius: 8px;
            max-width: 680px;
            width: 95%;
            margin: auto;      /* même principe que .tr-modal-inner */
            position: relative;
            animation: modalIn 0.28s cubic-bezier(0.22,1,0.36,1);
        }
        .inv-modal-header {
            background: linear-gradient(135deg, var(--brown), var(--brown-dark));
            color: var(--beige);
            padding: 1.8rem 2rem 1.5rem;
            border-radius: 8px 8px 0 0;
            text-align: center;
        }
        .inv-modal-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            margin-bottom: 0.25rem;
        }
        .inv-modal-header p {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--gold-light);
            font-size: 0.95rem;
        }
        .inv-modal-body { padding: 1.8rem 2rem 2rem; }
        .inv-categories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.1rem;
            margin-bottom: 1.4rem;
        }
        .inv-cat {
            background: var(--beige);
            border-radius: 6px;
            padding: 1.2rem;
            border-top: 3px solid var(--gold);
        }
        .inv-cat h3 { font-size: 0.82rem; color: var(--brown); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
        .inv-cat ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.3rem; }
        .inv-cat ul li { font-size: 0.82rem; color: var(--text); padding-left: 1rem; position: relative; line-height: 1.45; }
        .inv-cat ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; top: 0.22em; }
        .inv-options-note { background: var(--beige-dark); border-radius: 5px; padding: 1rem 1.2rem; border-left: 4px solid var(--gold); font-size: 0.83rem; color: var(--text); }
        .inv-options-note strong { color: var(--brown); }

        @media (max-width: 700px) {
            .inv-categories { grid-template-columns: 1fr; }
            .inv-modal-header { padding: 1.3rem 1.2rem 1rem; }
            .inv-modal-header h2 { font-size: 1.5rem; }
            .inv-modal-body { padding: 1.1rem 1rem 1.4rem; }
        }