/* ============================================================
   KEBAB HOUSE · style.css — Édition Prestige
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --gold:       #FFCC00;
  --gold-hi:    #FFD740;
  --gold-dim:   rgba(255,204,0,.22);
  --gold-glow:  rgba(255,204,0,.12);
  --dark:       #060606;
  --dark2:      #0d0d0d;
  --surface:    rgba(255,255,255,.04);
  --border:     rgba(255,255,255,.08);
  --muted:      rgba(255,255,255,.42);
  --r:          14px;
  --r-lg:       22px;
  --ease:       cubic-bezier(.22,1,.36,1);
  --ease-io:    cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}
html,body { scrollbar-width:none; -ms-overflow-style:none; }
body::-webkit-scrollbar { display:none; }
body {
  background: var(--dark);
  color: #efefef;
  font-family: 'Outfit', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
ul  { list-style:none; }
a   { color:inherit; text-decoration:none; }
button { cursor:pointer; font-family:inherit; }

/* ── GLOBAL BG ── */
.bg-layer {
  position: fixed; inset:0; z-index:-2;
  background:
    linear-gradient(rgba(0,0,0,.56),rgba(0,0,0,.9)),
    url('images/fond.png') center/cover no-repeat;
}
.bg-grain {
  position: fixed; inset:0; z-index:-1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity:.45;
}

/* ── UTILITIES ── */
.gold {
  background: linear-gradient(90deg,#FFCC00 0%,#fff5c0 50%,#FFCC00 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 4s linear infinite;
}
@keyframes goldShine { to { background-position:220% center; } }

.section-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2rem,5vw,3.4rem);
  font-weight:900; text-transform:uppercase; letter-spacing:2px;
  text-align:center; margin-bottom:6px;
}
.section-sub {
  text-align:center; color:var(--muted);
  font-size:.78rem; letter-spacing:3px;
  text-transform:uppercase; margin-bottom:36px;
}
.section-head { margin-bottom:0; }

.reveal {
  opacity:0; transform:translateY(26px); filter:blur(5px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease),
    filter .8s var(--ease);
}
.reveal.on { opacity:1; transform:none; filter:none; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position:fixed; inset:0; z-index:9999;
  background:var(--dark);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .65s var(--ease), visibility .65s;
}
.loader.out { opacity:0; visibility:hidden; pointer-events:none; }
.loader-inner {
  display:flex; flex-direction:column;
  align-items:center; gap:18px; text-align:center;
}
.loader-emblem {
  position:relative; width:80px; height:80px;
  display:flex; align-items:center; justify-content:center;
}
.loader-emblem img {
  height:58px;
  animation:logoBreath 1.5s ease-in-out infinite;
  filter:drop-shadow(0 0 22px rgba(255,204,0,.45));
}
@keyframes logoBreath {
  0%,100% { transform:scale(1);   opacity:1; }
  50%      { transform:scale(1.08); opacity:.85; }
}
.loader-ring {
  position:absolute; inset:0; border-radius:50%;
  border:1.5px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(255,204,0,.25);
  animation:spin 1.2s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
.loader-name {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:2rem; font-weight:900; letter-spacing:8px;
  color:#fff; text-transform:uppercase;
}
.loader-name span { color:var(--gold); }
.loader-track {
  width:160px; height:2px;
  background:rgba(255,255,255,.08); border-radius:2px; overflow:hidden;
}
.loader-fill {
  height:100%; width:0%;
  background:linear-gradient(90deg,var(--gold),var(--gold-hi));
  animation:loadFill 1.4s var(--ease-io) forwards;
}
@keyframes loadFill { to { width:100%; } }
.loader-city {
  font-size:.62rem; letter-spacing:8px;
  color:rgba(255,255,255,.22); text-transform:uppercase;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:800;
  padding:13px 5%;
  transition:
    background .4s var(--ease-io),
    padding .4s var(--ease-io),
    box-shadow .4s var(--ease-io);
}
/* bois texture en fond naturel */
.nav::before {
  content:'';
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.88) 0%,rgba(0,0,0,.5) 70%,transparent 100%),
    url('images/boisincr.png') center/cover;
  mask-image:linear-gradient(to bottom,black 60%,transparent 100%);
  -webkit-mask-image:linear-gradient(to bottom,black 60%,transparent 100%);
  transition:opacity .4s;
}
.nav.solid {
  background:rgba(5,5,5,.95);
  backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  padding:9px 5%;
  box-shadow:0 1px 0 rgba(255,204,0,.07), 0 6px 28px rgba(0,0,0,.45);
}
.nav.solid::before { opacity:0; }

.nav-inner {
  max-width:1380px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
}

/* Logo */
.nav-logo {
  display:flex; align-items:center; gap:10px;
  font-family:'Big Shoulders Display',sans-serif;
  font-size:1.7rem; font-weight:900; text-transform:uppercase;
  transition:opacity .2s;
}
.nav-logo:hover { opacity:.8; }
.nav-logo img { height:42px; }
.nav-logo em { color:var(--gold); font-style:normal; }

/* Menu */
.nav-menu {
  display:flex; align-items:center; gap:2rem;
}
.nav-link {
  color:rgba(255,255,255,.82);
  font-size:.8rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase;
  text-shadow:0 1px 8px rgba(0,0,0,.9);
  position:relative; padding-bottom:3px;
  transition:color .25s;
}
.nav-link::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1.5px; background:var(--gold);
  transition:width .3s var(--ease);
}
.nav-link:hover { color:var(--gold); }
.nav-link:hover::after { width:100%; }

.nav-sep {
  width:1px; height:22px;
  background:rgba(255,255,255,.12);
}

/* Social buttons */
.nav-social {
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55); font-size:.9rem;
  transition:all .25s var(--ease-io);
}
.nav-social:hover {
  background:var(--gold); border-color:var(--gold);
  color:#000; transform:translateY(-2px);
  box-shadow:0 4px 14px rgba(255,204,0,.35);
}

/* Burger */
.nav-burger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:6px; z-index:10;
}
.nav-burger span {
  display:block; width:22px; height:1.5px; background:#fff;
  border-radius:2px;
  transition:all .3s var(--ease-io); transform-origin:center;
}
.nav-burger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-burger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height:100dvh;
  display:flex; align-items:center; justify-content:center;
  padding:90px 5% 70px;
  position:relative; overflow:hidden;
}

/* Orbe */
.hero-orb {
  position:absolute; width:650px; height:650px; pointer-events:none;
  background:radial-gradient(circle,rgba(255,204,0,.07) 0%,transparent 70%);
  top:50%; left:50%; transform:translate(-50%,-50%);
  animation:orbPulse 10s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { transform:translate(-50%,-50%) scale(1); }
  50%      { transform:translate(-50%,-50%) scale(1.2); opacity:.6; }
}

/* Particules */
.hero-particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero-particles span {
  position:absolute; bottom:-10px;
  width:2px; border-radius:50%;
  background:linear-gradient(to top,rgba(255,204,0,.15),transparent);
  animation:rise 10s ease-in-out infinite; filter:blur(3px);
}
.hero-particles span:nth-child(1) { left:8%;  height:90px; animation-duration:9s;  animation-delay:0s; }
.hero-particles span:nth-child(2) { left:22%; height:65px; animation-duration:11s; animation-delay:1.4s; width:3px; }
.hero-particles span:nth-child(3) { left:45%; height:80px; animation-duration:8s;  animation-delay:.6s; }
.hero-particles span:nth-child(4) { left:63%; height:100px;animation-duration:12s; animation-delay:2.2s; width:3px; }
.hero-particles span:nth-child(5) { left:80%; height:70px; animation-duration:9s;  animation-delay:.3s; }
.hero-particles span:nth-child(6) { left:92%; height:55px; animation-duration:10s; animation-delay:1.8s; }
@keyframes rise {
  0%   { transform:translateY(0) scaleX(1); opacity:0; }
  15%  { opacity:1; }
  100% { transform:translateY(-100vh) scaleX(3); opacity:0; }
}

/* Layout hero */
.hero-layout {
  display:grid;
  grid-template-columns:160px 1fr 160px;
  align-items:center;
  gap:40px;
  width:100%; max-width:1380px;
  z-index:10;
}

/* Badges */
.hero-badge {
  display:flex; flex-direction:column; gap:16px;
}
.float-l { align-items:flex-end; }
.float-r { align-items:flex-start; }
.badge-card {
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,204,0,.2);
  border-radius:var(--r);
  padding:16px 20px; min-width:148px;
  text-align:center;
  animation:badgeFloat 5.5s ease-in-out infinite;
  transition:border-color .3s, box-shadow .3s;
  box-shadow:0 8px 28px rgba(0,0,0,.28);
}
.badge-card:hover {
  border-color:rgba(255,204,0,.45);
  box-shadow:0 12px 38px rgba(255,204,0,.1);
}
@keyframes badgeFloat {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-8px); }
}
.badge-stars { color:var(--gold); font-size:1rem; letter-spacing:2px; margin-bottom:4px; }
.badge-icon  { font-size:1.5rem; margin-bottom:4px; }
.badge-main  {
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:900; font-size:1.3rem; line-height:1.1;
}
.badge-main span { font-size:.85rem; opacity:.6; }
.badge-sub { font-size:.66rem; color:var(--muted); margin-top:3px; letter-spacing:.5px; }

/* Centre */
.hero-center { text-align:center; }

.hero-pill {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,204,0,.22);
  border-radius:50px; padding:9px 26px;
  font-family:'Big Shoulders Display',sans-serif;
  font-size:.8rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase;
  transition:border-color .4s;
  box-shadow:0 4px 18px rgba(0,0,0,.2);
  margin-bottom:20px;
}
.hero-pill.closed { border-color:rgba(220,53,69,.4); }
.hero-pill.closed .pill-dot { background:#dc3545; box-shadow:0 0 10px #dc3545; }
.pill-dot {
  width:7px; height:7px; border-radius:50%;
  background:#28a745; box-shadow:0 0 10px rgba(40,167,69,.85);
  flex-shrink:0; animation:dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%,100% { transform:scale(1); }
  50%      { transform:scale(1.5); }
}

.hero-title {
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:900;
  font-size:clamp(3.5rem,8vw,8rem);
  line-height:.88;
  text-transform:uppercase;
  letter-spacing:-3px;
  text-shadow:0 4px 40px rgba(0,0,0,.5);
  margin-bottom:18px;
}

.hero-rule {
  width:0; height:2px; margin:0 auto 18px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  border-radius:2px;
  transition:width 1.6s var(--ease);
}
.hero-center.active .hero-rule,
.reveal.on .hero-rule { width:90px; }

.hero-addr {
  color:rgba(255,255,255,.45);
  font-size:.76rem; letter-spacing:3px;
  text-transform:uppercase; margin-bottom:28px;
}
.hero-addr i { color:var(--gold); margin-right:6px; }

.hero-ctas {
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}
.btn-hero-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:#000;
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:900; font-size:.9rem; letter-spacing:1.5px;
  text-transform:uppercase;
  padding:12px 28px; border-radius:50px;
  transition:all .28s var(--ease-io);
  box-shadow:0 6px 22px rgba(255,204,0,.35);
}
.btn-hero-primary:hover {
  background:var(--gold-hi);
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 10px 30px rgba(255,204,0,.45);
}
.btn-hero-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18); color:#fff;
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:700; font-size:.9rem; letter-spacing:1.5px;
  text-transform:uppercase;
  padding:12px 24px; border-radius:50px;
  transition:all .28s var(--ease-io);
  backdrop-filter:blur(8px);
}
.btn-hero-ghost:hover {
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.3);
  transform:translateY(-2px);
}

/* Flèche de scroll */
.hero-scroll {
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,.35); font-size:1rem;
  animation:bounce 2.5s ease-in-out infinite;
  transition:color .2s;
}
.hero-scroll:hover { color:var(--gold); }
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(7px); }
}

/* ============================================================
   HISTOIRE
   ============================================================ */
.histoire {
  background:url('images/boisincr.png') center/cover no-repeat;
  padding:110px 0;
  mask-image:linear-gradient(to bottom,transparent 0%,black 7%,black 93%,transparent 100%);
  -webkit-mask-image:linear-gradient(to bottom,transparent 0%,black 7%,black 93%,transparent 100%);
}
.histoire-inner {
  display:grid; grid-template-columns:1fr 1.1fr;
  gap:64px; align-items:center;
  width:92%; max-width:1280px; margin:0 auto;
}

/* Visual */
.histoire-visual { position:relative; }
.histoire-frame {
  position:relative; border-radius:var(--r-lg);
  border:2px solid rgba(255,204,0,.18); padding:10px;
  background:rgba(0,0,0,.45);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  transition:border-color .4s, box-shadow .4s; overflow:hidden;
}
.histoire-frame:hover {
  border-color:rgba(255,204,0,.42);
  box-shadow:0 26px 70px rgba(0,0,0,.6);
}
.histoire-frame img {
  width:100%; height:480px; object-fit:cover;
  border-radius:13px; display:block;
  transition:transform .6s var(--ease);
}
.histoire-frame:hover img { transform:scale(1.04); }
.histoire-badge-img {
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:#000;
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:900; font-size:.76rem; letter-spacing:3px;
  padding:7px 18px; border-radius:30px; white-space:nowrap;
  box-shadow:0 4px 16px rgba(255,204,0,.35);
}

/* Content */
.histoire-eyebrow {
  font-size:.72rem; letter-spacing:3.5px; text-transform:uppercase;
  color:var(--gold); margin-bottom:12px;
}
.histoire-title {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(2.2rem,4.5vw,3.8rem);
  font-weight:900; line-height:1; text-transform:uppercase;
  letter-spacing:-1px; margin-bottom:18px;
}
.histoire-text {
  color:rgba(255,255,255,.6); font-size:.97rem;
  line-height:1.78; margin-bottom:36px;
}
.histoire-content {
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-left:5px solid var(--gold);
  border-radius:0 var(--r-lg) var(--r-lg) 0;
  padding:52px 46px;
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}

/* Pillars */
.histoire-pillars { display:flex; gap:26px; }
.pillar {
  display:flex; flex-direction:column; align-items:center; gap:10px;
  cursor:default;
}
.pillar img {
  width:88px; height:88px; object-fit:cover; border-radius:50%;
  border:2px solid var(--gold-dim);
  transition:border-color .3s, transform .3s, box-shadow .3s;
}
.pillar:hover img {
  border-color:var(--gold); transform:scale(1.08);
  box-shadow:0 0 22px rgba(255,204,0,.22);
}
.pillar span {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:.72rem; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--gold);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background:rgba(255,204,0,.02);
  border-top:1px solid rgba(255,204,0,.08);
  border-bottom:1px solid rgba(255,204,0,.08);
}
.stats-inner {
  display:flex; align-items:center; justify-content:center;
  flex-wrap:wrap;
  max-width:1280px; margin:0 auto;
}
.stat {
  display:flex; flex-direction:column; align-items:center;
  padding:44px 56px; flex:1; min-width:150px; text-align:center;
}
.stat-n {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(2.4rem,5vw,3.8rem);
  font-weight:900; color:var(--gold); line-height:1;
  text-shadow:0 0 28px rgba(255,204,0,.3);
  display:block;
}
.stat-l {
  font-size:.7rem; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--muted); margin-top:6px; display:block;
}
.stat-divider {
  width:1px; height:50px; background:rgba(255,255,255,.07);
  align-self:center;
}

/* ============================================================
   CARTE
   ============================================================ */
.carte { padding:90px 5%; }
.carte-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:22px; max-width:960px; margin:0 auto;
}
.carte-card {
  position:relative; border-radius:var(--r);
  overflow:hidden; cursor:pointer;
  border:1px solid var(--border);
  box-shadow:0 8px 28px rgba(0,0,0,.3);
  transition:border-color .3s, box-shadow .3s;
}
.carte-card:hover, .carte-card:focus-visible {
  border-color:rgba(255,204,0,.4); outline:none;
  box-shadow:0 16px 48px rgba(0,0,0,.5), 0 0 28px rgba(255,204,0,.06);
}
.carte-card img {
  width:100%; height:310px; object-fit:cover; display:block;
  transition:transform .55s var(--ease);
}
.carte-card:hover img, .carte-card:focus-visible img { transform:scale(1.04); }
.carte-overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,.4);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:2.2rem;
  opacity:0; transition:opacity .3s;
}
.carte-card:hover .carte-overlay,
.carte-card:focus-visible .carte-overlay { opacity:1; }

/* ============================================================
   MODALES
   ============================================================ */
.modal {
  display:none; position:fixed; inset:0; z-index:9000;
  background:rgba(0,0,0,.93);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s var(--ease-io);
}
.modal.open { display:flex; }
.modal.visible { opacity:1; }
.modal img {
  max-width:90vw; max-height:82vh; object-fit:contain;
  border:2px solid rgba(255,204,0,.2); border-radius:var(--r);
  box-shadow:0 0 80px rgba(255,204,0,.08);
  user-select:none; -webkit-user-drag:none;
}
.modal-close {
  position:absolute; top:18px; right:22px;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.6); font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  transition:all .25s;
}
.modal-close:hover { background:rgba(220,53,69,.2); color:#fff; border-color:rgba(220,53,69,.4); }
.modal-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width:50px; height:50px; border-radius:50%;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.7); font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(6px); transition:all .25s;
}
.modal-arrow:hover { background:var(--gold); border-color:var(--gold); color:#000; }
.modal-arrow.prev { left:20px; }
.modal-arrow.next { right:20px; }
.modal-counter {
  position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
  font-size:.72rem; letter-spacing:2px; color:rgba(255,255,255,.35);
  font-family:'Big Shoulders Display',sans-serif;
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie { padding:90px 5%; }
.galerie-filters {
  display:flex; justify-content:center; margin-bottom:38px;
  gap:4px; padding:5px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:50px;
  width:fit-content; margin-left:auto; margin-right:auto;
  backdrop-filter:blur(10px);
}
.gf-btn {
  display:flex; align-items:center; gap:7px;
  background:transparent; color:var(--muted); border:none;
  padding:9px 20px; border-radius:40px;
  font-family:'Big Shoulders Display',sans-serif;
  font-size:.84rem; font-weight:800; letter-spacing:1.5px;
  text-transform:uppercase; transition:all .25s var(--ease-io);
}
.gf-btn i { font-size:.75rem; }
.gf-btn:hover { color:#fff; background:rgba(255,255,255,.07); }
.gf-btn.active { background:var(--gold); color:#000; box-shadow:0 4px 14px rgba(255,204,0,.28); }

.galerie-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:12px; max-width:1200px; margin:0 auto;
}
.gal-item {
  position:relative; border-radius:var(--r);
  overflow:hidden; cursor:pointer; aspect-ratio:4/3;
  box-shadow:0 4px 14px rgba(0,0,0,.3);
  transition:transform .3s var(--ease), box-shadow .3s;
}
.gal-item.hide { display:none; }
.gal-item:hover { transform:scale(1.025); box-shadow:0 10px 36px rgba(0,0,0,.55); z-index:2; }
.gal-item img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .5s var(--ease);
}
.gal-item:hover img { transform:scale(1.08); }
.gal-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.52) 0%,transparent 55%);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:1.5rem;
  opacity:0; transition:opacity .3s;
}
.gal-item:hover .gal-overlay { opacity:1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding:90px 5%; }
.contact-inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:50px; max-width:1280px; margin:0 auto; align-items:start;
}
.contact-title {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:1.5rem; font-weight:900;
  letter-spacing:2px; text-transform:uppercase;
  margin-bottom:20px; display:flex; align-items:center; gap:12px;
}
.rating-badge {
  font-family:'Outfit',sans-serif; font-weight:300;
  font-size:.9rem; color:var(--muted);
  -webkit-text-fill-color:unset; background:none;
}
.map-wrap {
  height:255px; border-radius:var(--r); overflow:hidden;
  border:1px solid rgba(255,204,0,.14);
  box-shadow:0 8px 28px rgba(0,0,0,.38); margin-bottom:20px;
}
.contact-info p {
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,.58); font-size:.88rem; margin-bottom:8px;
}
.contact-info p i { color:var(--gold); width:14px; flex-shrink:0; }
.contact-info a:hover { color:var(--gold); }

.horaires { margin:18px 0; }
.horaires-label {
  display:flex; align-items:center; gap:8px;
  font-size:.72rem; letter-spacing:2px;
  text-transform:uppercase; color:var(--gold); margin-bottom:12px;
}
.horaires ul { display:flex; flex-direction:column; }
.horaires li {
  display:flex; justify-content:space-between;
  font-size:.82rem; color:rgba(255,255,255,.52);
  padding:7px 0; border-bottom:1px solid rgba(255,255,255,.05);
}
.horaires li:last-child { border-bottom:none; }
.horaires li.closed span:last-child { color:#e05565; font-weight:700; }

.btn-itinerary {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 24px; border:1.5px solid var(--gold); color:var(--gold);
  background:transparent;
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:900; font-size:.82rem; letter-spacing:2px;
  text-transform:uppercase; border-radius:var(--r);
  transition:all .25s var(--ease-io); margin-top:8px;
}
.btn-itinerary:hover {
  background:var(--gold); color:#000;
  box-shadow:0 4px 18px rgba(255,204,0,.3); transform:translateY(-1px);
}

/* Reviews */
.reviews { display:flex; flex-direction:column; gap:10px; }
.review {
  display:block;
  background:rgba(255,255,255,.04);
  padding:18px 20px; border-radius:var(--r);
  border-left:3px solid var(--gold);
  transition:background .3s, transform .3s, box-shadow .3s;
  box-shadow:0 2px 10px rgba(0,0,0,.18);
}
.review:hover {
  background:rgba(255,204,0,.06);
  transform:translateY(-3px);
  box-shadow:0 8px 26px rgba(0,0,0,.32);
}
.review-top {
  display:flex; justify-content:space-between;
  align-items:center; margin-bottom:8px;
}
.rev-stars { color:var(--gold); letter-spacing:2px; }
.rev-g {
  font-weight:900; color:#4285F4; background:#fff;
  border-radius:50%; width:22px; height:22px;
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; flex-shrink:0;
}
.review p { font-style:italic; color:rgba(255,255,255,.6); font-size:.87rem; line-height:1.6; }
.rev-name { display:block; margin-top:8px; color:var(--gold); font-size:.76rem; font-weight:600; }
.reviews-more {
  text-align:center; margin-top:14px; font-size:.8rem;
}
.reviews-more a { color:var(--muted); transition:color .2s; }
.reviews-more a:hover { color:var(--gold); }
.reviews-more i { font-size:.7rem; }

/* ============================================================
   SCROLL TRACKER
   ============================================================ */
.scroll-track {
  position:fixed; right:20px; top:50%;
  transform:translateY(-50%); z-index:500;
  width:6px; height:200px;
  border-radius:6px; overflow:hidden;
}
.scroll-bg {
  position:absolute; inset:0;
  background:rgba(255,255,255,.1);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}
.scroll-fill {
  position:absolute; left:0; right:0; bottom:0; height:0%;
  background:linear-gradient(to top,var(--gold),var(--gold-hi));
  border-radius:6px;
  transition:height .08s linear;
  box-shadow:0 0 12px rgba(255,204,0,.5);
}
.scroll-icon {
  position:absolute; left:50%; top:100%;
  transform:translate(-50%,-50%);
  font-size:1.35rem; line-height:1;
  transition:top .08s linear;
  filter:drop-shadow(0 0 7px rgba(255,204,0,.85));
  pointer-events:none;
}

/* ============================================================
   FAB
   ============================================================ */
.fab {
  position:fixed; bottom:28px; right:28px; z-index:1000;
  display:flex; align-items:center; gap:10px;
  background:var(--gold); color:#000;
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:900; font-size:.92rem; letter-spacing:1.5px;
  text-transform:uppercase; padding:14px 24px; border-radius:50px;
  box-shadow:0 8px 26px rgba(255,204,0,.35);
  transition:all .3s var(--ease);
}
.fab:hover {
  background:var(--gold-hi); transform:translateY(-3px) scale(1.03);
  box-shadow:0 14px 34px rgba(255,204,0,.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:linear-gradient(to top,#000 0%,rgba(8,8,8,.9) 100%);
  border-top:1px solid rgba(255,204,0,.08);
  padding:66px 5% 28px; position:relative; z-index:10;
}
.footer-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.4fr 1fr 1fr;
  gap:40px; margin-bottom:44px;
}
.footer-name {
  font-family:'Big Shoulders Display',sans-serif;
  font-size:1.5rem; margin-bottom:10px;
}
.footer-brand p {
  color:rgba(255,255,255,.35); font-size:.84rem; line-height:1.9;
}
.footer-socials {
  display:flex; gap:10px; margin-top:16px;
}
.footer-socials a {
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.5); font-size:.9rem;
  transition:all .25s;
}
.footer-socials a:hover {
  background:var(--gold); border-color:var(--gold); color:#000;
  transform:translateY(-2px);
}
.footer-col h4 {
  color:var(--gold); text-transform:uppercase;
  letter-spacing:2px; font-size:.76rem; margin-bottom:14px;
}
.footer-col li {
  color:rgba(255,255,255,.32); font-size:.83rem; line-height:2.1;
}
.footer-col li a { transition:color .2s; }
.footer-col li a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.05);
  padding-top:20px; text-align:center;
  color:rgba(255,255,255,.16); font-size:.76rem;
}
.footer-bottom a { color:var(--gold); transition:opacity .2s; }
.footer-bottom a:hover { opacity:.7; }

/* ============================================================
   RESPONSIVE — TABLETTE
   ============================================================ */
@media (max-width:1100px) {
  .hero-layout { grid-template-columns:1fr; }
  .hero-badge  { display:none; }
  .hero-center { grid-column:1; }
  .histoire-inner { grid-template-columns:1fr; gap:32px; padding:0 20px; }
  .histoire-frame img { height:300px; }
  .histoire-content {
    border-left:4px solid var(--gold) !important;
    border-radius:0 var(--r) var(--r) 0;
    padding:32px 28px !important;
  }
  .histoire { mask-image:none; -webkit-mask-image:none; padding:60px 0; }
  .galerie-grid { grid-template-columns:repeat(3,1fr); }
  .stat { padding:36px 28px; }
  .contact-inner { grid-template-columns:1fr; gap:36px; }
  .footer-inner { grid-template-columns:1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width:768px) {
  /* Nav burger */
  .nav-burger { display:flex; }
  .nav-menu {
    display:none;
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0;
    background:rgba(4,4,4,.97);
    backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
    border-top:1px solid var(--gold-dim);
    padding:6px 0 16px;
    box-shadow:0 20px 40px rgba(0,0,0,.6);
  }
  .nav-menu.open { display:flex; }
  .nav-link {
    padding:14px 6%; width:100%;
    border-bottom:1px solid rgba(255,255,255,.04);
    font-size:.88rem;
  }
  .nav-link::after { display:none; }
  .nav-sep {
    display:none;
  }
  /* Show socials inline in mobile menu */
  .nav-menu .nav-social {
    display:flex;
  }
  .nav-menu.open .nav-sep {
    display:block; width:100%; height:1px; margin:4px 0;
  }
  /* Social row in mobile */
  .nav-menu {
    /* redefine for mobile: socials in a row */
  }
  .nav-menu .nav-social:first-of-type {
    margin-left:6%;
  }

  /* Hero */
  .hero { padding:88px 5% 55px; }
  .hero-title { font-size:clamp(3rem,13vw,5.2rem); letter-spacing:-1.5px; }
  .hero-pill { padding:8px 18px; font-size:.72rem; }
  .hero-addr { font-size:.7rem; letter-spacing:2px; }
  .hero-ctas { gap:10px; }
  .btn-hero-primary, .btn-hero-ghost { font-size:.84rem; padding:11px 20px; }
  .hero-orb { width:380px; height:380px; }

  /* Stats */
  .stat { padding:28px 18px; flex:1 1 42%; min-width:120px; }
  .stat-divider { display:none; }

  /* Carte */
  .carte { padding:60px 5%; }
  .carte-grid { grid-template-columns:1fr; }
  .carte-card img { height:240px; }

  /* Galerie */
  .galerie { padding:60px 5%; }
  .galerie-grid { grid-template-columns:repeat(2,1fr); gap:8px; }
  .galerie-filters { flex-wrap:wrap; border-radius:var(--r); gap:4px; }
  .gf-btn { padding:8px 14px; font-size:.76rem; }

  /* Modales */
  .modal img { max-width:96vw; max-height:75vh; }
  .modal-arrow.prev { left:10px; }
  .modal-arrow.next { right:10px; }
  .modal-close { top:14px; right:14px; }

  /* Contact */
  .contact { padding:60px 5%; }
  .map-wrap { height:210px; }

  /* FAB → cercle */
  .fab { bottom:20px; right:16px; padding:0; width:54px; height:54px; border-radius:50%; justify-content:center; }
  .fab span { display:none; }

  /* Scroll tracker masqué */
  .scroll-track { display:none; }

  /* Footer */
  .footer { padding:50px 5% 24px; }
  .footer-inner { grid-template-columns:1fr; gap:30px; }
}

@media (max-width:480px) {
  .galerie-grid { grid-template-columns:repeat(2,1fr); gap:6px; }
  .modal-arrow { display:none; }
  .hero-title { line-height:.92; }
  .histoire-pillars { gap:14px; flex-wrap:wrap; justify-content:center; }
  .pillar img { width:74px; height:74px; }
  .hero-particles span { display:none; }
}

/* iOS safe areas */
@supports (padding-bottom:env(safe-area-inset-bottom)) {
  .nav  { padding-top:max(13px,env(safe-area-inset-top)); }
  .fab  { bottom:calc(20px + env(safe-area-inset-bottom)); right:calc(16px + env(safe-area-inset-right)); }
  .hero { padding-bottom:max(55px,env(safe-area-inset-bottom)); }
  .footer { padding-bottom:calc(28px + env(safe-area-inset-bottom)); }
}
