
    :root {
      --rouge:      #C62828;
      --rouge-vif:  #EF5350;
      --jaune:      #FDD835;
      --jaune-clair:#FFF9C4;
      --vert:       #2E7D32;
      --vert-vif:   #43A047;
      --noir:       #0d0d0d;
      --noir-card:  #161616;
      --noir-card2: #1e1e1e;
      --blanc:      #FFFDF7;
      --gris:       #F4EFE6;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Nunito', sans-serif;
      background: var(--noir);
      color: #fff;
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(13,13,13,0.97);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6%; height: 72px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.6);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--jaune); }
    .nav-logo-name { font-family: 'Fredoka One', cursive; font-size: 1.35rem; color: var(--jaune); }
    .nav-logo-sub  { font-size: 0.64rem; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.2px; }
    .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
    .nav-links a { color: rgba(255,255,255,.65); text-decoration: none; font-weight: 700; font-size: .84rem; text-transform: uppercase; letter-spacing: .5px; transition: color .2s; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--jaune); border-radius: 1px; transition: width .25s; }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }
    .nav-tel { display: flex; align-items: center; gap: 7px; color: #fff; text-decoration: none; font-weight: 800; font-size: .88rem; background: var(--rouge); padding: 8px 18px; border-radius: 30px; transition: background .2s; white-space: nowrap; }
    .nav-tel:hover { background: var(--rouge-vif); }
    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .burger span { display: block; width: 25px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

    /* ── HERO ── */
    #accueil {
      min-height: calc(100vh - 72px);
      background: var(--noir);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 80px 6%;
      position: relative; overflow: hidden;
    }
    #accueil::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 50% at 15% 50%, rgba(46,125,50,.18) 0%, transparent 70%),
        radial-gradient(ellipse 55% 50% at 85% 50%, rgba(198,40,40,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 10%, rgba(253,216,53,.06) 0%, transparent 65%);
    }
    #accueil::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px; background: linear-gradient(90deg, var(--rouge) 33%, var(--jaune) 33% 66%, var(--vert) 66%);
    }
    .hero-pretitle { font-size: .72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(253,216,53,.7); margin-bottom: 28px; animation: aUp .6s ease both; position: relative; z-index: 2; }
    .hero-logo-container { position: relative; margin-bottom: 30px; z-index: 2; animation: aUp .7s ease .1s both; }
    .hero-logo { width: 175px; height: 175px; border-radius: 50%; object-fit: cover; border: 4px solid var(--jaune); box-shadow: 0 0 0 10px rgba(253,216,53,.07), 0 20px 60px rgba(0,0,0,.5); animation: breathe 5s ease-in-out infinite; }
    .hero-chip { position: absolute; z-index: 3; background: rgba(20,20,20,.92); border: 1.5px solid; border-radius: 12px; padding: 7px 12px; display: flex; flex-direction: column; line-height: 1.3; box-shadow: 0 4px 18px rgba(0,0,0,.4); text-align: left; white-space: nowrap; }
    .hero-chip.c1 { border-color: var(--jaune); top: 8%; right: -72px; animation: chipFloat 3.2s ease-in-out infinite; }
    .hero-chip.c2 { border-color: var(--vert-vif); bottom: 8%; left: -72px; animation: chipFloat 3.8s ease-in-out .6s infinite; }
    .hero-chip strong { font-size: .72rem; color: #fff; font-weight: 800; }
    .hero-chip span   { font-size: .6rem; color: rgba(255,255,255,.4); }
    .hero-title { font-family: 'Fredoka One', cursive; font-size: clamp(3.5rem, 7vw, 6rem); line-height: 1; margin-bottom: 14px; animation: aUp .7s ease .2s both; position: relative; z-index: 2; }
    .t-rouge { color: var(--rouge-vif); }
    .t-jaune { color: var(--jaune); }
    .t-vert  { color: var(--vert-vif); }
    .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.55); font-weight: 600; line-height: 1.7; max-width: 480px; margin-bottom: 36px; animation: aUp .7s ease .3s both; position: relative; z-index: 2; }
    .hero-sub strong { color: rgba(255,255,255,.85); font-weight: 800; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px; animation: aUp .7s ease .4s both; position: relative; z-index: 2; }

    /* ── BOUTONS ── */
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 50px; font-weight: 800; font-size: .93rem; text-decoration: none; font-family: 'Nunito', sans-serif; border: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .2s; white-space: nowrap; }
    .btn:hover { transform: translateY(-2px); }
    .btn-rouge { background: var(--rouge); color: #fff; box-shadow: 0 4px 20px rgba(198,40,40,.4); }
    .btn-rouge:hover { background: var(--rouge-vif); box-shadow: 0 8px 28px rgba(198,40,40,.55); }
    .btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.2); }
    .btn-ghost:hover { border-color: var(--jaune); color: var(--jaune); }
    .btn-vert { background: var(--vert); color: #fff; }
    .btn-vert:hover { background: var(--vert-vif); }
    .btn-outline-rouge { background: transparent; color: var(--rouge); border: 2px solid var(--rouge); }
    .btn-outline-rouge:hover { background: var(--rouge); color: #fff; }

    .hero-pillars { display: flex; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 28px rgba(0,0,0,.5); animation: aUp .7s ease .5s both; position: relative; z-index: 2; }
    .hero-pillar { padding: 18px 36px; text-align: center; min-width: 140px; }
    .hero-pillar:nth-child(1) { background: var(--rouge); }
    .hero-pillar:nth-child(2) { background: var(--jaune); }
    .hero-pillar:nth-child(3) { background: var(--vert); }
    .hstat-num { font-family: 'Fredoka One', cursive; font-size: 1.8rem; line-height: 1; }
    .hero-pillar:nth-child(1) .hstat-num, .hero-pillar:nth-child(3) .hstat-num { color: #fff; }
    .hero-pillar:nth-child(2) .hstat-num { color: var(--noir); }
    .hero-pillar-lbl { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }
    .hero-pillar:nth-child(1) .hero-pillar-lbl, .hero-pillar:nth-child(3) .hero-pillar-lbl { color: rgba(255,255,255,.8); }
    .hero-pillar:nth-child(2) .hero-pillar-lbl { color: rgba(0,0,0,.6); }

    @keyframes breathe   { 0%,100%{transform:scale(1)} 50%{transform:scale(1.025)} }
    @keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    @keyframes aUp       { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

    /* ── SECTIONS ── */
    section { padding: 88px 6%; }
    .sec-header { text-align: center; margin-bottom: 56px; }
    .sec-tag { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--jaune); margin-bottom: 10px; }
    .sec-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1.15; }
    .sec-title .ac { color: var(--vert-vif); }
    .sec-title .aj { color: var(--jaune); }
    .sec-title .ar { color: var(--rouge-vif); }
    .sec-divider { width: 52px; height: 4px; border-radius: 2px; margin: 14px auto 0; background: linear-gradient(90deg, var(--rouge), var(--jaune), var(--vert)); }

    /* ── CTA BAND ── */
    .cta-band { padding: 32px 6%; text-align: center; }
    .cta-band p { font-size: 1.05rem; color: rgba(255,255,255,.9); font-weight: 700; margin-bottom: 18px; }
    .cta-band p strong { color: #fff; font-size: 1.2rem; white-space: nowrap; display: inline-block; }

    /* ── HISTOIRE ── */
    #histoire { background: var(--noir); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
    .histoire-layout { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2px 1fr; gap: 0 48px; align-items: start; }
    .histoire-sep { background: linear-gradient(to bottom, transparent, var(--jaune), transparent); height: 100%; min-height: 200px; }
    .histoire-block { padding: 8px 0; }
    .histoire-block h3 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: var(--jaune); margin-bottom: 14px; }
    .histoire-block p { font-size: 1rem; color: rgba(255,255,255,.55); font-weight: 600; line-height: 1.8; }
    .histoire-block p strong { color: rgba(255,255,255,.9); }
    .histoire-callout { max-width: 640px; margin: 52px auto 0; background: rgba(253,216,53,.07); border: 1px solid rgba(253,216,53,.2); border-radius: 16px; padding: 28px 32px; text-align: center; }
    .histoire-callout p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.25rem; color: rgba(255,255,255,.8); line-height: 1.7; }
    .histoire-callout p strong { color: var(--jaune); font-style: normal; }

    /* ── CARTE PDF — fixe, non déplaçable sur tous les appareils ── */
    #carte { background: var(--noir); border-top: 1px solid rgba(255,255,255,.06); }
    .pdf-outer { max-width: 820px; margin: 0 auto; }
    .pdf-card { background: var(--noir-card); border-radius: 20px; overflow: hidden; box-shadow: 0 6px 40px rgba(0,0,0,.4); border: 2px solid rgba(253,216,53,.3); }
    .pdf-toolbar { background: #111; padding: 16px 26px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.07); }
    .pdf-toolbar-title { font-family: 'Fredoka One', cursive; color: var(--jaune); font-size: 1.1rem; }
    .pdf-dl { display: inline-flex; align-items: center; gap: 6px; background: var(--rouge); color: #fff; padding: 8px 20px; border-radius: 30px; font-weight: 800; font-size: .84rem; text-decoration: none; transition: background .2s; }
    .pdf-dl:hover { background: var(--rouge-vif); }
    /* Carte menu — image complète */
    .pdf-viewer-img { width: 100%; display: block; }
    .pdf-viewer-img img { width: 100%; display: block; border-radius: 0 0 6px 6px; }
    .pdf-fallback { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 40px; text-align: center; }
    .pdf-fallback p { color: rgba(255,255,255,.4); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
    .pdf-cta { background: #111; padding: 18px 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,.07); }
    .pdf-cta p { color: rgba(255,255,255,.5); font-size: .88rem; font-weight: 600; }
    .pdf-cta p strong { color: #fff; }

    /* ── BOISSONS LOCALES ── */
    #boissons {
      background: var(--noir);
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      position: relative; overflow: hidden;
    }
    #boissons::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 60% 60% at 50% 0%, rgba(253,216,53,.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(46,125,50,.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 90% 80%, rgba(198,40,40,.07) 0%, transparent 60%);
    }
    .boissons-hero { max-width: 820px; margin: 0 auto 56px; text-align: center; position: relative; z-index: 2; }
    .boissons-hero .no-indus { display: inline-flex; align-items: center; gap: 6px; background: rgba(239,83,80,.1); border: 1.5px solid rgba(239,83,80,.35); border-radius: 50px; padding: 8px 20px; font-size: .82rem; font-weight: 800; color: var(--rouge-vif); letter-spacing: .5px; margin-bottom: 24px; }
    .boissons-hero .no-indus .strike { text-decoration: line-through; opacity: .6; }
    .boissons-hero p { font-size: 1.05rem; color: rgba(255,255,255,.55); font-weight: 600; line-height: 1.8; max-width: 560px; margin: 16px auto 0; }
    .boissons-hero p strong { color: rgba(255,255,255,.9); }

    /* ── BOISSONS : fenêtre unique ── */
    .boissons-grid {
      max-width: 820px; margin: 0 auto;
      position: relative; z-index: 2;
    }
    .bcard-unique {
      background: var(--noir-card);
      border-radius: 22px;
      border: 1.5px solid rgba(253,216,53,.2);
      overflow: hidden;
      box-shadow: 0 6px 40px rgba(0,0,0,.4);
      position: relative;
    }
    .bcard-unique::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--rouge), var(--jaune), var(--vert));
    }
    /* Rangée de catégories */
    .bcard-cats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      align-items: stretch;
    }
    .bcat {
      padding: 28px 24px 24px;
      display: flex; flex-direction: column; align-items: center; text-align: center;
      gap: 8px;
      border-right: 1px solid rgba(255,255,255,.07);
    }
    .bcat:last-child { border-right: none; }
    .bcat-icon {
      margin-bottom: 4px;
      display: flex; align-items: center; justify-content: center;
    }
    .bcat-icon-badge {
      width: 68px; height: 68px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      background: rgba(255,255,255,0.06);
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .bcat-icon-badge:hover {
      transform: scale(1.08);
    }
    .bcat-icon-badge svg {
      display: block;
    }
    .bcat-icon-badge img {
      width: 60px; height: 60px;
      object-fit: contain;
      border-radius: 0;
      display: block;
    }
    /* Fond blanc uniforme pour tous les logos boissons */
    .bcat.c-limo .bcat-icon-badge,
    .bcat.c-infus .bcat-icon-badge,
    .bcat.c-biere .bcat-icon-badge {
      background: #ffffff;
      border: 2px solid rgba(255,255,255,.15);
      box-shadow: 0 4px 18px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.8);
    }
    .bcat-count { font-family: 'Fredoka One', cursive; font-size: 2.4rem; line-height: 1; }
    .bcat.c-biere .bcat-count { font-size: 2.8rem; }
    .bcat-bieres-label { font-family: 'Nunito', sans-serif; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.55); margin-top: 2px; margin-bottom: 4px; }
    .bcat.c-limo  .bcat-count { color: var(--vert-vif); }
    .bcat.c-infus .bcat-count { color: var(--rouge-vif); }
    .bcat.c-biere .bcat-count { color: var(--jaune); }
    .bcat-name { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.55); }
    /* Description globale */
    .bcard-unique-body {
      padding: 28px 32px 32px;
    }
    .bcard-unique-body p { font-size: .93rem; color: rgba(255,255,255,.5); font-weight: 600; line-height: 1.8; }
    .bcard-unique-body p strong { color: rgba(255,255,255,.85); }

    /* Tags bières (conservé pour compatibilité) */
    .bcard-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }

    .btag { font-size: .73rem; font-weight: 800; padding: 5px 13px; border-radius: 20px; letter-spacing: .4px; background: rgba(253,216,53,.1); color: var(--jaune); border: 1px solid rgba(253,216,53,.18); }



    .boissons-banner {
      max-width: 820px; margin: 28px auto 0;
      background: rgba(253,216,53,.05);
      border: 1.5px solid rgba(253,216,53,.15);
      border-radius: 18px; padding: 20px 30px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 14px; text-align: center;
      position: relative; z-index: 2;
    }
    .boissons-banner p { font-size: .93rem; color: rgba(255,255,255,.65); font-weight: 700; }
    .boissons-banner p strong { color: var(--jaune); }
    .boissons-banner .bb-badge { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
    .bb-pill { font-size: .7rem; font-weight: 800; padding: 5px 13px; border-radius: 20px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.09); white-space: nowrap; }

    /* ── ÉQUIPE ── */
    #equipe { background: var(--noir); border-top: 1px solid rgba(255,255,255,.06); }
    .equipe-wrap { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
    .equipe-stack { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
    .ecard { border-radius: 20px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.4); border: 4px solid #222; }
    .ecard.sec { width: 100%; height: 100%; background: #151515; border-color: var(--jaune); position: relative; }
    .ecard.sec img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ebadge { position: absolute; top: 12px; right: 12px; background: var(--jaune); color: var(--noir); font-family: 'Fredoka One', cursive; font-size: .88rem; padding: 5px 14px; border-radius: 30px; z-index: 4; box-shadow: 0 4px 12px rgba(0,0,0,.3); }

    .equipe-text h3 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 2.1rem; color: #fff; line-height: 1.15; margin-bottom: 14px; }
    .equipe-text h3 em { font-style: italic; color: var(--vert-vif); }
    .equipe-text .equipe-desc { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 28px; }
    .eval-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
    .eval { display: flex; align-items: center; gap: 13px; background: var(--noir-card); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 12px 15px; font-weight: 700; font-size: .9rem; color: #fff; }
    .eval-ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

    /* ── GALERIE CAROUSEL ── */
    #galerie { background: var(--noir); padding-bottom: 96px; border-top: 1px solid rgba(255,255,255,.06); }
    .galerie-carousel-wrap {
      max-width: 1600px;
      margin: 0 auto;
      position: relative;
    }
    /* Track */
    .gc-track {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 6px 2px 12px;
    }
    .gc-track::-webkit-scrollbar { display: none; }

    /* Slide standard */
    .gc-item {
      flex: 0 0 calc(33.333% - 10px);
      scroll-snap-align: start;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--noir-card);
      border: 1px solid rgba(255,255,255,.07);
      cursor: pointer;
      position: relative;
      transition: transform .3s, box-shadow .3s;
    }
    /* Slide portrait — It's Pizza Time */
    .gc-item.gc-item--portrait {
      aspect-ratio: 3 / 4;
      flex: 0 0 calc(25% - 10px);
    }
    .gc-item:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,.75); }

    /* Image par défaut */
    .gc-item img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      object-position: center center;
      transition: transform .45s ease;
    }
    /* It's Pizza Time — portrait, on voit toute la photo */
    .gc-item[data-type="pizza-time"] img {
      object-fit: cover;
      object-position: center center;
    }
    /* Pizzas classiques */
    .gc-item[data-type="pizza"] img {
      object-fit: cover;
      object-position: center 30%;
    }
    /* Four artisanal — décalé à gauche pour voir AMIGO PIZZ */
    .gc-item[data-type="four"] {
      background: none;
    }
    .gc-item[data-type="four"] img {
      object-fit: cover;
      object-position: left center;
    }

    /* Bières & boissons : format carré pour les photos portrait */
    .gc-item[data-type="biere"] {
      background: #0e0e0e;
      aspect-ratio: 1 / 1;
    }
    .gc-item[data-type="biere"] img {
      object-fit: cover;
      object-position: center 40%;
      padding: 0;
    }
    .gc-item:hover img { transform: scale(1.05); }
    .gc-item[data-type="biere"]:hover img { transform: scale(1.03); }
    /* Placeholder ghost */
    .gc-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; padding: 24px;
    }
    .gc-ph-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    }
    .gc-ph span { font-size: .68rem; color: rgba(255,255,255,.18); font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; text-align: center; }
    /* Nav arrows */
    .gc-arrow {
      position: absolute; top: 50%; transform: translateY(calc(-50% - 14px));
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(13,13,13,.88); border: 1.5px solid rgba(255,255,255,.14);
      color: #fff; font-size: 1.25rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      z-index: 10; backdrop-filter: blur(6px);
      transition: background .2s, transform .2s, opacity .2s;
    }
    .gc-arrow:hover { background: var(--rouge); transform: translateY(calc(-50% - 14px)) scale(1.06); }
    .gc-arrow:disabled { opacity: 0.25; pointer-events: none; }
    .gc-prev { left: -22px; }
    .gc-next { right: -22px; }
    /* Dots */
    .gc-nav {
      display: flex; justify-content: center; align-items: center; gap: 9px;
      margin-top: 28px;
    }
    .gc-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,.18); border: none; cursor: pointer;
      padding: 0; transition: background .2s, transform .25s, width .25s;
    }
    .gc-dot.active { background: var(--jaune); transform: scale(1.35); width: 20px; border-radius: 4px; }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 999;
      background: rgba(0,0,0,.92);
      backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 92vw; max-height: 88vh;
      border-radius: 14px;
      box-shadow: 0 24px 80px rgba(0,0,0,.7);
      object-fit: contain;
      animation: lbIn .22s ease;
    }
    @keyframes lbIn { from { opacity:0; transform:scale(.94) } to { opacity:1; transform:none } }
    .lb-close {
      position: absolute; top: 20px; right: 24px;
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
      color: #fff; font-size: 1.3rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .lb-close:hover { background: var(--rouge); }
    .lb-caption {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      background: rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.1);
      border-radius: 30px; padding: 8px 20px;
      font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.75);
      white-space: nowrap; pointer-events: none;
    }

    /* ── CONTACT ── */
    #contact { background: var(--noir); border-top: 1px solid rgba(255,255,255,.06); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 980px; margin: 0 auto; align-items: start; }
    .ccard { background: var(--noir-card); border-radius: 22px; padding: 34px; box-shadow: 0 4px 26px rgba(0,0,0,.25); position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.07); }
    .ccard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
    .ccard.ch::before { background: linear-gradient(90deg, var(--rouge), var(--jaune)); }
    .ccard.cc::before { background: linear-gradient(90deg, var(--vert), var(--jaune)); }
    .ccard h3 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.55rem; margin-bottom: 22px; color: #fff; }

    .hor-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
    .hor-table tr { border-bottom: 1px solid rgba(255,255,255,.07); }
    .hor-table tr:last-child { border-bottom: none; }
    .hor-table td { padding: 13px 4px; font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.55); }
    .hor-table td:first-child { font-weight: 700; color: rgba(255,255,255,.85); }
    .hor-table td:last-child { text-align: right; color: var(--vert-vif); font-weight: 700; }
    .hor-table tr.ferme td:last-child { color: var(--rouge-vif); }
    .hor-table tr.today { background: rgba(253,216,53,.07); border-radius: 8px; }
    .hor-table tr.today td:first-child::after { content: ' ◀'; color: var(--jaune); font-size: .65rem; }

    .hor-note { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 14px 16px; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 20px; }
    .hor-note strong { color: rgba(255,255,255,.75); font-weight: 800; }

    .contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 22px; }
    .cinfo { display: flex; align-items: flex-start; gap: 14px; }
    .cico { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .cico.r { background: rgba(198,40,40,.15); }
    .cico.v { background: rgba(46,125,50,.15); }
    .cico.j { background: rgba(253,216,53,.15); }
    .cinfo-txt strong { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.3); margin-bottom: 2px; }
    .cinfo-txt span { font-size: .96rem; font-weight: 700; color: rgba(255,255,255,.85); }
    .cinfo-txt a { color: var(--rouge-vif); text-decoration: none; font-weight: 700; font-size: .96rem; white-space: nowrap; }
    .cinfo-txt a:hover { text-decoration: underline; }
    .map-wrap { border-radius: 13px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
    .map-wrap iframe { display: block; width: 100%; height: 250px; border: none; filter: grayscale(20%) brightness(0.88); }
    .map-open-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 12px; width: 100%;
      background: var(--vert); color: #fff;
      padding: 12px 20px; border-radius: 12px;
      font-weight: 800; font-size: .9rem; text-decoration: none;
      transition: background .2s, transform .15s;
      white-space: nowrap;
    }
    .map-open-btn:hover { background: var(--vert-vif); transform: translateY(-1px); }
    .map-open-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

    /* ── FOOTER ── */
    footer { background: #0a0a0a; padding: 48px 6% 28px; border-top: 1px solid rgba(255,255,255,.06); }
    .foot-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .foot-brand-name { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: var(--jaune); }
    .foot-brand-loc  { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 3px; }
    .foot-flag { display: flex; height: 5px; width: 48px; border-radius: 3px; overflow: hidden; margin-top: 12px; }
    .foot-flag span { flex: 1; }
    .foot-flag span:nth-child(1) { background: var(--rouge); }
    .foot-flag span:nth-child(2) { background: var(--jaune); }
    .foot-flag span:nth-child(3) { background: var(--vert); }
    .foot-links-col h4, .foot-social-col h4 { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.25); margin-bottom: 16px; }
    .foot-social-col h4 { text-align: right; }
    .foot-nav-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
    .foot-nav-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .88rem; font-weight: 700; transition: color .2s; }
    .foot-nav-links a:hover { color: var(--jaune); }
    .foot-social-links { display: flex; gap: 12px; justify-content: flex-end; }
    .foot-social-link { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s; }
    .foot-social-link:hover { background: rgba(255,255,255,.13); }
    .foot-social-link svg { width: 20px; height: 20px; fill: rgba(255,255,255,.6); }
    .foot-social-link:hover svg { fill: #fff; }
    .foot-tel-footer { display: block; text-align: right; margin-top: 14px; font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--rouge-vif); text-decoration: none; transition: color .2s; white-space: nowrap; }
    .foot-tel-footer:hover { color: var(--rouge); }
    .foot-bottom {
      max-width: 980px;
      margin: 28px auto 0;
      padding-top: 24px;
      text-align: center;
      font-size: .75rem;
      color: rgba(255,255,255,.15);
      font-weight: 600;
      letter-spacing: .3px;
    }

    /* ── NLY Création credit ── */
    a.nly-credit,
    a.nly-credit:link,
    a.nly-credit:visited,
    a.nly-credit:hover,
    a.nly-credit:active {
      color: rgba(255,255,255,.4) !important;
      text-decoration: none !important;
    }
    .nly-credit {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      padding: 8px 20px 8px 8px;
      border-radius: 40px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.025);
      transition: border-color .3s, background .3s, box-shadow .3s;
    }
    .nly-credit:hover {
      border-color: rgba(255,255,255,.15);
      background: rgba(255,255,255,.05);
      box-shadow: 0 4px 24px rgba(0,0,0,.3);
    }
    .nly-credit-logo {
      width: 28px; height: 28px;
      border-radius: 50%;
      object-fit: cover;
      border: 1.5px solid rgba(255,255,255,.1);
      flex-shrink: 0;
      display: block;
    }
    .nly-credit-label {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,.22) !important;
      transition: color .3s;
    }
    .nly-credit-sep {
      width: 1px; height: 12px;
      background: rgba(255,255,255,.08);
      flex-shrink: 0;
    }
    .nly-credit-name {
      font-family: 'Nunito', sans-serif;
      font-style: normal;
      font-size: .82rem;
      font-weight: 700;
      color: rgba(255,255,255,.42) !important;
      letter-spacing: .5px;
    }
    .nly-glasses {
      font-size: .78rem;
      filter: grayscale(1);
      opacity: .4;
      margin-left: 2px;
    }
    .nly-credit:hover .nly-credit-label { color: rgba(255,255,255,.38) !important; }
    .nly-credit:hover .nly-credit-name  { color: rgba(255,255,255,.72) !important; }

    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-chip { display: none; }
      .hero-pillars { flex-direction: column; border-radius: 14px; max-width: 300px; }
      .hero-pillar { display: flex; align-items: center; gap: 16px; text-align: left; padding: 14px 20px; }
      .hstat-num { font-size: 1.5rem; }
      .hero-pillar-lbl { margin-top: 0; }
      .histoire-layout { grid-template-columns: 1fr; }
      .histoire-sep { display: none; }
      .equipe-wrap { grid-template-columns: 1fr; }
      .equipe-stack { height: 300px; max-width: 480px; margin: 0 auto; }
      .ecard.sec { width: 100% !important; height: 100% !important; }
      .ebadge { top: 10px; right: 10px; }
      .contact-grid { grid-template-columns: 1fr; }
      .gc-item { flex: 0 0 calc(55% - 7px); }
      .gc-arrow { display: none; }
      .foot-inner { grid-template-columns: 1fr; gap: 24px; }
      .foot-social-col h4, .foot-tel-footer { text-align: left; }
      .foot-social-links { justify-content: flex-start; }

      .cta-band { padding: 24px 5%; }
      .cta-band p { font-size: .95rem; }
      .bcard-cats { grid-template-columns: 1fr; }
      .bcat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07); }
      .bcat:last-child { border-bottom: none; }
      .boissons-banner { flex-direction: column; align-items: flex-start; }

    }
    @media (max-width: 768px) {
      .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(13,13,13,0.98); padding: 20px 6% 28px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.5); border-bottom: 1px solid rgba(255,255,255,.07); }
      .nav-links.open { display: flex; }
      .burger { display: flex; }
      .nav-tel { display: none; }

    }
    @media (max-width: 500px) {
      .gc-item { flex: 0 0 calc(82% - 7px); }

    }

    /* Logos côte à côte dans le bloc Brasseries locales (2 ou 3 logos) */
    .bcat-dual-logos {
      display: flex;
      gap: 7px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    .bcat-dual-logos .bcat-icon-badge {
      width: 48px;
      height: 48px;
    }
    .bcat-dual-logos .bcat-icon-badge img {
      width: 40px;
      height: 40px;
    }