/* =========================================================
   ABYSSIA — Feuille de style générale
   Charte : #000000 · #bcbcbc · #553720 — secondaires #ffffff · #d01313
   Polices : Abhaya Libre (titres) · GFS Didot (cartels) · Arapey (texte)
   Principe : nuit chaude, éclairée par des sources chaudes.
              Les textes longs reposent sur des panneaux « parchemin »
              pour rester confortables à lire.
   ========================================================= */

/* ---------- 1. Jetons ---------- */
:root {
    /* Nuit */
    --noir:      #000000;
    --nuit:      #0b0908;
    --nuit-2:    #121010;
    --nuit-3:    #1b1715;
    --nuit-4:    #241f1b;

    /* Bois / brun charte */
    --brun:      #553720;
    --brun-rgb:  85, 55, 32;
    --brun-f:    #2c1c10;
    --brun-c:    #7d5330;
    --laiton:    #a8814a;
    --laiton-c:  #d3ad72;

    /* Os / argent charte */
    --os:        #bcbcbc;
    --os-rgb:    188, 188, 188;
    --os-c:      #e4e0d9;
    --os-f:      #8d8a85;
    --blanc:     #ffffff;

    /* Rouge charte */
    --rouge:     #d01313;
    --rouge-rgb: 208, 19, 19;
    --rouge-c:   #ea2a2a;
    --rouge-f:   #7d0c0c;

    /* Parchemin (lisibilité des textes longs) */
    --parche:    #e9e2d3;
    --parche-2:  #dcd3c0;
    --encre:     #1d1710;
    --encre-2:   #4a3d2d;

    /* Ambiance de salle — surchargée par [data-salle] */
    --ambiance:      var(--rouge);
    --ambiance-rgb:  var(--rouge-rgb);
    --halo:          rgba(var(--rouge-rgb), .16);
    --mur:           #14100e;
    --mur-2:         #1d1815;

    /* Typographie */
    --f-titre:  'Abhaya Libre', 'Times New Roman', serif;
    --f-cartel: 'GFS Didot', Georgia, serif;
    --f-texte:  'Arapey', Georgia, serif;

    /* Mesures */
    --large:    1180px;
    --texte:    680px;
    --entete:   72px;
    --r:        2px;
    --r-l:      4px;
}

/* ---------- 2. Ambiances par salle ---------- */
body[data-salle="anomalie"] {
    --ambiance: #6e93a8;              /* bleu lampe torche, nuit froide */
    --ambiance-rgb: 110, 147, 168;
    --mur: #0e1316; --mur-2: #161e23;
    --halo: rgba(110, 147, 168, .14);
}
body[data-salle="action"] {
    --ambiance: #c98a2e;              /* laiton, projecteurs, mouvement */
    --ambiance-rgb: 201, 138, 46;
    --mur: #16100a; --mur-2: #211810;
    --halo: rgba(201, 138, 46, .15);
}
body[data-salle="murder"] {
    --ambiance: #d01313;              /* rouge charte, sang, inauguration */
    --ambiance-rgb: 208, 19, 19;
    --mur: #150b0a; --mur-2: #1f100e;
    --halo: rgba(208, 19, 19, .16);
}
body[data-salle="bar"] {
    --ambiance: #a8814a;              /* bois, comptoir, lumière chaude */
    --ambiance-rgb: 168, 129, 74;
    --mur: #150f09; --mur-2: #20170e;
    --halo: rgba(168, 129, 74, .17);
}

/* ---------- 3. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--entete) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--f-texte);
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--os-c);
    background: var(--nuit);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--ambiance); }

h1, h2, h3 {
    font-family: var(--f-titre);
    font-weight: 700;
    line-height: 1.12;
    color: var(--os-c);
    margin: 0 0 .5em;
}
h4, h5 { font-family: var(--f-cartel); margin: 0 0 .5em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--rouge); color: var(--blanc); }

:focus-visible {
    outline: 2px solid var(--laiton-c);
    outline-offset: 3px;
}

.saut {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--os-c); color: var(--noir);
    padding: .7rem 1.1rem;
    font-family: var(--f-cartel); letter-spacing: .1em;
}
.saut:focus { left: 12px; top: 12px; }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- 4. Grain & texture globale ---------- */
.grain {
    position: fixed; inset: 0; z-index: 900;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 5. Mise en page ---------- */
.large { width: 100%; max-width: var(--large); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.etroit { max-width: var(--texte); }

.bloc { padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }
.bloc-mur { background: linear-gradient(180deg, var(--mur), var(--mur-2)); }
.bloc-nuit { background: var(--nuit); }

/* Cimaise : filet laiton en haut de bloc, comme une accroche de tableau */
.cimaise { position: relative; }
.cimaise::before {
    content: '';
    position: absolute; inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,129,74,.5) 20%, rgba(168,129,74,.5) 80%, transparent);
}

.entete-bloc { max-width: 640px; margin: 0 0 clamp(2rem, 4vw, 3rem); }
.entete-bloc.centre { margin-left: auto; margin-right: auto; text-align: center; }

.sur-titre {
    display: block;
    font-family: var(--f-cartel);
    font-size: .82rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--ambiance);
    margin-bottom: .9rem;
}

h2.titre { font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: .01em; }
h3.titre-s { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

.chapeau {
    font-size: clamp(1.08rem, 1.7vw, 1.22rem);
    color: var(--os);
    line-height: 1.7;
}

/* Ornement colonne — rappel du motif des trois enseignes */
.ornement {
    display: block; width: 100%; max-width: 190px;
    height: 22px; margin: 0 0 1.5rem;
    color: var(--laiton);
}
.centre .ornement { margin-left: auto; margin-right: auto; }
.ornement svg { width: 100%; height: 100%; display: block; }

/* ---------- 6. Marque ---------- */
.marque { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--os-c); }
.marque-sceau { width: 34px; height: 29px; flex: none; fill: currentColor; }
.marque-txt { display: flex; flex-direction: column; line-height: 1; }
.marque-nom {
    font-family: var(--f-titre); font-weight: 700;
    font-size: 1.3rem; letter-spacing: .2em; text-transform: uppercase;
}
.marque-sous {
    font-family: var(--f-cartel); font-size: .58rem;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--os-f); margin-top: .3rem;
}
.marque:hover .marque-nom { color: var(--blanc); }

/* ---------- 7. En-tête ---------- */
.entete {
    position: sticky; top: 0; z-index: 400;
    background: linear-gradient(180deg, rgba(11,9,8,.96), rgba(11,9,8,.82));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--os-rgb), .09);
    transition: border-color .3s, background .3s;
}
.entete-int { height: var(--entete); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.menu { display: flex; align-items: center; gap: clamp(.8rem, 1.7vw, 1.6rem); }
.menu a {
    font-family: var(--f-cartel);
    font-size: .84rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--os); text-decoration: none;
    padding: .3rem 0; position: relative; white-space: nowrap;
    transition: color .25s;
}
.menu a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
    height: 1px; background: var(--ambiance);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.menu a:hover { color: var(--os-c); }
.menu a:hover::after, .menu a[aria-current="page"]::after { transform: scaleX(1); }
.menu a[aria-current="page"] { color: var(--os-c); }
.menu .bouton { margin-left: .3rem; }
.menu .bouton::after { display: none; }

.burger {
    display: none; width: 42px; height: 42px; padding: 0;
    background: none; border: 1px solid rgba(var(--os-rgb), .22);
    cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 19px; height: 1.5px; background: var(--os-c); transition: transform .3s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 8. Boutons ---------- */
.bouton {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--f-cartel);
    font-size: .88rem; letter-spacing: .18em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    padding: .82rem 1.7rem;
    border: 1px solid var(--ambiance);
    background: transparent; color: var(--os-c);
    transition: background .3s, color .3s, border-color .3s, box-shadow .3s, transform .25s;
}
.bouton:hover { background: var(--ambiance); color: var(--noir); box-shadow: 0 0 26px rgba(var(--ambiance-rgb), .35); transform: translateY(-2px); }
.bouton:active { transform: translateY(0); }

.bouton-plein {
    background: var(--rouge); border-color: var(--rouge); color: var(--blanc);
}
.bouton-plein:hover { background: var(--rouge-c); border-color: var(--rouge-c); color: var(--blanc); box-shadow: 0 0 30px rgba(var(--rouge-rgb), .45); }

.bouton-os { border-color: rgba(var(--os-rgb), .32); color: var(--os-c); }
.bouton-os:hover { background: rgba(var(--os-rgb), .1); border-color: var(--os-c); color: var(--os-c); box-shadow: none; }

.bouton-l { padding: 1rem 2rem; font-size: .95rem; }

.bouton[aria-disabled="true"] {
    border-color: rgba(var(--os-rgb), .18); color: var(--os-f);
    cursor: not-allowed; background: rgba(255,255,255,.02);
}
.bouton[aria-disabled="true"]:hover { transform: none; box-shadow: none; background: rgba(255,255,255,.02); color: var(--os-f); }

.rangee { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.centre .rangee { justify-content: center; }

/* ---------- 9. Entrée de salle (hero des pages intérieures) ---------- */
.salle-entree {
    position: relative;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse 62% 52% at 50% 8%, var(--halo), transparent 68%),
        linear-gradient(180deg, var(--mur), var(--nuit));
    overflow: hidden;
    text-align: center;
}
/* Faisceau de projecteur */
.salle-entree::before {
    content: ''; position: absolute; top: -28%; left: 50%;
    width: 62%; height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(var(--ambiance-rgb), .12), transparent 72%);
    clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
    pointer-events: none;
}
.salle-enseigne {
    position: relative; z-index: 2;
    max-width: 520px; margin: 0 auto 1.6rem;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,.7));
}
.salle-enseigne img { width: 100%; height: auto; }
.salle-entree .chapeau { position: relative; z-index: 2; max-width: 620px; margin: 0 auto 2rem; }
.salle-entree .rangee { position: relative; z-index: 2; justify-content: center; }

/* ---------- 10. Cartel de musée ---------- */
.cartel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 1px;
    background: rgba(var(--os-rgb), .1);
    border: 1px solid rgba(168,129,74,.32);
    box-shadow: 0 18px 44px rgba(0,0,0,.55);
    max-width: 900px; margin: 0 auto;
}
.cartel-case { background: var(--nuit-2); padding: 1.1rem 1.2rem; text-align: left; }
.cartel-cle {
    display: block; font-family: var(--f-cartel);
    font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
    color: var(--laiton); margin-bottom: .35rem;
}
.cartel-val { font-family: var(--f-titre); font-size: 1.4rem; font-weight: 700; color: var(--os-c); line-height: 1.2; }
.cartel-val small { display: block; font-family: var(--f-texte); font-size: .82rem; font-weight: 400; color: var(--os-f); line-height: 1.4; margin-top: .1rem; }

/* Jauge d'intensité */
.jauge { display: inline-flex; align-items: center; gap: .55rem; }
.jauge-b { display: flex; gap: 3px; }
.jauge-b i { display: block; width: 16px; height: 7px; background: rgba(var(--os-rgb), .18); }
.jauge-b i.on { background: var(--rouge); box-shadow: 0 0 8px rgba(var(--rouge-rgb), .55); }
.jauge-t { font-family: var(--f-cartel); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--os); }

/* ---------- 11. Panneau parchemin ---------- */
.parchemin {
    background:
        radial-gradient(ellipse at 20% 10%, rgba(255,255,255,.55), transparent 55%),
        linear-gradient(160deg, var(--parche), var(--parche-2));
    color: var(--encre);
    padding: clamp(1.8rem, 4vw, 3rem);
    box-shadow: 0 22px 60px rgba(0,0,0,.6), inset 0 0 0 1px rgba(85,55,32,.18);
    position: relative;
}
.parchemin::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
    opacity: .05; mix-blend-mode: multiply;
}
.parchemin h2, .parchemin h3 { color: var(--encre); }
.parchemin .sur-titre { color: var(--brun); }
.parchemin p { color: var(--encre-2); }
.parchemin strong { color: var(--encre); font-weight: 400; box-shadow: inset 0 -.42em 0 rgba(208,19,19,.13); }
.parchemin a { color: var(--rouge-f); }
.parchemin blockquote {
    margin: 1.7rem 0; padding: .3rem 0 .3rem 1.4rem;
    border-left: 2px solid var(--rouge);
    font-family: var(--f-titre); font-size: 1.35rem; color: var(--encre);
    font-weight: 700; line-height: 1.4;
}
.parchemin .tampon {
    position: absolute; top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem);
    font-family: var(--f-cartel); font-size: .62rem; letter-spacing: .28em;
    text-transform: uppercase; color: var(--rouge-f);
    border: 1.5px solid var(--rouge-f); padding: .3rem .6rem;
    transform: rotate(-8deg); opacity: .55;
}

/* ---------- 12. Cadres & cartes ---------- */
.grille { display: grid; gap: clamp(1.1rem, 2.4vw, 1.7rem); }
.g2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.carte {
    position: relative;
    background: linear-gradient(165deg, var(--nuit-3), var(--nuit-2));
    border: 1px solid rgba(var(--os-rgb), .1);
    padding: 1.7rem;
    transition: border-color .35s, box-shadow .35s, transform .35s cubic-bezier(.22,1,.36,1);
}
.carte::before {
    content: ''; position: absolute; inset: 0 0 auto; height: 2px;
    background: linear-gradient(90deg, transparent, var(--ambiance), transparent);
    opacity: 0; transition: opacity .35s;
}
.carte:hover { border-color: rgba(var(--ambiance-rgb), .4); box-shadow: 0 16px 44px rgba(0,0,0,.6); transform: translateY(-4px); }
.carte:hover::before { opacity: .8; }
.carte h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.carte p { font-size: 1rem; color: var(--os); }

.carte-icone {
    width: 40px; height: 40px; display: grid; place-items: center;
    border: 1px solid rgba(var(--ambiance-rgb), .35);
    color: var(--ambiance); margin-bottom: 1.1rem;
}
.carte-icone svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- 13. Liste pointée ---------- */
.liste { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.liste li { position: relative; padding-left: 1.7rem; }
.liste li::before {
    content: ''; position: absolute; left: 0; top: .72em;
    width: 8px; height: 8px;
    background: var(--ambiance);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.parchemin .liste li::before { background: var(--rouge); }

/* ---------- 14. Étapes ---------- */
.etapes { counter-reset: e; display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.etape { position: relative; padding-top: 3rem; }
.etape::before {
    counter-increment: e; content: counter(e, decimal-leading-zero);
    position: absolute; top: 0; left: 0;
    font-family: var(--f-titre); font-size: 2.1rem; font-weight: 700;
    color: var(--ambiance); opacity: .55; line-height: 1;
}
.etape h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.etape p { font-size: .98rem; color: var(--os); }

/* ---------- 15. Deux colonnes ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

/* ---------- 16. Tarifs ---------- */
.tarifs { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); }
.tarif { border: 1px solid rgba(168,129,74,.28); background: var(--nuit-2); padding: 1.5rem; }
.tarif.mis { border-color: var(--rouge); position: relative; }
.tarif.mis::before {
    content: 'Le plus pris'; position: absolute; top: -.7rem; left: 1.2rem;
    background: var(--rouge); color: var(--blanc);
    font-family: var(--f-cartel); font-size: .62rem; letter-spacing: .18em;
    text-transform: uppercase; padding: .18rem .55rem;
}
.tarif-nom { font-family: var(--f-cartel); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--laiton); margin-bottom: .5rem; }
.tarif-prix { font-family: var(--f-titre); font-size: 2.4rem; font-weight: 700; color: var(--os-c); line-height: 1; }
.tarif-prix span { font-family: var(--f-texte); font-size: .9rem; color: var(--os-f); }
.tarif p { font-size: .95rem; color: var(--os); margin: .6rem 0 0; }

/* ---------- 17. Infos pratiques ---------- */
.infos-duo { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.carte-plan { border: 1px solid rgba(168,129,74,.3); background: var(--nuit-2); min-height: 340px; box-shadow: 0 18px 50px rgba(0,0,0,.55); }
.carte-plan iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.5) contrast(.9) brightness(.85); }
.plan-note { margin-top: .75rem; font-size: .92rem; color: var(--os-f); }

.infos-liste { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 1.3rem; }
.infos-liste li { display: flex; gap: .9rem; align-items: flex-start; }
.infos-liste .ic { flex: none; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(var(--ambiance-rgb), .35); color: var(--ambiance); }
.infos-liste .ic svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.infos-liste .k { display: block; font-family: var(--f-cartel); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--laiton); margin-bottom: .1rem; }
.infos-liste .v { display: block; color: var(--os-c); font-size: 1.02rem; line-height: 1.55; }
.infos-liste .v a { color: var(--os-c); text-decoration: none; border-bottom: 1px solid rgba(168,129,74,.5); }
.infos-liste .v a:hover { color: var(--laiton-c); }

.horaires { width: 100%; border-collapse: collapse; font-size: 1rem; }
.horaires th, .horaires td { text-align: left; padding: .55rem 0; border-bottom: 1px solid rgba(var(--os-rgb), .1); font-weight: 400; }
.horaires th { color: var(--os); }
.horaires td { text-align: right; color: var(--os-c); font-variant-numeric: tabular-nums; }
.horaires .ferme { color: var(--os-f); }
.horaires tr:last-child th, .horaires tr:last-child td { border-bottom: 0; }

/* ---------- 18. FAQ ---------- */
.faq { border-top: 1px solid rgba(var(--os-rgb), .12); }
.faq details { border-bottom: 1px solid rgba(var(--os-rgb), .12); }
.faq summary {
    cursor: pointer; list-style: none; position: relative;
    padding: 1.15rem 2.4rem 1.15rem 0;
    font-family: var(--f-titre); font-size: 1.15rem; font-weight: 700; color: var(--os-c);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ''; position: absolute; right: .5rem; top: 50%;
    width: 9px; height: 9px;
    border-right: 1.5px solid var(--ambiance); border-bottom: 1.5px solid var(--ambiance);
    transform: translateY(-70%) rotate(45deg); transition: transform .3s;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { padding: 0 1rem 1.3rem 0; color: var(--os); font-size: 1.02rem; }

/* ---------- 19. Bandeau d'appel ---------- */
.bandeau {
    text-align: center;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background:
        radial-gradient(ellipse 60% 100% at 50% 100%, var(--halo), transparent 70%),
        var(--noir);
    border-top: 1px solid rgba(168,129,74,.22);
}
.bandeau h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.bandeau p { color: var(--os); max-width: 560px; margin: 0 auto 1.8rem; }

/* Avis « bientôt » */
.avis {
    display: flex; gap: 1rem; align-items: flex-start;
    border: 1px solid rgba(168,129,74,.35);
    background: rgba(85,55,32,.15);
    padding: 1.2rem 1.4rem; color: var(--os);
}
.avis .ic { flex: none; color: var(--laiton-c); }
.avis .ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.avis strong { display: block; font-family: var(--f-titre); font-size: 1.1rem; font-weight: 700; color: var(--os-c); margin-bottom: .2rem; }

/* ---------- 20. Réservation ---------- */
.resa-grille { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.resa-carte {
    border: 1px solid rgba(var(--os-rgb), .12);
    border-top: 3px solid var(--rc, var(--rouge));
    background: var(--nuit-2); padding: 1.5rem;
    display: flex; flex-direction: column;
}
.resa-carte h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.resa-carte .meta { font-family: var(--f-cartel); font-size: .8rem; letter-spacing: .1em; color: var(--laiton); margin-bottom: 1rem; text-transform: uppercase; }
.resa-carte p { flex: 1; font-size: .98rem; color: var(--os); }
.resa-carte .bouton { width: 100%; margin-top: 1.2rem; }

/* ---------- 21. Réseaux ---------- */
.reseaux { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.reseau {
    display: flex; flex-direction: column; align-items: flex-start; gap: .4rem;
    padding: 1.5rem; text-decoration: none; color: inherit;
    border: 1px solid rgba(var(--os-rgb), .1);
    background: linear-gradient(165deg, var(--nuit-3), var(--nuit-2));
    transition: border-color .35s, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.reseau:hover { border-color: rgba(var(--ambiance-rgb), .45); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.6); }
.reseau .ic { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(var(--ambiance-rgb), .3); color: var(--ambiance); margin-bottom: .6rem; }
.reseau .ic svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.reseau h3 { font-size: 1.2rem; margin: 0; }
.reseau .pseudo { font-size: .95rem; color: var(--os-f); margin: 0; }
.reseau.bientot { opacity: .55; }
.reseau.bientot:hover { transform: none; }

.etiquette {
    display: inline-block; font-family: var(--f-cartel);
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    border: 1px solid rgba(168,129,74,.5); color: var(--laiton-c);
    padding: .2rem .6rem; margin-top: .6rem;
}

/* ---------- 22. Galerie encadrée ---------- */
.galerie { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.galerie figure { margin: 0; }
.cadre {
    padding: 12px;
    background: linear-gradient(150deg, #6b4526, var(--brun-f) 55%, #6b4526);
    box-shadow: 0 20px 50px rgba(0,0,0,.65), inset 0 0 0 1px rgba(168,129,74,.35);
}
.cadre-int { border: 1px solid rgba(0,0,0,.6); overflow: hidden; background: var(--noir); }
.cadre-int img { width: 100%; height: auto; display: block; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.galerie figure:hover .cadre-int img { transform: scale(1.04); }
.galerie figcaption {
    margin-top: .8rem; text-align: center;
    font-family: var(--f-cartel); font-size: .78rem; letter-spacing: .16em;
    text-transform: uppercase; color: var(--os-f);
}

/* ---------- 23. Pied de page ---------- */
.pied { background: var(--noir); border-top: 1px solid rgba(168,129,74,.22); padding: clamp(3rem, 6vw, 4.5rem) 0 1.8rem; }
.pied-grille { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: 2.4rem; border-bottom: 1px solid rgba(var(--os-rgb), .1); }
.pied h4 { font-family: var(--f-cartel); font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--laiton); margin-bottom: 1rem; }
.pied ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.pied a { color: var(--os); text-decoration: none; font-size: .98rem; transition: color .25s; }
.pied a:hover { color: var(--os-c); }
.pied p { font-size: .98rem; color: var(--os); margin-bottom: .7rem; }
.pied-devise { font-family: var(--f-titre); font-size: 1.05rem; color: var(--rouge); font-weight: 700; }
.pied-bas { padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .86rem; color: var(--os-f); }
.pied-bas a { font-size: .86rem; color: var(--os-f); }

/* ---------- 24. Apparitions ---------- */
.rev { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.rev.vu { opacity: 1; transform: none; }
.rev[data-d="1"] { transition-delay: .1s; }
.rev[data-d="2"] { transition-delay: .2s; }
.rev[data-d="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .rev { opacity: 1; transform: none; } }

/* ---------- 25. Utilitaires ---------- */
.centre { text-align: center; }
.m2 { margin-top: 1.4rem; }
.m3 { margin-top: 2.2rem; }
.mb2 { margin-bottom: 1.4rem; }
.mb3 { margin-bottom: 2.2rem; }
.attenue { color: var(--os-f); }
.petit { font-size: .92rem; }

/* ---------- 26. Responsive ---------- */
@media (max-width: 1000px) {
    .duo, .infos-duo { grid-template-columns: 1fr; }
    .pied-grille { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
    :root { --entete: 64px; }
    .burger { display: flex; }
    .menu {
        position: fixed; inset: var(--entete) 0 auto;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--nuit); border-bottom: 1px solid rgba(168,129,74,.3);
        padding: .4rem 1.25rem 1.4rem;
        max-height: calc(100dvh - var(--entete)); overflow-y: auto;
        opacity: 0; visibility: hidden; transform: translateY(-8px);
        transition: opacity .25s, transform .25s, visibility .25s;
    }
    .menu.ouvert { opacity: 1; visibility: visible; transform: none; }
    .menu a { padding: .85rem 0; border-bottom: 1px solid rgba(var(--os-rgb), .09); font-size: 1rem; }
    .menu a::after { display: none; }
    .menu .bouton { margin: 1rem 0 0; width: 100%; border-bottom: 0; }
}

@media (max-width: 620px) {
    body { font-size: 1.06rem; }
    .pied-grille { grid-template-columns: 1fr; }
    .cartel { grid-template-columns: 1fr 1fr; }
    .rangee .bouton { width: 100%; }
}

@media print {
    .entete, .pied, .bouton, .carte-plan, .grain { display: none !important; }
    body { background: #fff; color: #000; }
}
