/* ==========================================================================
   BRASA — Grill & Braise — Feuille de style principale
   Structure : Tokens > Reset > Utilitaires > Header > Hero > Séparateur >
   Concept > Galerie > Événements > Avis & Social > Footer > Animations > Media
   Toutes les couleurs/typos/espacements passent par les variables du bloc
   :root ci-dessous : un seul endroit à modifier pour changer la charte.
   ========================================================================== */

/* --------------------------------------------------------------------------
   POLICES LOCALES (chargées en interne depuis /charte-graphique/fonts)
   -------------------------------------------------------------------------- */
/* Corps de texte — Arimo (police variable : couvre 400 → 700) */
@font-face {
  font-family: 'Arimo';
  src: url('../charte-graphique/fonts/Arimo/Arimo-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arimo';
  src: url('../charte-graphique/fonts/Arimo/Arimo-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
/* Titres H1/H2 — Great Vibes */
@font-face {
  font-family: 'Great Vibes';
  src: url('../charte-graphique/fonts/Great_Vibes/GreatVibes-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   TOKENS
   -------------------------------------------------------------------------- */
:root{
  /* Couleurs — Charte Graphique BRASA V4 */
  --color-charbon:#000000;
  --color-charbon-soft:#1a1a1a;
  --color-charbon-card:#1c1712;
  --color-braise:#D63000;
  --color-rouge-feu:#C41F00;
  --color-orange-vif:#FF7A00;
  --color-orange:#FF9F1C;
  --color-acier:#E5E5E5;
  --color-beige:#DDC0A0;
  --color-blanc:#FFFFFF;

  --gradient-incandescent: linear-gradient(45deg, var(--color-rouge-feu), var(--color-orange-vif));
  --gradient-foyer: radial-gradient(circle at 50% 40%, #2A110B 0%, var(--color-charbon) 72%);
  --gradient-acier: linear-gradient(160deg, #f2f2f2 0%, var(--color-acier) 45%, #b9b9b9 100%);

  /* Typographies — équivalents libres en attendant les fichiers de police officiels */
  --font-display:'Great Vibes', 'Brush Script MT', cursive; /* Titres H1/H2 */
  --font-subtitle:'Times New Roman', Times, serif;                   /* Sous-titres / éléments clés */
  --font-body:'Arimo', Arial, Helvetica, sans-serif;                 /* Corps de texte */

  /* Espacements */
  --space-1:.5rem; --space-2:1rem; --space-3:1.5rem; --space-4:2rem;
  --space-5:2.5rem; --space-6:3rem; --space-8:4rem; --space-10:6rem;

  /* Rayons / ombres */
  --radius-sm:8px; --radius-md:16px; --radius-lg:32px; --radius-full:999px;
  --shadow-premium:0 20px 60px rgba(0,0,0,.55);
  --shadow-card:0 12px 32px rgba(0,0,0,.4);

  --container-max:1280px;
  --header-h:88px;
}

/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--color-charbon);
  color:var(--color-acier);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2{
  margin:0;
  font-family:var(--font-display);
  font-weight:400;              /* Great Vibes n'a qu'une graisse : évite le faux-gras */
  letter-spacing:normal;        /* indispensable pour une cursive liée */
  line-height:1.5;              /* Great Vibes a de grandes hampes/fioritures : évite qu'elles soient rognées */
  padding:.08em .18em .2em;     /* marge interne pour que les boucles hautes/basses ne soient pas coupées */
  /* Dégradé feu — Variante 5 (animé) */
  background:linear-gradient(45deg,#ff651d,#ff7b00,#ffd500,#fff3a3);
  background-size:500%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:lava 4.5s ease infinite;
  filter:drop-shadow(0 0 8px rgba(255,90,0,.5)) drop-shadow(0 0 20px rgba(255,140,0,.35));
}
h3{
  margin:0;
  font-family:var(--font-subtitle);
  font-weight:700;
  /* Dégradé feu — Variante 2 (statique) */
  background:linear-gradient(180deg,#fff4b2,#ffd500,#ff9800,#ff4d00,#850000);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  filter:drop-shadow(0 0 6px rgba(255,150,0,.2));
}
p{margin:0;}
button{font-family:inherit;cursor:pointer;}
ul{list-style:none;margin:0;padding:0;}
:focus-visible{outline:2px solid var(--color-orange);outline-offset:3px;}

/* --------------------------------------------------------------------------
   UTILITAIRES
   -------------------------------------------------------------------------- */
.container{width:100%;max-width:var(--container-max);margin-inline:auto;padding-inline:var(--space-3);}
.eyebrow{
  font-family:var(--font-subtitle);
  color:var(--color-blanc);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:1rem;
  font-weight:700;
}
.section-title{
  font-size:clamp(2.6rem, 6vw, 4.4rem); /* la cursive Great Vibes rend plus petit → on agrandit */
  margin-top:var(--space-2);
  line-height:1.15;
  /* hérite du dégradé fire5 défini sur h2 */
}
.section-lede{
  color:var(--color-acier);
  max-width:640px;
  margin-inline:auto;   /* centre le bloc dans les conteneurs centrés (galerie, concept, événements) */
  font-size:1.05rem;
}
/* ---- Animations d'entrée (révélation au scroll) ----
   .reveal          : un bloc apparaît (fondu + léger déplacement), variantes de direction
   .reveal-group    : ses enfants apparaissent en cascade (fondu uniquement → n'entre jamais
                      en conflit avec les transformations de survol des icônes/cartes)         */
.reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay:var(--reveal-delay,0s);
}
.reveal.is-visible{opacity:1;transform:none;}
.reveal--left{transform:translateX(-34px);}
.reveal--right{transform:translateX(34px);}
.reveal--scale{transform:scale(.94);}
.reveal--fade{transform:none;}

.reveal-group > *{opacity:0;}
.reveal-group.is-visible > *{animation:reveal-fade-in .6s cubic-bezier(.22,.61,.36,1) both;}
.reveal-group.is-visible > *:nth-child(1){animation-delay:.05s;}
.reveal-group.is-visible > *:nth-child(2){animation-delay:.11s;}
.reveal-group.is-visible > *:nth-child(3){animation-delay:.17s;}
.reveal-group.is-visible > *:nth-child(4){animation-delay:.23s;}
.reveal-group.is-visible > *:nth-child(5){animation-delay:.29s;}
.reveal-group.is-visible > *:nth-child(6){animation-delay:.35s;}
.reveal-group.is-visible > *:nth-child(7){animation-delay:.41s;}
.reveal-group.is-visible > *:nth-child(8){animation-delay:.47s;}
/* Fondu seul (pas de transform) : préserve les effets de survol des enfants animés */
@keyframes reveal-fade-in{from{opacity:0;}to{opacity:1;}}
.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;}
/* Masque visuellement le texte littéral des shortcodes EpicView tant que le site
   est en HTML statique (ils seront rendus par le plugin une fois sous WordPress). */
.evb-shortcode{display:none;}

/* Boutons — Composants UI de la charte */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.9rem 1.9rem;
  border-radius:var(--radius-full);
  font-weight:700;font-size:.95rem;letter-spacing:.03em;
  transition:transform .25s ease, box-shadow .25s ease, filter .3s ease;
  position:relative;overflow:visible;
  white-space:nowrap;
}
.btn-principal{
  background:var(--gradient-incandescent);
  background-size:160% 160%;
  background-position:0% 50%;
  color:var(--color-blanc);
  border:none;
  box-shadow:0 10px 30px rgba(214,48,0,.4);
}
.btn-principal:hover{
  background-position:100% 50%;
  filter:brightness(1.12);
  transform:translateY(-2px);
  box-shadow:0 14px 38px rgba(255,122,0,.55);
}
.btn-secondaire{
  background:transparent;
  color:var(--color-beige);
  border:2px solid var(--color-beige);
}
.btn-secondaire:hover{
  background:rgba(221,192,160,.1);
  transform:translateY(-2px);
}
.btn-tertiaire{
  background:#1A1A1A;
  color:var(--color-orange);
  border:1px solid #333333;
}
.btn-tertiaire:hover{border-color:var(--color-orange);}

/* Étincelles au survol du bouton principal */
.btn-principal .spark{
  position:absolute;bottom:2px;
  width:4px;height:4px;border-radius:50%;
  background:var(--color-orange);
  opacity:0;pointer-events:none;
}
.btn-principal:hover .spark{animation:spark-rise 900ms ease-out infinite;}
.btn-principal .spark:nth-child(1){left:20%;animation-delay:0ms;}
.btn-principal .spark:nth-child(2){left:50%;animation-delay:180ms;}
.btn-principal .spark:nth-child(3){left:75%;animation-delay:360ms;}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION GRAVÉE
   -------------------------------------------------------------------------- */
/* Le header EST le couteau : image PNG/webp transparente posée sur le charbon,
   les 7 items sont gravés directement sur la lame. Header fixe, toujours
   visible ; le hero (scrolling) démarre juste derrière, dès l'arrivée. */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
}
.knife-header{
  position:relative;
  max-width:1120px;
  margin-inline:auto;
  /* Base = barre compacte (mobile/tablette) */
  display:flex;align-items:center;justify-content:space-between;
  padding:.5rem clamp(1rem,4vw,1.5rem);
}
.knife-header__img{
  display:none;width:100%;height:auto;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.55));
  pointer-events:none;user-select:none;
}

/* Logo + burger : visibles uniquement en version compacte (mobile/tablette) */
.knife-header__logo{display:flex;align-items:center;}
.knife-header__logo img{height:42px;width:auto;}
.nav-toggle{
  display:flex;flex-direction:column;gap:5px;
  background:none;border:none;padding:.5rem;
}
.nav-toggle span{width:26px;height:2px;background:var(--color-acier);border-radius:2px;}

/* --- Navigation (base = version compacte : menu déroulant sombre) --- */
.knife-nav{
  position:absolute;top:100%;left:0;right:0;
  display:flex;flex-direction:column;
  background:rgba(11,11,11,.98);
  border-top:1px solid rgba(221,192,160,.14);
  padding:.4rem 1.1rem 1rem;
  transform:translateY(-10px);opacity:0;pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.knife-nav.is-open{transform:none;opacity:1;pointer-events:auto;}
.knav{
  display:flex;align-items:center;gap:1rem;
  padding:.85rem .25rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:transform .15s ease;
}
.knav__icon{
  flex:none;width:24px;height:24px;
  background:var(--color-beige);
  -webkit-mask:var(--icon) center/contain no-repeat;
  mask:var(--icon) center/contain no-repeat;
  transition:background .15s ease, transform .15s ease, filter .15s ease;
}
.knav__label{
  color:var(--color-acier);
  font-size:.85rem;letter-spacing:.06em;text-transform:uppercase;
  transition:color .15s ease;
}
.knav:hover .knav__icon,.knav:focus-visible .knav__icon{background:var(--color-orange);}
.knav:hover .knav__label,.knav:focus-visible .knav__label{color:var(--color-orange);}

/* Association icône ↔ SVG (partagée entre version compacte et gravure) */
.knav__icon--accueil{--icon:url('../charte-graphique/svg/acceuil-brasa.svg');}
.knav__icon--apropos{--icon:url('../charte-graphique/svg/brasero-svgrepo-com.svg');}
.knav__icon--menu{--icon:url('../charte-graphique/svg/meat-slice-silhouette-svgrepo-com.svg');}
.knav__icon--services{--icon:url('../charte-graphique/svg/fork-svgrepo-com.svg');}
.knav__icon--evenements{--icon:url('../charte-graphique/svg/event-brasa.svg');}
.knav__icon--galerie{--icon:url('../charte-graphique/svg/galerie-brasa.svg');}
.knav__icon--contact{--icon:url('../charte-graphique/svg/a-propos-brasa.svg');}

/* --- Version desktop : gravure des items directement sur la lame --- */
@media (min-width:992px){
  /* La bande header (pleine largeur, FIXE) est la cible du survol : évite le
     jitter qd le survol portait sur le couteau qui, en glissant, sortait du
     curseur → perte de survol → re-glissement en boucle. */
  .site-header{pointer-events:auto;}
  .knife-header{
    display:block;padding:0;pointer-events:auto;
    transition:transform 2.0s cubic-bezier(.25,.8,.25,1);
  }
  .site-header--hidden .knife-header{
    transform:translateX(calc(-50vw - 50% + 325px));
  }
  .site-header--hidden:hover .knife-header{
    transform:translateX(0);
  }
  .knife-header__img{display:block;}
  .knife-header__logo,.nav-toggle{display:none;}
  .knife-nav{
    position:absolute;top:49%;left:15.5%;right:auto;width:57%;
    transform:translateY(-50%);
    flex-direction:row;align-items:stretch;
    background:none;border:none;padding:0;
    opacity:1;pointer-events:auto;
  }
  .knav{
    flex:1;flex-direction:column;align-items:center;justify-content:center;gap:3px;
    padding:2px 3px;border-bottom:none;
    border-right:1px solid rgba(0,0,0,.18);
    box-shadow:1px 0 0 rgba(255,255,255,.22);
  }
  .knav:last-child{border-right:none;box-shadow:none;}
  /* Icône gravée : encre sombre + léger biseau lumineux en bas */
  .knav__icon{
    width:26px;height:26px;background:#181818;
    filter:drop-shadow(0 1px .5px rgba(255,255,255,.55));
  }
  .knav__label{
    color:#1b1b1b;font-size:.56rem;font-weight:700;letter-spacing:.02em;
    white-space:nowrap;
    text-shadow:0 1px 0 rgba(255,255,255,.5);
  }
  /* Hover : impression d'enfoncement (biseau inversé + descente) */
  .knav:hover .knav__icon,.knav:focus-visible .knav__icon{
    background:#000;transform:translateY(1px) scale(.95);
    filter:drop-shadow(0 -1px .5px rgba(255,255,255,.5)) drop-shadow(0 1px 1px rgba(0,0,0,.4));
  }
  .knav:hover .knav__label,.knav:focus-visible .knav__label{color:#000;}
}

@media (min-width:1280px){
  .knav__icon{width:28px;height:28px;}
  .knav__label{font-size:.62rem;}
}

/* --------------------------------------------------------------------------
   HERO — SCROLL INTERACTIF (SECTION 1)
   -------------------------------------------------------------------------- */
.hero{
  position:relative;
  height:350vh; /* distance de scroll pilotant les 144 frames */
}
.hero__stage{
  position:sticky;top:0;
  height:100vh;width:100%;
  overflow:hidden;
  background:var(--color-charbon);
}
#heroCanvas{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.hero__scrim{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.38) 40%, rgba(0,0,0,.65) 100%);
}
.hero__loader{
  position:absolute;inset:0;z-index:5;
  display:flex;align-items:center;justify-content:center;
  background:var(--color-charbon);
  transition:opacity .5s ease;
}
.hero__loader-bar{
  width:220px;height:3px;border-radius:2px;background:rgba(255,255,255,.15);overflow:hidden;
}
.hero__loader-bar span{display:block;height:100%;width:0%;background:var(--gradient-incandescent);}
.hero__loader.is-hidden{opacity:0;pointer-events:none;}

.hero__intro{
  position:absolute;inset:0;z-index:3;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;gap:var(--space-1);padding:var(--space-3);
  transition:opacity .3s ease, transform .3s ease;
}
.hero__title{
  font-size:clamp(2.4rem, 7vw, 5.2rem);
  color:var(--color-blanc);
  text-shadow:0 8px 30px rgba(0,0,0,.6);
}
.hero__logo{
  max-width:clamp(500px, 60vw, 750px);
  height:auto;
  filter:drop-shadow(0 8px 30px rgba(0,0,0,.6));
  margin-bottom:var(--space-2);
}
.hero__desc{max-width:850px;color:var(--color-acier);font-size:1.05rem;}
.hero__mouse{width:24px;height:40px;margin-top:var(--space-2);}
.hero__mouse-dot{animation:mouse-scroll 1.6s ease-in-out infinite;}
.hero__scroll-label{font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--color-beige);}

.hero__panel{
  position:absolute;top:50%;transform:translateY(-50%);
  z-index:3;max-width:min(52vw, 760px);padding:var(--space-3);
  opacity:0;transition:opacity .5s ease, transform .5s ease;
}
.hero__panel--left{left:var(--space-4);transform:translate(-40px,-50%);}
.hero__panel--left.is-active{opacity:1;transform:translate(0,-50%);}
.hero__panel--right{right:var(--space-4);text-align:right;transform:translate(40px,-50%);}
.hero__panel--right.is-active{opacity:1;transform:translate(0,-50%);}
.hero__panel h2{font-size:clamp(2.8rem,5.5vw,4.6rem);line-height:1.35;}
.hero__panel p{color:var(--color-acier);margin-top:.25rem;font-size:1.08rem;}

/* 3 boutons "Réservez" intégrés au hero : un centré (intro) + un par panneau.
   Ils apparaissent/disparaissent avec leur conteneur (transitions des panneaux). */
.hero__cta{margin-top:var(--space-3);}
.hero__panel--right .hero__cta{margin-left:auto;}

/* --------------------------------------------------------------------------
   CONCEPT BRASA (SECTION 2)
   -------------------------------------------------------------------------- */
.concept{padding-block:var(--space-10);}
.concept__intro{text-align:center;margin-inline:auto;margin-bottom:var(--space-8);}
.concept__intro .section-lede{margin-inline:auto;}
.concept__row{
  display:grid;grid-template-columns:1fr;gap:var(--space-4);
  align-items:center;
  padding-block:var(--space-6);
  perspective:900px;
}
.concept__row:not(:last-child){border-bottom:1px solid rgba(255,255,255,.06);}
.concept__media{
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-premium), 0 0 22px rgba(255,122,0,.22);
  aspect-ratio:4/3;
  transform:rotateY(-20deg) rotateX(8deg) scale(.94);
  transition:transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s ease;
  will-change:transform;
}
.concept__media img{width:100%;height:100%;object-fit:cover;}
.concept__media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,.35), transparent 45%);
}
.concept__media--tilt-left{transform:rotateY(20deg) rotateX(8deg) scale(.94);}
.concept__media:hover{transform:rotateY(0) rotateX(0) scale(1);box-shadow:var(--shadow-premium),0 30px 70px rgba(0,0,0,.4),0 0 30px rgba(255,122,0,.3);}
.concept__text h3{font-size:clamp(1.4rem,2.6vw,1.9rem);margin-bottom:.8rem;}
.concept__text p{color:var(--color-acier);}
.concept__text p + p{margin-top:.8rem;}

.concept__video{
  max-width:960px;margin:0 auto var(--space-8);
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-premium);
}
.concept__video-el{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;background:var(--color-charbon);}

/* --------------------------------------------------------------------------
   GALERIE (SECTION 3)
   -------------------------------------------------------------------------- */
.gallery{position:relative;overflow:hidden;padding-block:var(--space-10);text-align:center;}
.gallery .container{position:relative;z-index:1;}
.gallery__bg-video{position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:100%;height:100%;object-fit:contain;object-position:bottom center;z-index:0;pointer-events:none;opacity:0.85;mix-blend-mode:screen;}
.gallery__intro{max-width:750px;margin-inline:auto;}
.gallery-slider{position:relative;width:100%;margin-top:var(--space-6);}
.gallery-perspective{
  perspective:1200px;perspective-origin:center 30%;
  position:relative;width:100%;
  height:420px;
  display:flex;align-items:center;justify-content:center;
  touch-action:pan-y; /* laisse le drag/swipe horizontal au carrousel, le scroll vertical à la page */
  cursor:grab;
  user-select:none;
}
.gallery-perspective.is-dragging{cursor:grabbing;}
.gallery-perspective.is-dragging .gallery-card{transition:none;}
.gallery-card{
  position:absolute;
  width:170px;height:320px;
  border-radius:28px;overflow:hidden;
  box-shadow:var(--shadow-card);
  cursor:pointer;
  transform-style:preserve-3d;
  transition:transform .5s cubic-bezier(.25,.8,.25,1), opacity .4s ease, box-shadow .4s ease, filter .4s ease;
  ring:0;
}
.gallery-card img{width:100%;height:100%;object-fit:cover;}
.gallery-card__label{
  position:absolute;top:16px;left:16px;right:16px;
  background:rgba(18,18,18,.75);backdrop-filter:blur(6px);
  color:var(--color-beige);font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;
  padding:.5rem .8rem;border-radius:var(--radius-full);
  text-align:center;opacity:0;transition:opacity .3s ease;
  pointer-events:none;
}
.gallery-arrow{
  position:absolute;top:50%;transform:translateY(-50%) translateZ(1px);z-index:999;
  width:44px;height:44px;border-radius:var(--radius-sm);
  background:rgba(18,18,18,.85);border:1px solid rgba(221,192,160,.25);
  display:flex;align-items:center;justify-content:center;color:var(--color-beige);
  transition:background .2s ease, border-color .2s ease;
  isolation:isolate;
}
.gallery-arrow:hover{background:var(--color-braise);border-color:var(--color-braise);color:#fff;}
.gallery-arrow--prev{left:0;}
.gallery-arrow--next{right:0;}
.gallery__dots{display:flex;justify-content:center;gap:.5rem;margin-top:var(--space-3);}
.gallery__dots span{width:8px;height:8px;border-radius:50%;background:rgba(229,229,229,.3);transition:all .2s ease;}
.gallery__dots span.is-active{background:var(--color-braise);width:22px;border-radius:var(--radius-full);}
.gallery__cta{margin-top:var(--space-6);}

/* --------------------------------------------------------------------------
   ÉVÉNEMENTS (SECTION 4)
   -------------------------------------------------------------------------- */
.events{
  position:relative;
  min-height:80vh;
  display:flex;align-items:center;
  padding-block:var(--space-10);
  overflow:hidden;
}
.events__parallax-bg{
  position:absolute;
  top:-150px;
  bottom:-150px;
  left:0;
  right:0;
  background-image:linear-gradient(rgba(10,6,4,.55), rgba(18,18,18,.92)), url('../images/optimized/cocktail-2-brasa.webp');
  background-size:cover;
  background-position:center;
  will-change:transform;
  pointer-events:none;
  z-index:0;
}
.events::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 15% 20%, rgba(255,122,0,.18), transparent 55%);
  pointer-events:none;
  z-index:1;
}
.events__content{position:relative;z-index:2;max-width:950px;margin-inline:auto;text-align:center;}
.events__content .section-lede{max-width:750px;margin-top:var(--space-3);margin-inline:auto;}
/* Liste centrée en bloc mais texte aligné à gauche pour la lisibilité des puces */
.events__list{margin-top:var(--space-6);display:grid;gap:var(--space-3);text-align:left;max-width:600px;margin-inline:left;}
.events__list li{
  display:flex;align-items:center;gap:.9rem;
  color:var(--color-acier);font-size:1.02rem;
  padding:.85rem 0;border-bottom:1px solid rgba(255,255,255,.08);
}
.events__list li::before{
  content:"";width:8px;height:8px;border-radius:50%;
  background:var(--gradient-incandescent);flex:none;
}
.events__cta{margin-top:var(--space-6);}

/* --------------------------------------------------------------------------
   AVIS + RÉSEAUX SOCIAUX (SECTION 5)
   -------------------------------------------------------------------------- */
.reviews{padding-block:var(--space-8) var(--space-6);text-align:center;overflow:hidden;}

/* --- Mur d'avis 3D : colonnes verticales inclinées, up/down en boucle --- */
.reviews__scene{
  position:relative;
  width:100%;max-width:1200px;height:560px;
  margin:var(--space-6) auto 0;
  overflow:hidden;
  perspective:700px;
}
.reviews__columns{
  position:absolute;top:50%;left:50%;
  display:flex;gap:22px;
  transform:translate(-50%,-50%) rotateX(46deg) rotateZ(-26deg);
  transform-style:preserve-3d;
}
.reviews__column{width:250px;display:flex;flex-direction:column;}
.reviews__track{display:flex;flex-direction:column;gap:20px;animation:60s linear infinite;}
.reviews__column--up .reviews__track{animation-name:rv-up;}
.reviews__column--down .reviews__track{animation-name:rv-down;}
/* Seule la colonne survolée se met en pause, les autres continuent */
.reviews__column:hover .reviews__track{animation-play-state:paused;}
@keyframes rv-up{from{transform:translateY(0);} to{transform:translateY(-50%);}}
@keyframes rv-down{from{transform:translateY(-50%);} to{transform:translateY(0);}}

/* Cartes d'avis — 1 sur 2 blanche / orange, étoiles conservées */
.rv-card{
  display:flex;flex-direction:column;gap:10px;
  border-radius:18px;padding:16px 18px;min-height:132px;
  text-align:left;box-shadow:0 14px 30px rgba(0,0,0,.45);
}
.rv-card--white{background:var(--color-blanc);color:var(--color-charbon);}
.rv-card--orange{background:var(--gradient-incandescent);color:var(--color-blanc);}
.rv-card--black{background:var(--color-charbon-card);color:var(--color-blanc);border:1px solid rgba(255,255,255,.08);}
.rv-card__header{display:flex;align-items:center;gap:11px;}
.rv-card__avatar{
  width:42px;height:42px;border-radius:50%;flex:none;
  display:grid;place-items:center;font-weight:700;font-size:.95rem;
}
.rv-card--white .rv-card__avatar{background:var(--gradient-incandescent);color:var(--color-blanc);}
.rv-card--orange .rv-card__avatar{background:var(--color-blanc);color:var(--color-braise);}
.rv-card--black .rv-card__avatar{background:var(--gradient-incandescent);color:var(--color-blanc);}
.rv-card__name{display:block;font-weight:700;font-size:.98rem;line-height:1.15;}
.rv-card__meta{display:block;font-size:.75rem;opacity:.65;}
.rv-card__stars{margin-left:auto;align-self:flex-start;font-size:.9rem;letter-spacing:.06em;color:var(--color-orange);}
.rv-card--orange .rv-card__stars{color:var(--color-blanc);}
.rv-card--black .rv-card__stars{color:var(--color-orange);}
.rv-card__text{font-size:1rem;line-height:1.3;font-style:italic;}

/* Fondus vers le noir sur les 4 côtés */
.reviews__fade{position:absolute;z-index:20;pointer-events:none;}
.reviews__fade--top{top:0;left:0;right:0;height:140px;background:linear-gradient(var(--color-charbon),transparent);}
.reviews__fade--bottom{bottom:0;left:0;right:0;height:140px;background:linear-gradient(transparent,var(--color-charbon));}
.reviews__fade--left{left:0;top:0;bottom:0;width:180px;background:linear-gradient(to right,var(--color-charbon),transparent);}
.reviews__fade--right{right:0;top:0;bottom:0;width:180px;background:linear-gradient(to left,var(--color-charbon),transparent);}

@media (max-width:1024px){
  .reviews__column:nth-child(4){display:none;}
}
@media (max-width:720px){
  .reviews__scene{height:460px;}
  .reviews__columns{transform:translate(-50%,-50%) rotateX(40deg) rotateZ(-20deg);gap:16px;}
  .reviews__column{width:210px;}
  .reviews__column:nth-child(3){display:none;}
  .rv-card__text{font-size:.92rem;}
}

.divider-neon{
  position:relative;height:2px;margin:var(--space-8) auto;max-width:1500px;
  background:linear-gradient(90deg, transparent, var(--color-braise), var(--color-orange), var(--color-braise), transparent);
  background-size:200% 100%;
  border-radius:var(--radius-full);
  animation:neon-flow 4s linear infinite, neon-pulse 2.4s ease-in-out infinite;
}

.social{padding-block:var(--space-6) var(--space-10);text-align:center;}
.social__icons{display:flex;justify-content:center;gap:var(--space-4);margin-top:var(--space-4);}

/* Tuiles "verre glacé" : fond translucide + flou, liseré lumineux, reflet diagonal */
.social__icon{
  --glow:rgba(255,159,28,.5);
  position:relative;overflow:hidden;
  width:64px;height:64px;border-radius:22px;
  display:flex;align-items:center;justify-content:center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.02) 45%, rgba(0,0,0,.22) 100%),
    var(--color-charbon-card);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  box-shadow:
    0 10px 26px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 -14px 22px rgba(0,0,0,.3);
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
/* reflet diagonal statique (givre) */
.social__icon::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(125deg, rgba(255,255,255,.22) 0%, transparent 38%);
}
/* balayage lumineux au survol (effet glace qui accroche la lumière) */
.social__icon::after{
  content:"";position:absolute;top:-60%;left:-40%;width:35%;height:220%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent);
  transform:rotate(20deg) translateX(-40px);
  opacity:0;pointer-events:none;
  transition:transform .7s ease, opacity .5s ease;
}
.social__icon img{position:relative;z-index:1;width:32px;height:32px;filter:drop-shadow(0 2px 5px rgba(0,0,0,.45));transition:transform .4s cubic-bezier(.2,.8,.2,1);}

.social__icon:hover,.social__icon:focus-visible{
  transform:translateY(-6px) scale(1.05);
  border-color:rgba(255,255,255,.32);
  box-shadow:
    0 18px 40px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -14px 22px rgba(0,0,0,.25),
    0 0 32px var(--glow);
}
.social__icon:hover img,.social__icon:focus-visible img{transform:scale(1.14) rotate(-4deg);}
.social__icon:hover::after,.social__icon:focus-visible::after{opacity:1;transform:rotate(20deg) translateX(180px);}

.social__icon--instagram{--glow:rgba(214,41,118,.55);}
.social__icon--facebook{--glow:rgba(24,119,242,.5);}
.social__icon--tiktok{--glow:rgba(255,255,255,.4);}
.social__icon--google{--glow:rgba(66,133,244,.5);}

.social__cta{margin-top:var(--space-6);}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer{
  background:#0c0c0c;
  border-top:1px solid rgba(221,192,160,.12);
  padding-block:var(--space-6) var(--space-4);
}
.footer__grid{
  display:grid;grid-template-columns:1fr;gap:var(--space-4);
  text-align:center;
}
.footer__brand img{height:48px;margin-inline:auto;}
.footer__nap{font-size:.9rem;color:var(--color-acier);line-height:1.8;}
.footer__nap strong{color:var(--color-beige);font-family:var(--font-subtitle);}
.footer__hours{display:block;margin-top:14px;line-height:1.55;}
.footer__hours strong{display:block;margin-bottom:2px;}
.footer__hours span{display:block;font-size:.86rem;color:rgba(229,229,229,.85);}
.footer__social{display:flex;gap:var(--space-2);justify-content:center;}
.footer__social img{width:20px;height:20px;opacity:.8;}
.footer__partner{
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  font-size:.75rem;color:rgba(229,229,229,.6);
}
.footer__partner img{height:22px;}
.footer__bottom{
  margin-top:var(--space-5);padding-top:var(--space-3);
  border-top:1px solid rgba(255,255,255,.06);
  text-align:center;font-size:.78rem;color:rgba(229,229,229,.45);
}
.footer__legal{display:block;margin-top:.5rem;}
.footer__legal a{
  color:rgba(229,229,229,.55);text-decoration:none;
  margin-inline:.5rem;
}
.footer__legal a:hover{color:var(--color-orange);text-decoration:underline;}
.footer__legal a:not(:last-child)::after{content:"·";margin-left:1rem;color:rgba(229,229,229,.3);}

/* --------------------------------------------------------------------------
   PARTICULES DE FOND
   -------------------------------------------------------------------------- */
#particlesCanvas{
  position:fixed;inset:0;z-index:0;pointer-events:none;
  opacity:.5;
}
/* Contenu au-dessus des particules ; le header garde son z-index:100 propre. */
main, .site-footer{position:relative;z-index:1;}

/* --------------------------------------------------------------------------
   DÉGRADÉS FEU — TEXTE
   -------------------------------------------------------------------------- */

/* ------------------------------- */
/* Variante 5 — Titres (H1, H2) — Animé */
/* ------------------------------- */
.fire5{
  background:linear-gradient(
    45deg,
    #600000,
    #d00000,
    #ff3300,
    #ff7b00,
    #ffd500,
    #fff3a3,
    #ffd500,
    #ff7b00,
    #ff3300,
    #d00000
  );
  background-size:500%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:lava 7s ease infinite;
  filter:
    drop-shadow(0 0 8px rgba(255,90,0,.5))
    drop-shadow(0 0 20px rgba(255,140,0,.35));
}

/* ------------------------------- */
/* Variante 2 — Sous-titres (H3) — Statique */
/* ------------------------------- */
.fire2{
  background:linear-gradient(
    180deg,
    #fff4b2,
    #ffd500,
    #ff9800,
    #ff4d00,
    #850000
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  filter:drop-shadow(0 0 6px rgba(255,150,0,.2));
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes mouse-scroll{
  0%{transform:translateY(0);opacity:1;}
  60%{transform:translateY(14px);opacity:.3;}
  100%{transform:translateY(0);opacity:1;}
}
@keyframes spark-rise{
  0%{opacity:0;transform:translateY(0) scale(1);}
  30%{opacity:1;}
  100%{opacity:0;transform:translateY(-26px) scale(.4);}
}
@keyframes neon-flow{
  0%{background-position:0% 0%;}
  100%{background-position:200% 0%;}
}
@keyframes neon-pulse{
  0%,100%{box-shadow:0 0 8px 1px rgba(214,48,0,.5);}
  50%{box-shadow:0 0 22px 4px rgba(255,159,28,.7);}
}
@keyframes lava{
  0%  {background-position:0% 50%;}
  25% {background-position:50% 100%;}
  50% {background-position:100% 50%;}
  75% {background-position:50% 0%;}
  100%{background-position:0% 50%;}
}

/* --------------------------------------------------------------------------
   RESPONSIVE (mobile-first : bases ci-dessus = mobile, on enrichit ensuite)
   -------------------------------------------------------------------------- */
@media (min-width: 640px){
  .features__grid{grid-template-columns:repeat(2,1fr);gap:var(--space-4);}
}

@media (min-width: 768px){
  .concept__row{grid-template-columns:1fr 1fr;gap:var(--space-8);}
  .concept__row--reverse .concept__media{order:2;}
  .gallery-perspective{height:520px;}
  .gallery-card{width:220px;height:400px;}
  .footer__grid{grid-template-columns:1fr 1fr 1fr;text-align:left;}
  .footer__brand img{margin-inline:0;}
  .footer__social{justify-content:flex-start;}
  .footer__partner{align-items:flex-end;}
}

@media (min-width: 1024px){
  .features__grid{grid-template-columns:repeat(4,1fr);gap:var(--space-4);}
  .gallery-card{width:240px;height:450px;}
  body{font-size:17px;}
}

@media (max-width: 767px){
  .hero__panel{max-width:82vw;padding:var(--space-2);}
  .hero__panel h2{font-size:clamp(2rem,10vw,3.2rem);} /* borne la cursive sur petits écrans (impact desktop conservé) */
  .hero__panel--left{left:var(--space-2);}
  .hero__panel--right{right:var(--space-2);}
  .hero__cta{padding:.75rem 1.3rem;font-size:.82rem;}

  /* Navigation galerie au swipe sur mobile : les flèches laissent la place au doigt */
  .gallery-arrow{display:none;}
}

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

/* ==========================================================================
   PAGE GALERIE (gallery.html)
   ========================================================================== */
/* Intro : dégage l'espace sous le header fixe (couteau desktop / barre mobile) */
.gallery-page__hero{
  text-align:center;
  padding-top:100px;
  padding-bottom:var(--space-6);
}
.gallery-page__hero .section-lede{margin-top:var(--space-3);max-width:900px;}

/* --- Zoom parallax au scroll --- */
.zoom__container{height:300vh;position:relative;}
.zoom__sticky{
  position:sticky;top:0;
  width:100%;height:100vh;overflow:hidden;
  background:var(--color-charbon);
}
.zoom__parallax{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  transform-origin:center;will-change:transform;
}
.zoom__image{position:relative;width:25vw;height:25vh;}
.zoom__image img{
  width:100%;height:100%;object-fit:cover;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-premium);
}
.zoom--p1 .zoom__image{width:35vw;height:30vh;left:5vw;top:-30vh;}
.zoom--p2 .zoom__image{width:20vw;height:45vh;left:-25vw;top:-10vh;}
.zoom--p3 .zoom__image{width:25vw;height:25vh;left:27vw;}
.zoom--p4 .zoom__image{width:20vw;height:25vh;left:5vw;top:28vh;}
.zoom--p5 .zoom__image{width:30vw;height:25vh;left:-22vw;top:28vh;}
.zoom--p6 .zoom__image{width:15vw;height:15vh;left:25vw;top:22vh;}

/* --- Bloc de texte SEO --- */
.gallery-page__text{max-width:1250px;padding-block:var(--space-8);}
.gallery-page__text h3{font-size:1.4rem;margin-top:var(--space-5);margin-bottom:var(--space-2);}
.gallery-page__text p{color:var(--color-acier);margin-bottom:var(--space-3);}
.gallery-page__text p + h2,.gallery-page__text p + h3{margin-top:var(--space-6);}
.gallery-page__text a{color:var(--color-orange);text-decoration:underline;text-underline-offset:3px;}

/* --- Grille photo (masonry) --- */
.photo-grid-section{padding-block:var(--space-4) var(--space-10);text-align:center;}
.photo-grid-section .section-lede{margin-bottom:var(--space-5);max-width:900px;}
.photo-grid{column-count:2;column-gap:12px;margin-top:var(--space-4);}
.photo-grid__item{
  break-inside:avoid;margin:0 0 12px;
  border-radius:var(--radius-md);overflow:hidden;position:relative;
  box-shadow:var(--shadow-card);
}
.photo-grid__item img{width:100%;height:auto;display:block;transition:transform .5s ease;}
.photo-grid__item::after{
  content:"";position:absolute;inset:0;border-radius:inherit;
  box-shadow:inset 0 0 0 0 var(--color-braise);
  transition:box-shadow .3s ease;pointer-events:none;
}
.photo-grid__item:hover img{transform:scale(1.06);}
.photo-grid__item:hover::after{box-shadow:inset 0 0 0 2px var(--color-braise);}

.gallery-page__cta{display:flex;gap:var(--space-3);justify-content:center;flex-wrap:wrap;margin-top:var(--space-8);}

@media (min-width:700px){
  .photo-grid{column-count:3;}
}
/* Le couteau (header fixe) apparaît dès 992px : on dégage l'espace en conséquence */
@media (min-width:992px){
  .gallery-page__hero{padding-top:220px;}
}
@media (min-width:1024px){
  .photo-grid{column-count:4;column-gap:16px;}
  .photo-grid__item{margin-bottom:16px;}
}

/* ==========================================================================
   PAGE ÉVÉNEMENTS (event.html)
   ========================================================================== */
.events-hero{
  position:relative;overflow:hidden;
  min-height:88vh;display:flex;align-items:center;justify-content:center;text-align:center;
  padding-block:var(--space-10);
  background-image:linear-gradient(rgba(8,5,3,.55), rgba(10,10,10,.9)), url('../images/optimized/cocktail-2-brasa.webp');
  background-size:cover;background-position:center;
}
.events-hero__overlay{
  position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(circle at 20% 25%, rgba(255,122,0,.2), transparent 55%);
}
.events-hero__content{position:relative;z-index:2;max-width:1250px;}
.events-hero__content .section-lede{max-width:900px;margin-inline:auto;}

/* Bloc texte SEO */
.events-intro{max-width:1250px;padding-block:var(--space-8);}
.events-intro h2{font-size:clamp(2.2rem,4.5vw,3.4rem);line-height:1.15;margin-bottom:var(--space-3);}
.events-intro p{color:var(--color-acier);margin-bottom:var(--space-3);}
.events-intro a{color:var(--color-orange);text-decoration:underline;text-underline-offset:3px;}

.events-section{padding-block:var(--space-6);text-align:center;}
.events-section .section-lede{margin-bottom:var(--space-4);max-width:900px;margin-inline:auto;}
.events-section--past{padding-bottom:var(--space-10);}

/* État vide : plus discret et visuellement distinct de la description au-dessus */
.events-empty{
  display:flex;flex-direction:column;align-items:center;gap:.6rem;
  width:100%;margin-top:var(--space-5);
  padding:var(--space-5) var(--space-3);
  border:1px dashed rgba(221,192,160,.25);border-radius:var(--radius-lg);
  color:rgba(229,229,229,.55);font-style:italic;font-size:.92rem;
}
.events-empty svg{width:26px;height:26px;opacity:.55;}

/* --- Slider événements : 1 rangée, 3 cartes/vue en desktop, responsive jusqu'à 1 --- */
.ev-slider{position:relative;margin-top:var(--space-5);}
.ev-track{
  display:flex;gap:var(--space-4);
  overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-y; /* le swipe horizontal est piloté en JS, le scroll vertical de la page reste natif */
  padding-bottom:4px;
  scrollbar-width:none;-ms-overflow-style:none;
  cursor:grab;user-select:none;
}
.ev-track::-webkit-scrollbar{display:none;}
.ev-track.is-dragging{cursor:grabbing;scroll-snap-type:none;}
.ev-track > .event-card{scroll-snap-align:start;flex:0 0 100%;}
.ev-arrow{
  position:absolute;top:calc(50% - 10px);transform:translateY(-50%);z-index:10;
  width:44px;height:44px;border-radius:var(--radius-sm);
  background:rgba(18,18,18,.85);border:1px solid rgba(221,192,160,.25);
  display:flex;align-items:center;justify-content:center;color:var(--color-beige);
  transition:background .2s ease, border-color .2s ease, opacity .2s ease;
}
.ev-arrow:hover{background:var(--color-braise);border-color:var(--color-braise);color:#fff;}
.ev-arrow:disabled{opacity:.35;pointer-events:none;}
.ev-arrow--prev{left:-8px;}
.ev-arrow--next{right:-8px;}
.ev-dots{display:flex;justify-content:center;gap:.5rem;margin-top:var(--space-3);}
.ev-dots span{width:8px;height:8px;border-radius:50%;background:rgba(229,229,229,.3);transition:all .2s ease;cursor:pointer;}
.ev-dots span.is-active{background:var(--color-braise);width:22px;border-radius:var(--radius-full);}

.event-card{
  background:var(--color-charbon-soft);
  border:1px solid rgba(221,192,160,.12);
  border-radius:var(--radius-lg);overflow:hidden;cursor:pointer;
  display:flex;flex-direction:column;text-align:left;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.event-card:hover,.event-card:focus-visible{
  transform:translateY(-6px);border-color:var(--color-braise);
  box-shadow:0 18px 40px rgba(214,48,0,.28);
}
.event-card__media{position:relative;aspect-ratio:16/9;overflow:hidden;border-radius:calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;}
.event-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.event-card:hover .event-card__media img{transform:scale(1.06);}
.event-card__date{
  position:absolute;top:12px;left:12px;
  background:var(--gradient-incandescent);color:var(--color-blanc);
  font-size:.72rem;font-weight:700;letter-spacing:.02em;
  padding:.35rem .7rem;border-radius:var(--radius-full);text-transform:capitalize;
  box-shadow:0 6px 16px rgba(214,48,0,.4);
}
.event-card__info{padding:var(--space-3);display:flex;flex-direction:column;gap:.4rem;}
.event-card__title{font-size:1.35rem;}
.event-card__meta{color:var(--color-beige);font-size:.85rem;}
.event-card__excerpt{color:var(--color-acier);font-size:.95rem;}
.event-card__more{color:var(--color-orange);font-weight:700;font-size:.85rem;margin-top:.3rem;}

/* --- Événements passés : même design que les cartes à venir, grisées et non cliquables --- */
.event-card--past{
  filter:grayscale(1) brightness(.75);
  cursor:default;
  pointer-events:none;
}

.event-modal{
  position:fixed;inset:0;z-index:200;
  display:flex;align-items:center;justify-content:center;padding:var(--space-3);
  background:rgba(0,0,0,.6);backdrop-filter:blur(8px);
  opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.event-modal.is-open{opacity:1;pointer-events:auto;}
.event-modal__dialog{
  position:relative;background:var(--color-charbon-soft);
  border:1px solid rgba(221,192,160,.15);border-radius:var(--radius-lg);
  max-width:640px;width:100%;max-height:90vh;overflow:auto;
  transform:scale(.94);transition:transform .3s ease;
}
.event-modal.is-open .event-modal__dialog{transform:scale(1);}
.event-modal__img{width:100%;height:300px;object-fit:cover;}
.event-modal__close{
  position:absolute;top:12px;right:12px;z-index:2;
  width:40px;height:40px;border:none;border-radius:50%;
  background:rgba(0,0,0,.55);color:var(--color-blanc);font-size:1.6rem;line-height:1;cursor:pointer;
  transition:background .2s ease;
}
.event-modal__close:hover{background:var(--color-braise);}
.event-modal__body{padding:var(--space-5);}
.event-modal__date{color:var(--color-orange);font-weight:700;text-transform:capitalize;}
.event-modal__meta{color:var(--color-beige);margin:.3rem 0 var(--space-3);}
.event-modal__desc{color:var(--color-acier);margin-bottom:var(--space-4);}

@media (min-width:700px){
  .ev-track > .event-card{flex:0 0 calc((100% - var(--space-4)) / 2);}
}
@media (min-width:1024px){
  .ev-track > .event-card{flex:0 0 calc((100% - 2 * var(--space-4)) / 3);}
  .ev-arrow--prev{left:-22px;}
  .ev-arrow--next{right:-22px;}
}

/* ==========================================================================
   PAGE À PROPOS (a-propos.html)
   ========================================================================== */
.about-hero{padding-top:100px;padding-bottom:var(--space-8);}
.about-hero__head{text-align:center;max-width:1250px;margin:0 auto var(--space-8);}
.about-hero__head .section-lede{margin-top:var(--space-3);max-width:950px;}

.about-hero__layout{
  display:grid;grid-template-columns:1fr;gap:var(--space-6);align-items:center;
}

/* Image centrale (portrait) */
.about-hero__media{
  position:relative;order:-1;
  max-width:450px;margin-inline:auto;width:100%;
  border-radius:var(--radius-lg);overflow:hidden;
}
.about-hero__media img{width:100%;height:auto;display:block;aspect-ratio:3/4;object-fit:cover;transition: transform 0.4s ease-in-out;}
.about-hero__media:hover img {
  transform: scale(0.95);}
.about-hero__media::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(0deg, rgba(0,0,0,.55), transparent 42%);
}

/* Colonnes de features */
.about-hero__col{display:flex;flex-direction:column;gap:var(--space-5);}
.about-feature{display:flex;gap:var(--space-2);align-items:flex-start;text-align:left;}
.about-feature__tile{
  flex:none;width:56px;height:56px;border-radius:12px;
  display:grid;place-items:center;
  background:var(--color-charbon-card);
  border:1px solid rgba(221,192,160,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.about-feature__icon{
  width:26px;height:26px;
  background:var(--color-orange);
  -webkit-mask:var(--icon) center/contain no-repeat;
  mask:var(--icon) center/contain no-repeat;
}
/* Chemins d'icônes déclarés dans la CSS (résolution d'url() correcte, cf .knav__icon) */
.about-feature__icon--braise{--icon:url('../charte-graphique/svg/brasero-svgrepo-com.svg');}
.about-feature__icon--viandes{--icon:url('../charte-graphique/svg/meat-slice-silhouette-svgrepo-com.svg');}
.about-feature__icon--bar{--icon:url('../charte-graphique/svg/cocktail-glass-with-ice-cube-svgrepo-com.svg');}
.about-feature__icon--table{--icon:url('../charte-graphique/svg/fork-svgrepo-com.svg');}
.about-feature__icon--desserts{--icon:url('../charte-graphique/svg/cloche-covering-hot-dish-svgrepo-com.svg');}
.about-feature__icon--ambiance{--icon:url('../charte-graphique/svg/event-brasa.svg');}
.about-feature__title{
  font-family:var(--font-subtitle);font-weight:700;
  font-size:1.25rem;line-height:1.2;margin-bottom:.35rem;
  color:var(--color-blanc);
  background:none;-webkit-text-fill-color:currentColor;filter:none;
}
.about-feature__body p{color:var(--color-acier);font-size:.95rem;}

/* Texte SEO */
.about-intro{max-width:1250px;padding-block:var(--space-8);}
.about-intro h2{font-size:clamp(2.2rem,4.5vw,3.4rem);line-height:1.15;margin-bottom:var(--space-3);}
.about-intro p{color:var(--color-acier);margin-bottom:var(--space-3);}
.about-intro a{color:var(--color-orange);text-decoration:underline;text-underline-offset:3px;}

/* FAQ (accordéon accessible, sans JS) */
.about-faq{max-width:820px;padding-block:var(--space-6) var(--space-8);text-align:center;}
.about-faq__title{margin-bottom:var(--space-5);}
.about-faq__list{display:flex;flex-direction:column;gap:12px;text-align:left;}
.about-faq__item{
  background:var(--color-charbon-card);
  border:1px solid rgba(221,192,160,.14);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:border-color .25s ease;
}
.about-faq__item[open]{border-color:rgba(214,48,0,.5);}
.about-faq__item summary{
  cursor:pointer;list-style:none;
  padding:1rem 1.2rem;
  font-family:var(--font-subtitle);font-weight:700;font-size:1.05rem;
  color:var(--color-blanc);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.about-faq__item summary::-webkit-details-marker{display:none;}
.about-faq__item summary::after{
  content:"+";flex:none;
  font-size:1.4rem;line-height:1;color:var(--color-orange);
  transition:transform .25s ease;
}
.about-faq__item[open] summary::after{transform:rotate(45deg);}
.about-faq__item p{
  padding:0 1.2rem 1.1rem;color:var(--color-acier);font-size:.98rem;line-height:1.55;
}
.about-faq__item a{color:var(--color-orange);text-decoration:underline;text-underline-offset:3px;}

/* Nous rendre visite */
.about-visit{padding-bottom:var(--space-10);text-align:center;}
.about-visit__title{margin-bottom:var(--space-6);}
.about-visit__grid{display:grid;grid-template-columns:1fr;gap:var(--space-5);align-items:stretch;}
.about-visit__left{display:flex;flex-direction:column;gap:var(--space-3);text-align:left;}
.about-visit__media{
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-card);border:1px solid rgba(221,192,160,.12);
}
.about-visit__media img{width:100%;height:100%;object-fit:cover;display:block;aspect-ratio:4/3;}
.about-visit__address{font-style:normal;color:var(--color-acier);line-height:1.6;}
.about-visit__name{font-family:var(--font-subtitle);font-weight:700;font-size:1.1rem;color:var(--color-blanc);margin-bottom:.2rem;}
.about-visit__actions{display:flex;flex-wrap:wrap;gap:var(--space-2);}
.about-visit__actions .btn{flex:1;min-width:150px;}
.about-visit__map{
  border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid rgba(221,192,160,.15);box-shadow:var(--shadow-card);
  min-height:340px;
}
.about-visit__map iframe{width:100%;height:100%;min-height:340px;border:0;display:block;filter:grayscale(.15) contrast(1.05);}

@media (min-width:600px){
  .about-hero__layout{grid-template-columns:repeat(2,1fr);}
  .about-hero__media{order:0;grid-column:1 / -1;max-width:360px;}
}
/* Le couteau (header fixe) apparaît dès 992px : on dégage l'espace comme les autres pages */
@media (min-width:992px){
  .about-hero{padding-top:220px;}
  .about-hero__layout{grid-template-columns:1fr minmax(320px,380px) 1fr;gap:var(--space-5);}
  .about-hero__media{order:0;grid-column:auto;max-width:none;}
  .about-hero__col--left .about-feature{flex-direction:row-reverse;text-align:right;}
  .about-visit__grid{grid-template-columns:1fr 1fr;}
}

/* ==========================================================================
   PAGE FAQ (faq.html)
   Réutilise le style des questions/réponses de la page À propos
   (.about-faq__list / .about-faq__item) pour rester cohérent avec le thème.
   ========================================================================== */
.faq-hero{text-align:center;padding-top:100px;padding-bottom:var(--space-6);}
.faq-hero .section-lede{margin-top:var(--space-3);max-width:700px;margin-inline:auto;}

.faq-groups{max-width:820px;padding-bottom:var(--space-10);}
.faq-group{margin-top:var(--space-8);}
.faq-group:first-child{margin-top:0;}
.faq-group__title{font-size:clamp(1.6rem,3vw,2.2rem);margin-bottom:var(--space-4);text-align:center;}

@media (min-width:992px){
  .faq-hero{padding-top:220px;}
}

/* ==========================================================================
   PAGE RÉSERVATION (reservation.html)
   ========================================================================== */
.reservation-hero{text-align:center;padding-top:100px;padding-bottom:var(--space-6);}
.reservation-hero .section-lede{margin-top:var(--space-3);max-width:820px;margin-inline:auto;}

.reservation-card{
  max-width:1250px;margin-inline:auto;text-align:center;
}
.reservation-card__icon svg{width:28px;height:28px;color:var(--color-blanc);}
.reservation-card .section-lede{margin-top:.5rem;margin-bottom:var(--space-5);max-width:600px;margin-inline:auto;}

.reservation-infos{padding-block:var(--space-8) var(--space-10);}
.reservation-infos__grid{
  display:grid;grid-template-columns:1fr;gap:var(--space-4);
  max-width:1250px;margin-inline:auto;
}
.reservation-infos__item{
  background:var(--color-charbon-soft);
  border:1px solid rgba(221,192,160,.12);border-radius:var(--radius-md);
  padding:var(--space-4);text-align:center;
}
.reservation-infos__item h2{
  font-family:var(--font-subtitle);font-weight:700;font-size:1.05rem;
  color:var(--color-orange);margin-bottom:.6rem;
  background:none;-webkit-text-fill-color:currentColor;filter:none;animation:none;
}
.reservation-infos__item p{color:var(--color-acier);line-height:1.6;}
.reservation-infos__item a{color:var(--color-acier);text-decoration:underline;text-underline-offset:3px;}
.reservation-infos__item .btn{margin-top:.9rem;padding:.65rem 1.4rem;font-size:.85rem;}

@media (min-width:768px){
  .reservation-infos__grid{grid-template-columns:repeat(3,1fr);}
}
@media (min-width:992px){
  .reservation-hero{padding-top:220px;}
}

/* ==========================================================================
   PAGE À EMPORTER (emporter.html)
   ========================================================================== */
.emporter-hero{text-align:center;padding-top:100px;padding-bottom:var(--space-6);}
.emporter-hero .section-lede{margin-top:var(--space-3);max-width:1250px;margin-inline:auto;}
@media (min-width:992px){
  .emporter-hero{padding-top:220px;}
}

.menu-section{padding-block:var(--space-6);text-align:center;}
.menu-section .section-lede{margin-top:var(--space-2);margin-bottom:var(--space-4);max-width:1250px;margin-inline:auto;}

.menu-tabs{display:flex;justify-content:center;gap:.75rem;flex-wrap:wrap;margin-bottom:var(--space-2);}
.menu-tab{
  padding:.7rem 1.4rem;border-radius:var(--radius-full);
  border:2px solid var(--color-beige);background:transparent;color:var(--color-beige);
  font-family:inherit;font-weight:700;font-size:.9rem;letter-spacing:.02em;
  cursor:pointer;transition:all .25s ease;
}
.menu-tab:hover{background:rgba(221,192,160,.1);}
.menu-tab.is-active{
  background:var(--gradient-incandescent);border-color:transparent;color:var(--color-blanc);
  box-shadow:0 8px 20px rgba(214,48,0,.35);
}

.emporter-call{padding-block:var(--space-6) var(--space-10);text-align:center;}
.emporter-call p{color:var(--color-acier);margin-bottom:var(--space-3);font-size:1.05rem;}

/* ==========================================================================
   PAGE ERREUR 404 (404.html)
   ========================================================================== */
.error-hero{text-align:center;padding-top:100px;padding-bottom:var(--space-4);}
.error-hero .section-lede{margin-top:var(--space-3);max-width:700px;margin-inline:auto;}
@media (min-width:992px){
  .error-hero{padding-top:220px;}
}
.error-actions{display:flex;gap:var(--space-2);justify-content:center;flex-wrap:wrap;margin-top:var(--space-4);}

.error-game{
  background:var(--color-charbon-soft);
  border:1px solid rgba(221,192,160,.14);
  border-radius:var(--radius-lg);
  padding:var(--space-5);
  max-width:520px;margin-inline:auto var(--space-10);
  text-align:center;
  box-shadow:var(--shadow-card);
}
.error-game h2{
  font-family:var(--font-subtitle);font-weight:700;font-size:1.3rem;
  color:var(--color-orange);margin-bottom:.5rem;
  background:none;-webkit-text-fill-color:currentColor;filter:none;animation:none;
}
.error-game .section-lede{margin-bottom:var(--space-4);font-size:.95rem;max-width:none;}

.error-game__stage{position:relative;width:min(280px,80vw);height:min(280px,80vw);margin-inline:auto;}
.error-game__stage canvas{width:100%;height:100%;display:block;border-radius:50%;}
.error-game__overlay{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.75rem;
  background:rgba(10,10,10,.6);border-radius:50%;transition:opacity .25s ease;
}
.error-game__overlay.is-hidden{display:none;}
.error-game__overlay p{color:var(--color-acier);font-size:.85rem;max-width:70%;}
.error-game__result{color:var(--color-orange);font-weight:700;font-size:1.05rem;}

.error-game__scores{display:flex;justify-content:center;gap:var(--space-4);margin-top:var(--space-3);color:var(--color-acier);font-size:.95rem;}
.error-game__scores strong{color:var(--color-blanc);}

/* --- Bannière "bientôt en ligne" (masquée par défaut ; voir interrupteur en
   fin de fichier pour l'activer) --- */
.prelaunch-banner{
  display:none;
  padding:64px 0 40px;
  text-align:center;
  background:var(--gradient-foyer);
  border-bottom:1px solid rgba(221,192,160,.15);
}
.prelaunch-banner .eyebrow{color:var(--color-orange);}
.prelaunch-banner .section-title{margin-top:.4rem;}
.prelaunch-banner .section-lede{margin-inline:auto;max-width:620px;margin-top:1rem;}
.prelaunch-banner .section-lede strong{color:var(--color-beige);}
.prelaunch-countdown{
  display:flex;justify-content:center;gap:14px;flex-wrap:wrap;
  margin-top:var(--space-5);
}
.prelaunch-countdown__item{
  min-width:76px;
  background:var(--color-charbon-card);
  border:1px solid rgba(221,192,160,.18);
  border-radius:var(--radius-md);
  padding:14px 8px;
}
.prelaunch-countdown__value{
  display:block;font-family:var(--font-subtitle);font-weight:700;
  font-size:2rem;line-height:1;color:var(--color-orange);
  font-variant-numeric:tabular-nums;
}
.prelaunch-countdown__label{
  display:block;margin-top:6px;font-size:.7rem;letter-spacing:.08em;
  text-transform:uppercase;color:var(--color-acier);
}

/* ==========================================================================
   PAGES LÉGALES (mention.html, confidentialite.html, cgv.html)
   Un seul jeu de classes partagé pour ces 3 pages : contenu de texte long,
   sans mise en page spécifique — reste simple, cohérent avec le thème.
   ========================================================================== */
.legal-hero{text-align:center;padding-top:100px;padding-bottom:var(--space-6);}
.legal-hero .section-lede{margin-top:var(--space-3);max-width:680px;margin-inline:auto;}

.legal-content{max-width:780px;padding-bottom:var(--space-10);}
.legal-content h2{
  font-size:clamp(1.3rem,2.4vw,1.7rem);margin-top:var(--space-6);margin-bottom:var(--space-2);
  color:var(--color-orange);
  background:none;-webkit-text-fill-color:currentColor;filter:none;animation:none;padding:0;
}
.legal-content h2:first-child{margin-top:0;}
.legal-content p{color:var(--color-acier);line-height:1.7;margin-bottom:var(--space-3);}
.legal-content ul{margin:0 0 var(--space-3) 1.2rem;color:var(--color-acier);line-height:1.7;}
.legal-content li{margin-bottom:.4rem;}
.legal-content strong{color:var(--color-beige);}
.legal-content a{color:var(--color-orange);text-decoration:underline;text-underline-offset:3px;}
.legal-updated{margin-top:var(--space-6);font-size:.85rem;font-style:italic;color:rgba(229,229,229,.5);}

@media (min-width:992px){
  .legal-hero{padding-top:220px;}
}

/* ==========================================================================
   PAGE LINKTREE / CARTE DIGITALE (linktree.html)
   ========================================================================== */
.linktree-page{
  background:#1a0700;
  background-image:radial-gradient(130% 90% at 50% -8%, #ffb24d 0%, #ff7a00 22%, #d63000 46%, #7a1600 72%, #1a0700 100%);
  background-attachment:fixed;
  min-height:100vh;
}
.linktree{
  max-width:460px;margin-inline:auto;min-height:100vh;
  display:flex;flex-direction:column;align-items:center;gap:22px;
  padding:42px 22px 52px;text-align:center;
}
/* Bouton de partage intelligent (Web Share API), fixé en haut à droite */
.lt-share{
  position:fixed;top:16px;right:16px;z-index:50;
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,.28);border:1.5px solid rgba(255,255,255,.55);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  cursor:pointer;transition:transform .2s ease, background .2s ease;
}
.lt-share:hover,.lt-share:focus-visible{background:rgba(0,0,0,.42);transform:translateY(-2px);}
.lt-share img{width:20px;height:20px;filter:invert(1) brightness(2);}
.lt-share__toast{
  position:fixed;top:64px;right:16px;z-index:50;
  background:rgba(0,0,0,.75);color:#fff;font-size:.8rem;font-weight:600;
  padding:.5rem .85rem;border-radius:var(--radius-full);
  opacity:0;transform:translateY(-6px);pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.lt-share__toast.is-visible{opacity:1;transform:translateY(0);}

.lt-logo{width:min(275px,70%);height:auto;filter:drop-shadow(0 10px 24px rgba(0,0,0,.45));}
.lt-desc{color:rgba(255,255,255,.95);font-size:1.02rem;max-width:340px;}

/* 2 boutons sur la même ligne */
.lt-actions{display:flex;gap:12px;width:100%;}
.lt-btn{
  flex:1;display:inline-flex;align-items:center;justify-content:center;
  padding:.85rem 1rem;border-radius:var(--radius-full);
  font-weight:700;font-size:.90rem;text-align:center;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.lt-btn--primary{background:#fff;color:var(--color-braise);box-shadow:0 8px 22px rgba(0,0,0,.28);}
.lt-btn--primary:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.36);}
.lt-btn--ghost{background:rgba(0,0,0,.22);color:#fff;border:1.5px solid rgba(255,255,255,.6);}
.lt-btn--ghost:hover{background:rgba(0,0,0,.36);transform:translateY(-2px);}

/* Séparateur */
.lt-sep{width:100%;height:1px;border:0;margin:2px 0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);}

/* 6 tuiles style « app Apple » */
.lt-apps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px 16px;width:75%;}
.app-icon{display:flex;flex-direction:column;align-items:center;gap:8px;text-decoration:none;}
.app-icon > svg{
  width:100%;aspect-ratio:1;padding:23%;
  border-radius:26%;
  box-shadow:
    /* profondeur externe (conservée) */
    0 8px 20px rgba(0,0,0,.42),
    /* lumière chaude interne (haut-gauche) */
    inset 3px 3px 8px rgba(255,236,214,.32),
    inset 1px 1px 3px rgba(255,255,255,.40),
    /* ombre interne douce, teinte orange brûlé (bas-droite) */
    inset -4px -4px 10px rgba(92,32,4,.30),
    inset -1px -1px 3px rgba(60,20,0,.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.app-icon:hover > svg,.app-icon:focus-visible > svg{
  transform:translateY(-4px) scale(1.05);
  box-shadow:
    0 14px 30px rgba(0,0,0,.5),
    inset 3px 3px 8px rgba(255,236,214,.34),
    inset 1px 1px 3px rgba(255,255,255,.42),
    inset -4px -4px 10px rgba(92,32,4,.30),
    inset -1px -1px 3px rgba(60,20,0,.22);
}
.app-icon__label{font-size:.72rem;font-weight:600;color:rgba(255,255,255,.95);}
.app-icon--instagram > svg{background:linear-gradient(45deg,#feda75,#fa7e1e 24%,#d62976 55%,#962fbf 80%,#4f5bd5);}
.app-icon--facebook  > svg{background:linear-gradient(160deg,#2a8bff,#1877f2 55%,#0a5bd0);}
.app-icon--tiktok    > svg{background:linear-gradient(160deg,#2c2c2c,#000);}
.app-icon--web       > svg{background:var(--gradient-incandescent);}
.app-icon--reserve   > svg{background:linear-gradient(160deg,#ffb347,#ff7a00);}
.app-icon--order     > svg{background:linear-gradient(160deg,#ff6a3d,#c41f00);}

/* Prochains événements */
.lt-events{width:100%;}
.lt-events__title{
  font-family:var(--font-body);font-weight:700;
  font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(255,255,255,.9);
  background:none;-webkit-text-fill-color:currentColor;filter:none;animation:none;padding:0;
  text-align:center;margin-bottom:12px;
}
#ltEvents{display:flex;flex-direction:column;gap:10px;}
.lt-event{
  display:flex;align-items:center;gap:12px;
  padding:12px 14px;border-radius:16px;
  background:rgba(8,5,3,.42);border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(4px);text-decoration:none;
  transition:transform .2s ease, background .2s ease;
}
.lt-event:hover{transform:translateY(-2px);background:rgba(8,5,3,.62);}
.lt-event__date{
  flex:none;min-width:58px;text-align:center;line-height:1.15;
  font-weight:700;font-size:.72rem;color:#fff;
  background:var(--gradient-incandescent);padding:.4rem .5rem;border-radius:10px;
}
.lt-event__body{display:flex;flex-direction:column;gap:2px;flex:1;text-align:left;}
.lt-event__title{color:#fff;font-weight:700;font-size:.92rem;}
.lt-event__meta{color:rgba(255,255,255,.72);font-size:.72rem;}
.lt-event__chevron{color:rgba(255,255,255,.6);font-size:1.5rem;line-height:1;flex:none;}
/* État vide : plus discret et visuellement distinct de la description au-dessus */
.lt-events__empty{
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  padding:18px 14px;
  border:1px dashed rgba(255,255,255,.25);border-radius:16px;
  background:rgba(8,5,3,.28);
  color:rgba(255,255,255,.55);font-style:italic;font-size:.85rem;
}
.lt-events__empty svg{width:22px;height:22px;opacity:.55;}

/* Adresse & contact */
.lt-contact{font-style:normal;display:flex;flex-direction:column;gap:6px;font-size:.9rem;color:rgba(255,255,255,.9);}
.lt-contact__name{font-family:var(--font-subtitle);font-weight:700;font-size:1.05rem;color:#fff;}
.lt-contact__row{color:rgba(255,255,255,.85);text-decoration:none;line-height:1.45;}
.lt-contact__row:hover{color:#fff;text-decoration:underline;}

/* ============================================================================
   INTERRUPTEUR — MODE "BIENTÔT EN LIGNE" (site en pré-lancement)
   ============================================================================
   Tant que ce bloc est actif :
     - le header et le footer sont masqués sur TOUTES les pages du site
     - la bannière + compte à rebours de reservation.html s'affichent
   Seule reservation.html est donc visible/exploitable publiquement ; les
   autres pages restent en place (rien n'est supprimé) mais sans navigation.

   → POUR REPASSER LE SITE EN LIGNE NORMALEMENT LE 23/07/2026 :
     supprimez ce bloc (ou commentez-le avec /* ... *­/ ) et rechargez le site.
     Header, footer et navigation réapparaissent aussitôt sur toutes les pages,
     et la bannière de reservation.html disparaît automatiquement.
   ============================================================================ */
.site-header,.site-footer{display:none;}
.prelaunch-banner{display:block;}
.reservation-hero{padding-top:56px;}
