/* ════════════════════════════════════════════════════════════════
   BONESTO — style.css
   Apple-level premium design · Dark · American Street Food
   ════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Color palette */
  --black:        #050505;
  --dark:         #0a0a0a;
  --dark-2:       #111111;
  --dark-3:       #1a1a1a;
  --green-deep:   #081510;
  --green-mid:    #0f2318;
  --green-accent: #1a6e35;
  --green-glow:   #25d460;
  --gold:         #f0ede8;
  --gold-light:   rgba(240,237,232,0.65);
  --white:        #f0ede8;
  --white-dim:    rgba(240,237,232,0.65);
  --white-faint:  rgba(240,237,232,0.08);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --nav-h:        160px;
  --section-py:   clamp(56px, 7vw, 100px);
  --container:    1280px;
  --radius-card:  16px;
  --radius-cont:  24px;

  /* Easing */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ─── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.is-loaded {
  opacity: 1;
}

/* ─── CUSTOM SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(37,212,96,0.35) 0%,
    rgba(26,110,53,0.5) 100%
  );
  border-radius: 8px;
  border: 2px solid var(--black);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(37,212,96,0.6) 0%,
    rgba(26,110,53,0.8) 100%
  );
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(37,212,96,0.45) var(--black);
}

/* ─── FILM GRAIN — texture cinématographique ────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CONTAINER ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

/* ─── SECTION BASE ──────────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background-color: var(--dark);
}

/* ─── SECTION TRANSITIONS — fondus aux bords ──────────────────── */
.section::before,
.section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.section::before { top: 0;    background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent); }
.section::after  { bottom: 0; background: linear-gradient(to top,    rgba(0,0,0,0.35), transparent); }

.section--dark::before { background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent); }
.section--dark::after  { background: linear-gradient(to top,    rgba(0,0,0,0.5), transparent); }

/* Ligne d'accent verte fine au début de chaque section --dark */
.section--dark > .container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--green-glow) 50%,
    transparent 100%
  );
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 2;
}

/* ─── EYEBROW ───────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 20px;
}

.eyebrow--light {
  color: var(--gold);
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn--fill {
  background: var(--green-accent);
  color: var(--white);
  border: 2px solid var(--green-accent);
}

.btn--fill:hover {
  background: #1d8040;
  border-color: #1d8040;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(26,110,53,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(240,237,232,0.3);
}

.btn--outline:hover {
  background: var(--white-faint);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

#nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid rgba(240,237,232,0.06);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo gauche */
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.nav__brand:hover {
  transform: scale(1.04);
}

.nav__logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(37,212,96,0.18));
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
}

.nav__link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--green-glow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 0 8px var(--green-glow);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  text-shadow: 0 0 12px rgba(37,212,96,0.35);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__link--cta {
  padding: 8px 20px;
  border: 1px solid rgba(26,110,53,0.6);
  border-radius: 4px;
  color: var(--white) !important;
  transition: background 0.3s, border-color 0.3s;
}

.nav__link--cta:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
}

.nav__link--cta::after { display: none; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.nav__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.nav__overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav__overlay-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav__overlay-close span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  position: absolute;
}

.nav__overlay-close span:first-child { transform: rotate(45deg); }
.nav__overlay-close span:last-child  { transform: rotate(-45deg); }

.nav__overlay-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav__overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 4rem);
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav__overlay-links a:hover { color: var(--gold); }

.nav__overlay-footer {
  position: absolute;
  bottom: 32px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari : exclut la barre dynamique */
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background:
    linear-gradient(rgba(5,5,5,0.72), rgba(5,5,5,0.72)),
    url('images/bonesto-og.png') center 10% / cover no-repeat;
  background-color: var(--black);
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
}

.hero__bg-glow--green {
  bottom: -100px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(26,110,53,0.22) 0%, transparent 70%);
  filter: blur(80px);
}

.hero__bg-glow--gold {
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26,110,53,0.08) 0%, transparent 70%);
  filter: blur(80px);
}

/* Fine grid overlay */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,232,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--green-glow);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

/* Container */
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 32px;
  padding-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* ── Hero text ── */
.hero__content { max-width: 560px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-glow);
  margin-bottom: 32px;
}

.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green-glow);
  flex-shrink: 0;
}

/* Title clip-path reveal */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  overflow: hidden;
}

.hero__title-line {
  display: block;
  color: var(--white);
  clip-path: inset(0 100% 0 0);
  animation: titleReveal 1s var(--ease) forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 0.22s);
}

.hero__title-line--gold { color: var(--green-glow); }

@keyframes titleReveal {
  to { clip-path: inset(0 0% 0 0); }
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Burger scene ── */
.hero__burger-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(120px);
  pointer-events: none;
  isolation: isolate;
}

.hero__burger-scene {
  position: relative;
  width: 600px;
  height: 420px;
  transform-style: preserve-3d;
  animation: sceneSway 8s ease-in-out infinite;
}

@keyframes sceneSway {
  0%,100% { transform: rotate3d(0.1, 1, 0.05, -3deg); }
  50%      { transform: rotate3d(0.1, 1, 0.05, 3deg); }
}

/* ═══════════════════════════════════════
   BURGER PHOTO DÉCOMPOSÉ — Layers flottants
   ═══════════════════════════════════════ */

/* ── GLOWS ── */
.bb-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}

.bb-glow--gold {
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.4) 0%, transparent 70%);
  filter: blur(40px);
  animation: glowGold 6s ease-in-out infinite;
}

.bb-glow--green {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37,212,96,0.15) 0%, transparent 70%);
  filter: blur(50px);
  animation: glowGreen 8s ease-in-out infinite;
}

@keyframes glowGold {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.7; }
}
@keyframes glowGreen {
  0%,100% { opacity: 0.1; }
  50%      { opacity: 0.4; }
}

/* ── BURGER CONTAINER ── */
.bburger {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin-top: -300px;
  margin-left: -300px;
  animation: burgerFloat 6s ease-in-out infinite;
}

.bburger__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  animation: burgerSway 16s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  transform-origin: 50% 50%;
  will-change: transform;
}

@keyframes burgerFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-22px); }
}

@keyframes burgerSway {
  0%,100% { transform: rotate(-30deg); }
  50%     { transform: rotate(30deg);  }
}

/* ── LAYERS clippés ── */
.bl {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mix-blend-mode: screen;
}

.bl img {
  width: 680px;
  height: 680px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Clip zones (image carrée 100%) */
/* Bun top : 0% → 22% */
.bl--1 { clip-path: inset(0%   0% 78% 0%); animation: blf1 6s   ease-in-out infinite 0s;   filter: drop-shadow(0 -8px 20px rgba(201,169,110,0.3)); }
/* Lettuce : 22% → 33% */
.bl--2 { clip-path: inset(22%  0% 67% 0%); animation: blf2 5s   ease-in-out infinite 0.3s; }
/* Tomato : 33% → 44% */
.bl--3 { clip-path: inset(33%  0% 56% 0%); animation: blf3 7s   ease-in-out infinite 0.6s; }
/* Onions+cheddar : 44% → 62% */
.bl--4 { clip-path: inset(44%  0% 38% 0%); animation: blf4 5.5s ease-in-out infinite 0.9s; filter: drop-shadow(0 4px 16px rgba(201,100,0,0.25)); }
/* Patties : 62% → 80% */
.bl--5 { clip-path: inset(62%  0% 20% 0%); animation: blf5 6.5s ease-in-out infinite 1.2s; }
/* Bun bottom : 80% → 100% */
.bl--6 { clip-path: inset(80%  0% 0%  0%); animation: blf6 6s   ease-in-out infinite 1.5s; }

@keyframes blf1 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-28px); }
}
@keyframes blf2 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-18px); }
}
@keyframes blf3 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
@keyframes blf4 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
@keyframes blf5 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-5px); }
}
@keyframes blf6 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-2px); }
}

/* ── SHADOW SOL ── */
.bb-shadow {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
  width: 300px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  filter: blur(10px);
  animation: bbShadow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bbShadow {
  0%,100% { transform: translateX(-50%) scaleX(1);   opacity: 0.6; }
  50%      { transform: translateX(-50%) scaleX(0.7); opacity: 0.25; }
}

/* ── PARTICULES ── */
.bb-p {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: bbParticle var(--dur, 5s) ease-in-out infinite var(--del, 0s);
}

.bb-p--1 { width:5px; height:5px; background:rgba(201,169,110,0.8); top:12%; left:8%;  --dur:4.2s; --del:0s;   --dy:-30px; --dx:10px; }
.bb-p--2 { width:7px; height:7px; background:rgba(37,212,96,0.6);   top:22%; left:82%; --dur:5.8s; --del:.8s;  --dy:-20px; --dx:-15px; }
.bb-p--3 { width:4px; height:4px; background:rgba(201,169,110,0.7); top:62%; left:5%;  --dur:3.5s; --del:1.2s; --dy:-40px; --dx:5px; }
.bb-p--4 { width:6px; height:6px; background:rgba(37,212,96,0.5);   top:72%; left:90%; --dur:6.1s; --del:.3s;  --dy:-25px; --dx:-8px; }
.bb-p--5 { width:3px; height:3px; background:rgba(201,169,110,0.9); top:38%; left:94%; --dur:4.7s; --del:2.1s; --dy:-35px; --dx:-12px; }
.bb-p--6 { width:6px; height:6px; background:rgba(37,212,96,0.7);   top:82%; left:18%; --dur:5.3s; --del:.6s;  --dy:-28px; --dx:14px; }

@keyframes bbParticle {
  0%,100% { transform: translate(0, 0);                    opacity: 0;   }
  20%      { opacity: 1; }
  80%      { opacity: 0.6; }
  50%      { transform: translate(var(--dx,0), var(--dy,-30px)); opacity: 0.8; }
}

/* ═══════════════════════════════════════
   CSS SANDWICH PREMIUM — Photorealistic
   ═══════════════════════════════════════ */

.sandwich {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(7deg);
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: sandwichFloat 7s ease-in-out infinite;
  filter:
    drop-shadow(0 50px 100px rgba(0,0,0,0.95))
    drop-shadow(0 8px 32px rgba(0,0,0,0.7))
    drop-shadow(0 0 80px rgba(37,212,96,0.08));
}

@keyframes sandwichFloat {
  0%,100% { transform: translate(-50%,-50%) rotate(7deg) translateY(0); }
  50%      { transform: translate(-50%,-50%) rotate(7deg) translateY(-18px); }
}

/* Base animation calques */
.sw {
  position: relative;
  width: 100%;
  animation: swFloat var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}

@keyframes swFloat {
  0%,100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(var(--lift, -8px)) rotate(var(--rot2, 1deg)); }
}

/* ── PAIN HAUT — style subway allongé ── */
.sw--bread-top {
  height: 52px;
  background:
    radial-gradient(ellipse at 30% 28%, #f8d870 0%, #e09020 28%, #c06810 55%, #884008 82%, #5a2408 100%);
  border-radius: 50% 50% 12% 12% / 85% 85% 10% 10%;
  box-shadow:
    inset 0 10px 28px rgba(255,215,120,0.38),
    inset -10px 0 20px rgba(70,25,0,0.2),
    inset 10px 0 20px rgba(70,25,0,0.12),
    inset 0 -8px 18px rgba(50,15,0,0.48),
    0 6px 20px rgba(0,0,0,0.6);
  overflow: hidden;
  --dur: 6s; --lift: -6px; --rot: -0.5deg; --rot2: 0.5deg;
}

.sw__bread-shine {
  position: absolute;
  top: 14px; left: 20%; width: 52%; height: 24px;
  background: radial-gradient(ellipse, rgba(255,245,190,0.55) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.sw__bread-shine--2 {
  top: 28px; left: 55%; width: 28%; height: 14px;
  background: radial-gradient(ellipse, rgba(255,240,180,0.3) 0%, transparent 70%);
  transform: rotate(-12deg);
}

.sw__bread-seeds {
  position: absolute;
  inset: 0;
}

.bseed {
  position: absolute;
  width: 13px; height: 5px;
  background: linear-gradient(180deg, rgba(255,245,200,0.75), rgba(220,190,120,0.55));
  border-radius: 50%;
  transform: rotate(var(--r, 0deg));
  box-shadow:
    inset 0 1px 2px rgba(255,255,200,0.4),
    0 1px 3px rgba(0,0,0,0.35);
}

/* Rangée 1 */
.b1  { top: 18%; left: 12%; --r: -22deg; }
.b2  { top: 15%; left: 26%; --r:  10deg; }
.b3  { top: 20%; left: 39%; --r: -8deg;  }
.b4  { top: 14%; left: 52%; --r:  18deg; }
.b5  { top: 19%; left: 65%; --r: -14deg; }
.b6  { top: 15%; left: 78%; --r:  8deg;  }
/* Rangée 2 */
.b7  { top: 36%; left: 8%;  --r:  16deg; }
.b8  { top: 38%; left: 21%; --r: -12deg; }
.b9  { top: 34%; left: 34%; --r:  6deg;  }
.b10 { top: 37%; left: 47%; --r: -20deg; }
.b11 { top: 35%; left: 60%; --r:  12deg; }
.b12 { top: 38%; left: 73%; --r: -6deg;  }
.b13 { top: 34%; left: 86%; --r:  20deg; }
/* Rangée 3 */
.b14 { top: 52%; left: 18%; --r: -10deg; }
.b15 { top: 50%; left: 55%; --r:  14deg; }

.sw__bread-crust {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 18px;
  background: linear-gradient(180deg, transparent, rgba(50,15,0,0.45));
}

/* Entailles diagonales style subway */
.sw__bread-scores {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sw__bread-score {
  position: absolute;
  width: 2.5px;
  height: 58%;
  top: 14%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(45,12,0,0.55) 25%,
    rgba(35,10,0,0.5) 60%,
    transparent 100%);
  border-radius: 2px;
  transform: rotate(-10deg);
  box-shadow:
    1px 0 3px rgba(0,0,0,0.28),
    -1px 0 1px rgba(255,200,100,0.08);
}

.sw__bread-score--1 { left: 22%; }
.sw__bread-score--2 { left: 38%; }
.sw__bread-score--3 { left: 56%; }
.sw__bread-score--4 { left: 72%; }

/* ── MAYO — sauce crémeuse ── */
.sw--mayo {
  height: 12px;
  background: linear-gradient(180deg,
    rgba(255,252,240,0.95) 0%,
    rgba(240,235,210,0.9) 60%,
    rgba(220,210,180,0.7) 100%);
  border-radius: 0 0 6px 6px;
  margin-top: -3px;
  width: 94%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  --dur: 5.8s; --del: 0.2s; --lift: -10px; --rot: 0.3deg; --rot2: -0.3deg;
}

.mayo-drop {
  position: absolute;
  bottom: -8px;
  width: 7px;
  background: linear-gradient(180deg, rgba(255,252,240,0.9), rgba(240,235,210,0.6));
  border-radius: 0 0 50% 50%;
  animation: mayoDrip 4s ease-in-out infinite;
}

.m1 { left: 18%; height: 0; animation-delay: 1s; }
.m2 { left: 50%; height: 0; animation-delay: 2.5s; }
.m3 { left: 76%; height: 0; animation-delay: 3.8s; }

@keyframes mayoDrip {
  0%,100% { height: 0; opacity: 0.8; }
  50%      { height: 16px; opacity: 1; }
}

/* ── POULET CRISPY — pièce maîtresse ── */
.sw--chicken {
  height: 50px;
  background:
    radial-gradient(ellipse at 20% 30%, #f5d060 0%, #e8a020 25%, #c07010 55%, #884008 85%, #502000 100%);
  clip-path: polygon(
    1% 20%, 3% 5%, 8% 15%, 14% 2%, 20% 12%, 27% 0%, 34% 10%,
    42% 1%, 50% 8%, 57% 0%, 65% 10%, 72% 2%, 78% 14%, 86% 3%,
    92% 16%, 97% 5%, 100% 22%,
    98% 80%, 95% 95%, 88% 85%, 82% 98%, 75% 88%, 68% 100%,
    60% 90%, 52% 100%, 44% 88%, 36% 99%, 28% 86%, 20% 97%,
    12% 85%, 5% 96%, 2% 80%
  );
  box-shadow:
    inset 0 4px 16px rgba(255,200,80,0.4),
    inset 0 -6px 12px rgba(50,15,0,0.6),
    0 8px 24px rgba(0,0,0,0.65);
  overflow: hidden;
  position: relative;
  --dur: 7s; --del: 0.4s; --lift: -5px; --rot: -0.8deg; --rot2: 0.8deg;
}

.sw__chicken-crisp {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -30deg,
      rgba(255,200,80,0.12) 0px, rgba(255,200,80,0.12) 2px,
      transparent 2px, transparent 8px
    ),
    repeating-linear-gradient(
      60deg,
      rgba(0,0,0,0.08) 0px, rgba(0,0,0,0.08) 2px,
      transparent 2px, transparent 12px
    );
}

.sw__chicken-inner {
  position: absolute;
  top: 30%; left: 5%; right: 5%; height: 45%;
  background: linear-gradient(180deg,
    rgba(255,230,150,0.25) 0%,
    rgba(200,140,40,0.15) 100%);
  border-radius: 40%;
}

.sw__chicken-shadow {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 16px;
  background: linear-gradient(to top, rgba(40,10,0,0.5), transparent);
}

/* ── VIANDE GRILLÉE — steak haché ── */
.sw--meat {
  height: 42px;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse at 25% 30%, #7a2e08 0%, #561e04 40%, #3a1002 70%, #1e0800 100%);
  clip-path: polygon(
    0% 22%, 3% 6%, 8% 18%, 14% 3%, 21% 14%, 28% 2%, 36% 12%,
    44% 1%, 52% 11%, 60% 0%, 67% 12%, 74% 2%, 81% 15%, 88% 4%,
    94% 16%, 98% 7%, 100% 24%,
    99% 76%, 96% 90%, 90% 80%, 83% 94%, 76% 82%, 68% 96%,
    60% 83%, 52% 97%, 44% 81%, 36% 95%, 28% 80%, 20% 93%,
    12% 79%, 6% 92%, 2% 79%, 1% 76%
  );
  box-shadow:
    inset 0 4px 14px rgba(200,80,20,0.18),
    inset 0 -10px 20px rgba(0,0,0,0.8),
    inset -4px 0 10px rgba(0,0,0,0.4),
    0 8px 22px rgba(0,0,0,0.75);
  overflow: hidden;
  position: relative;
  --dur: 6.8s; --del: 0.35s; --lift: -5px; --rot: 0.5deg; --rot2: -0.5deg;
}

.sw__meat-grill {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -40deg,
      transparent 0px, transparent 5px,
      rgba(0,0,0,0.55) 5px, rgba(0,0,0,0.55) 8px
    );
}

.sw__meat-char {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      50deg,
      transparent 0px, transparent 10px,
      rgba(0,0,0,0.25) 10px, rgba(0,0,0,0.25) 12px
    );
}

.sw__meat-shine {
  position: absolute;
  top: 18%; left: 8%; width: 38%; height: 35%;
  background: radial-gradient(ellipse, rgba(220,110,40,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── OIGNONS CARAMÉLISÉS — anneaux violets ── */
.sw--onions {
  height: 20px;
  position: relative;
  overflow: visible;
  --dur: 5.8s; --del: 0.45s; --lift: -8px; --rot: 0.4deg; --rot2: -0.4deg;
}

.onion {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #7b2d8b;
  box-shadow:
    0 0 0 1.5px rgba(180,80,220,0.25),
    inset 0 1px 4px rgba(180,100,220,0.3),
    0 2px 6px rgba(0,0,0,0.5);
  opacity: 0.9;
}

/* Anneaux d'oignons répartis — tailles et positions variées */
.onion--1 { left: 3%;  top: 1px;  width: 18px; height: 14px; border-color: #8a3a9e; transform: rotate(-8deg);  }
.onion--2 { left: 11%; top: 5px;  width: 14px; height: 11px; border-color: #6b2280; transform: rotate(5deg);   }
.onion--3 { left: 19%; top: 0px;  width: 20px; height: 15px; border-color: #7b2d8b; transform: rotate(-4deg);  }
.onion--4 { left: 29%; top: 4px;  width: 15px; height: 12px; border-color: #9040a8; transform: rotate(10deg);  }
.onion--5 { left: 38%; top: 1px;  width: 19px; height: 14px; border-color: #6b2280; transform: rotate(-6deg);  }
.onion--6 { left: 49%; top: 5px;  width: 13px; height: 10px; border-color: #8a3a9e; transform: rotate(7deg);   }
.onion--7 { left: 57%; top: 0px;  width: 21px; height: 16px; border-color: #7b2d8b; transform: rotate(-3deg);  }
.onion--8 { left: 68%; top: 3px;  width: 16px; height: 12px; border-color: #9040a8; transform: rotate(8deg);   }
.onion--9 { left: 77%; top: 1px;  width: 18px; height: 14px; border-color: #6b2280; transform: rotate(-9deg);  }
.onion--10{ left: 87%; top: 4px;  width: 14px; height: 11px; border-color: #8a3a9e; transform: rotate(4deg);   }

/* ── FROMAGE FONDU — déborde sur les côtés ── */
.sw--cheese {
  height: 18px;
  background:
    radial-gradient(ellipse at 30% 0%, #ffe066 0%, #f7cc20 30%, #e8a800 65%, #c07800 100%);
  width: 110%;
  margin-left: -5%;
  overflow: visible;
  border-radius: 2px 2px 6px 6px;
  box-shadow:
    inset 0 3px 8px rgba(255,230,100,0.5),
    inset 0 -4px 8px rgba(140,70,0,0.3),
    0 6px 24px rgba(220,150,0,0.45),
    0 2px 8px rgba(0,0,0,0.4);
  --dur: 5.5s; --del: 0.6s; --lift: -9px; --rot: 0.5deg; --rot2: -0.5deg;
  position: relative;
  z-index: 3;
}

.sw-drip {
  position: absolute;
  top: 98%;
  height: 0;
  background: linear-gradient(180deg,
    #ffe066 0%,
    #f5c200 18%,
    #e0a000 45%,
    #c07800 72%,
    #8a5000 100%);
  border-radius: 0 0 45% 45% / 0 0 100% 100%;
  animation: swCheeseDrip 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transform-origin: top center;
  box-shadow:
    inset 1px 0 3px rgba(255,230,80,0.4),
    inset -1px 0 2px rgba(120,60,0,0.3),
    1px 2px 6px rgba(0,0,0,0.3);
  filter: drop-shadow(0 4px 6px rgba(180,100,0,0.4));
}

/* Reflet brillant sur chaque goutte */
.sw-drip::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 30%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,245,150,0.55), transparent);
  border-radius: 50%;
}

.sw-drip--1 { left: 7%;  width: 11px; animation-delay: 1.5s; animation-duration: 3.8s; }
.sw-drip--2 { left: 20%; width: 8px;  animation-delay: 2.8s; animation-duration: 4.6s; }
.sw-drip--3 { left: 34%; width: 13px; animation-delay: 0.6s; animation-duration: 4.0s; }
.sw-drip--4 { left: 48%; width: 9px;  animation-delay: 3.2s; animation-duration: 3.4s; }
.sw-drip--5 { left: 61%; width: 14px; animation-delay: 1.0s; animation-duration: 5.0s; }
.sw-drip--6 { left: 75%; width: 8px;  animation-delay: 2.0s; animation-duration: 4.2s; }
.sw-drip--7 { left: 87%; width: 10px; animation-delay: 3.8s; animation-duration: 3.7s; }

.sw-drip--side-l,
.sw-drip--side-r { display: none; }

@keyframes swCheeseDrip {
  0%   { height: 0;    opacity: 0;   border-radius: 0 0 45% 45% / 0 0 100% 100%; }
  8%   { height: 3px;  opacity: 1; }
  55%  { height: 22px; opacity: 1;   border-radius: 0 0 40% 40% / 0 0 80% 80%; }
  78%  { height: 18px; opacity: 1;   border-radius: 0 0 50% 50% / 0 0 100% 100%; }
  95%  { height: 4px;  opacity: 0.6; }
  100% { height: 0;    opacity: 0; }
}

/* ── SALADE VERTE ── */
.sw--lettuce {
  height: 20px;
  background: linear-gradient(135deg,
    #3aaa20 0%, #2d8a16 30%, #1e6010 60%, #3db828 80%, #28a018 100%);
  clip-path: polygon(
    0% 60%, 4% 20%, 10% 50%, 16% 10%, 24% 45%, 30% 5%,
    38% 40%, 45% 8%, 53% 42%, 60% 6%, 68% 38%, 75% 2%,
    83% 35%, 90% 10%, 96% 45%, 100% 20%, 100% 90%,
    94% 70%, 87% 95%, 80% 68%, 73% 92%, 66% 65%,
    58% 90%, 50% 60%, 42% 88%, 34% 62%, 26% 90%,
    18% 65%, 10% 92%, 4% 70%
  );
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  --dur: 6.3s; --del: 0.9s; --lift: -12px; --rot: 1deg; --rot2: -1.2deg;
}

.sw__lettuce-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(80,200,50,0.3) 0%, transparent 30%,
    rgba(50,160,20,0.2) 50%, transparent 70%,
    rgba(80,200,50,0.25) 100%
  );
  clip-path: inherit;
}

/* ── TOMATE ── */
.sw--tomato {
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 20px;
  --dur: 6.8s; --del: 1.1s; --lift: -8px; --rot: -0.4deg; --rot2: 0.4deg;
}

.sw__tom-slice {
  flex: 1;
  height: 14px;
  border-radius: 6px;
  background:
    radial-gradient(ellipse at 35% 30%, #ff6a45 0%, #e02010 50%, #aa1000 100%);
  box-shadow:
    inset 0 3px 6px rgba(255,120,90,0.4),
    inset 0 -2px 4px rgba(80,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.1),
    0 3px 8px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.sw__tom-slice::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: radial-gradient(ellipse at 40% 40%, rgba(255,150,120,0.2), transparent 70%);
  border-radius: 4px;
}

/* ── SRIRACHA ── */
.sw--sriracha {
  height: 9px;
  background: linear-gradient(90deg,
    transparent 3%,
    rgba(210,30,10,0.8) 12%, rgba(230,45,15,0.92) 35%,
    rgba(240,55,20,0.95) 50%, rgba(230,45,15,0.92) 65%,
    rgba(210,30,10,0.8) 88%, transparent 97%);
  border-radius: 4px;
  margin-top: -2px;
  width: 90%;
  --dur: 6.5s; --del: 1.3s; --lift: -7px;
}

/* ── PAIN BAS ── */
.sw--bread-bottom {
  height: 28px;
  background:
    radial-gradient(ellipse at 35% 20%, #dba045 0%, #b86818 40%, #804010 75%, #502208 100%);
  border-radius: 6px 6px 32px 32px / 8px 8px 48px 48px;
  box-shadow:
    inset 0 5px 14px rgba(220,160,70,0.3),
    inset 0 -10px 20px rgba(40,12,0,0.55),
    inset -6px 0 14px rgba(60,20,0,0.2),
    0 14px 36px rgba(0,0,0,0.7),
    0 4px 10px rgba(0,0,0,0.5);
  overflow: hidden;
  --dur: 6.2s; --del: 1.5s; --lift: -4px;
}

.sw__base-shine {
  position: absolute;
  top: 6px; left: 15%; width: 40%; height: 10px;
  background: radial-gradient(ellipse, rgba(255,220,140,0.3), transparent 70%);
  border-radius: 50%;
}

/* ── VAPEUR ── */
.sandwich__steam {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
}

.steam {
  display: block;
  width: 4px; height: 32px;
  background: linear-gradient(to top, transparent, rgba(240,237,232,0.3), transparent);
  border-radius: 4px;
  animation: steamRise 2.8s ease-in-out infinite;
}

.steam--1 { animation-delay: 0s;   width: 3px; }
.steam--2 { animation-delay: 0.5s; width: 5px; }
.steam--3 { animation-delay: 1.1s; width: 3px; }
.steam--4 { animation-delay: 1.7s; width: 4px; }

@keyframes steamRise {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  25%  { opacity: 0.9; }
  100% { transform: translateY(-55px) scaleX(2); opacity: 0; }
}

/* ── OMBRE SOL ── */
.sandwich__shadow {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  width: 340px; height: 22px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.75) 0%, transparent 70%);
  filter: blur(10px);
}

/* Platform glow */
.burger__platform-glow, .sandwich__platform-glow {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(37,212,96,0.3) 0%, transparent 70%);
  filter: blur(20px);
  animation: platformPulse 7s ease-in-out infinite;
}

@keyframes platformPulse {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* Sauce dots */
.sauce-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--green-glow);
  animation: saucePop 3s ease-in-out infinite;
}

.sauce-dot--1 { width: 5px;  height: 5px;  top: 42%; right: 8%;  animation-delay: 0s; }
.sauce-dot--2 { width: 8px;  height: 8px;  top: 55%; right: 4%;  animation-delay: 0.7s; }
.sauce-dot--3 { width: 4px;  height: 4px;  top: 65%; right: 10%; animation-delay: 1.3s; }
.sauce-dot--4 { width: 10px; height: 10px; top: 48%; right: 2%;  animation-delay: 1.8s; }
.sauce-dot--5 { width: 6px;  height: 6px;  top: 72%; right: 6%;  animation-delay: 2.2s; }
.sauce-dot--6 { width: 4px;  height: 4px;  top: 38%; right: 14%; animation-delay: 0.4s; }

@keyframes saucePop {
  0%,100% { transform: scale(0); opacity: 0; }
  50%      { transform: scale(1); opacity: 0.85; }
}

/* ════════════════════════════════════════════════════════════════
   3D ROTATING SANDWICH — Ultimate CSS Masterpiece
   ════════════════════════════════════════════════════════════════ */

/* ── Scene wrapper: sets perspective ── */
.sandwich-scene {
  width: 440px;
  height: 560px;
  position: relative;
  perspective: 1000px;
  flex-shrink: 0;
}

/* ── Float layer: vertical bob ── */
.sandwich-float {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: floatSandwich 4s ease-in-out infinite;
  position: relative;
}

@keyframes floatSandwich {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-18px); }
}

/* ── Rotate layer: full Y spin with X tilt ── */
.sandwich-wrap {
  transform-style: preserve-3d;
  animation: rotateSandwich 14s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: 280px;
  margin-top: -140px;
  margin-left: -185px;
}

@keyframes rotateSandwich {
  0%   { transform: rotateY(0deg)   rotateX(12deg); }
  100% { transform: rotateY(360deg) rotateX(12deg); }
}

/* ── All ingredients share base positioning ── */
.ingredient {
  position: absolute;
  left: 50%;
  transform-style: preserve-3d;
}

/* ════════ CIABATTA TOP ════════ */
.ciabatta-top {
  width: 360px;
  height: 72px;
  background:
    radial-gradient(ellipse at 28% 22%, #f8e080 0%, #d4920e 30%,
      #a86010 58%, #7a3e08 80%, #5a2604 100%);
  border-radius: 50% 50% 28% 28% / 42% 42% 18% 18%;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.6),
    inset 0 4px 12px rgba(255,210,100,0.35),
    inset 0 -4px 10px rgba(0,0,0,0.4),
    0 0 60px rgba(200,140,20,0.12);
  top: 0;
  margin-left: -180px;
  transform: translateZ(70px);
  overflow: hidden;
  position: absolute;
}

/* Flour dots via multiple radial gradients */
.ciabatta-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 2px at 15% 38%, rgba(255,245,210,0.55) 100%, transparent 100%),
    radial-gradient(circle 2.5px at 27% 52%, rgba(255,245,210,0.45) 100%, transparent 100%),
    radial-gradient(circle 1.5px at 40% 32%, rgba(255,245,210,0.5) 100%, transparent 100%),
    radial-gradient(circle 2px at 54% 48%, rgba(255,245,210,0.5) 100%, transparent 100%),
    radial-gradient(circle 3px at 66% 35%, rgba(255,245,210,0.45) 100%, transparent 100%),
    radial-gradient(circle 1.5px at 79% 55%, rgba(255,245,210,0.4) 100%, transparent 100%),
    radial-gradient(circle 2px at 88% 38%, rgba(255,245,210,0.5) 100%, transparent 100%),
    radial-gradient(circle 2px at 10% 60%, rgba(255,245,210,0.35) 100%, transparent 100%);
}

.cib-shine {
  position: absolute;
  top: 12px; left: 18%; width: 55%; height: 28px;
  background: radial-gradient(ellipse, rgba(255,248,200,0.55) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-4deg);
}
.cib-shine--bot {
  top: 6px; left: 15%; width: 45%; height: 18px;
  background: radial-gradient(ellipse, rgba(255,230,150,0.3) 0%, transparent 70%);
}

/* Score lines on the bun */
.cib-score {
  position: absolute;
  width: 2px;
  height: 55%;
  top: 16%;
  background: linear-gradient(180deg,
    transparent 0%, rgba(50,18,0,0.6) 30%,
    rgba(40,12,0,0.55) 65%, transparent 100%);
  border-radius: 2px;
  transform: rotate(-8deg);
}
.cib-score--1 { left: 25%; }
.cib-score--2 { left: 45%; }
.cib-score--3 { left: 65%; }

/* ════════ SAUCE TOP ════════ */
.sauce-top {
  width: 320px;
  height: 18px;
  background: linear-gradient(135deg,
    #ff7a2a 0%, #ff4500 40%, #ff9000 70%, #e55a00 100%);
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow:
    0 4px 16px rgba(255,100,0,0.55),
    0 0 40px rgba(255,80,0,0.2);
  top: 66px;
  margin-left: -160px;
  transform: translateZ(50px);
  position: absolute;
}

/* ════════ CHEDDAR ════════ */
.cheddar {
  width: 340px;
  height: 26px;
  background: linear-gradient(135deg,
    #ffe055 0%, #f5b800 28%, #ffd700 55%, #e8a000 78%, #c87800 100%);
  border-radius: 6px;
  box-shadow:
    0 6px 20px rgba(240,165,0,0.65),
    inset 0 2px 6px rgba(255,255,180,0.5),
    inset 0 -3px 6px rgba(120,60,0,0.25),
    0 0 50px rgba(255,200,0,0.15);
  top: 80px;
  margin-left: -170px;
  transform: translateZ(38px);
  overflow: visible;
  position: absolute;
}

.ched-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,255,200,0.3) 40%,
    rgba(255,255,180,0.15) 60%, transparent 100%);
  border-radius: inherit;
}

/* ── Drips ── */
.drip {
  position: absolute;
  top: 100%;
  background: linear-gradient(180deg,
    #ffe060 0%, #f5c000 20%, #e8a800 50%, #d08800 75%, #a06000 100%);
  border-radius: 0 0 50% 50%;
  box-shadow:
    inset 1px 0 3px rgba(255,240,100,0.4),
    inset -1px 0 2px rgba(120,60,0,0.3);
}
.drip::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 28%;
  height: 38%;
  background: linear-gradient(180deg, rgba(255,248,160,0.6), transparent);
  border-radius: 50%;
}

.drip-1 { width: 12px; left:  40px; animation: drip1 3s   ease-in-out infinite; }
.drip-2 { width:  9px; left: 110px; animation: drip2 3.5s ease-in-out 0.5s infinite; }
.drip-3 { width: 14px; right: 60px; animation: drip3 4s   ease-in-out 1s   infinite; }
.drip-4 { width:  8px; right:130px; animation: drip4 3.2s ease-in-out 1.5s infinite; }

@keyframes drip1 {
  0%   { height: 0;    opacity: 0;   }
  20%  { height: 4px;  opacity: 1;   }
  70%  { height: 46px; opacity: 1;   }
  90%  { height: 52px; opacity: 0.3; }
  100% { height: 0;    opacity: 0;   }
}
@keyframes drip2 {
  0%   { height: 0;    opacity: 0;   }
  25%  { height: 3px;  opacity: 1;   }
  65%  { height: 36px; opacity: 1;   }
  85%  { height: 42px; opacity: 0.2; }
  100% { height: 0;    opacity: 0;   }
}
@keyframes drip3 {
  0%   { height: 0;    opacity: 0;   }
  15%  { height: 4px;  opacity: 1;   }
  75%  { height: 56px; opacity: 1;   }
  90%  { height: 62px; opacity: 0.3; }
  100% { height: 0;    opacity: 0;   }
}
@keyframes drip4 {
  0%   { height: 0;    opacity: 0;   }
  30%  { height: 3px;  opacity: 1;   }
  60%  { height: 30px; opacity: 1;   }
  80%  { height: 36px; opacity: 0.2; }
  100% { height: 0;    opacity: 0;   }
}

/* ════════ CHICKEN ════════ */
.chicken {
  width: 330px;
  height: 56px;
  background: linear-gradient(135deg,
    #d49020 0%, #a05018 22%,
    #e4b030 45%, #b87020 68%,
    #d49020 100%);
  border-radius: 6px;
  box-shadow:
    0 8px 22px rgba(0,0,0,0.5),
    inset 0 3px 8px rgba(255,200,100,0.25),
    inset 0 -6px 14px rgba(40,12,0,0.5);
  top: 106px;
  margin-left: -165px;
  transform: translateZ(22px);
  overflow: hidden;
  position: absolute;
}

.chk-grill {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      95deg,
      transparent 0px, transparent 18px,
      rgba(0,0,0,0.18) 18px, rgba(0,0,0,0.18) 20px
    ),
    repeating-linear-gradient(
      175deg,
      transparent 0px, transparent 12px,
      rgba(0,0,0,0.08) 12px, rgba(0,0,0,0.08) 13px
    );
}
.chk-shine {
  position: absolute;
  top: 10%; left: 8%; width: 40%; height: 40%;
  background: radial-gradient(ellipse,
    rgba(255,230,160,0.22) 0%, transparent 70%);
  border-radius: 50%;
}

/* ════════ CARAMELISED ONIONS ════════ */
.onions {
  width: 300px;
  height: 30px;
  background: linear-gradient(135deg,
    #c48028 0%, #8b5a0a 38%, #d89830 65%, #a06812 100%);
  border-radius: 42% 58% 52% 68% / 58% 42% 68% 52%;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 2px 5px rgba(255,210,110,0.35),
    inset 0 -3px 6px rgba(40,15,0,0.4);
  top: 160px;
  margin-left: -150px;
  transform: translateZ(12px);
  overflow: hidden;
  position: absolute;
}

/* Strand lines suggesting caramelised texture */
.onion-strand {
  position: absolute;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,220,140,0.4);
}
.onion-strand--1 { width: 70%; top: 8px;  left: 5%;  transform: rotate(-3deg); }
.onion-strand--2 { width: 55%; top: 15px; left: 20%; transform: rotate( 2deg); }
.onion-strand--3 { width: 40%; top: 21px; left: 35%; transform: rotate(-1deg); }

/* ════════ SAUCE BOTTOM ════════ */
.sauce-bottom {
  width: 310px;
  height: 16px;
  background: linear-gradient(135deg,
    #ff7a2a 0%, #ff4500 50%, #ff9000 100%);
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow: 0 4px 14px rgba(255,100,0,0.45);
  top: 188px;
  margin-left: -155px;
  transform: translateZ(6px);
  position: absolute;
}

/* ════════ CIABATTA BOTTOM ════════ */
.ciabatta-bottom {
  width: 370px;
  height: 52px;
  background: linear-gradient(145deg,
    #d8a820 0%, #c88010 28%, #a06010 55%, #804008 78%, #5a2808 100%);
  border-radius: 18% 18% 52% 52% / 16% 16% 44% 44%;
  box-shadow:
    0 12px 36px rgba(0,0,0,0.7),
    0 4px 12px rgba(0,0,0,0.5),
    inset 0 4px 10px rgba(220,170,70,0.25),
    inset 0 -8px 20px rgba(40,10,0,0.5);
  top: 202px;
  margin-left: -185px;
  transform: translateZ(0px);
  overflow: hidden;
  position: absolute;
}

/* ════════ SANDWICH GLOW ════════ */
.sandwich-glow {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 80px;
  background: radial-gradient(ellipse,
    rgba(255,140,0,0.35) 0%,
    rgba(255,200,0,0.15) 40%,
    transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: sw3GlowPulse 4s ease-in-out infinite;
}

@keyframes sw3GlowPulse {
  0%,100% { opacity: 0.5; transform: translateX(-50%) scaleX(0.9); }
  50%      { opacity: 1;   transform: translateX(-50%) scaleX(1.1); }
}

/* ════════ GROUND SHADOW ════════ */
.sandwich-shadow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 280px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: sw3ShadowPulse 4s ease-in-out infinite;
}

@keyframes sw3ShadowPulse {
  0%,100% { transform: translateX(-50%) scaleX(0.8); opacity: 0.4; }
  50%      { transform: translateX(-50%) scaleX(1.1); opacity: 0.75; }
}

/* ════════ FLOATING PARTICLES ════════ */
.sw3-p {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: sw3Particle var(--dur, 5s) ease-in-out infinite var(--del, 0s);
}

.sw3-p--1  { width:5px; height:5px; background:rgba(255,140,0,0.9);  top:15%; left: 5%; --dur:4.2s; --del:0s;   --dy:-35px; --dx:12px;  }
.sw3-p--2  { width:7px; height:7px; background:rgba(255,215,0,0.9);  top:25%; left:85%; --dur:5.8s; --del:.8s;  --dy:-28px; --dx:-15px; }
.sw3-p--3  { width:4px; height:4px; background:rgba(37,212,96,0.7);  top:60%; left: 8%; --dur:3.5s; --del:1.2s; --dy:-45px; --dx:8px;   }
.sw3-p--4  { width:6px; height:6px; background:rgba(255,140,0,0.9);  top:70%; left:88%; --dur:6.1s; --del:.3s;  --dy:-30px; --dx:-10px; }
.sw3-p--5  { width:3px; height:3px; background:rgba(255,215,0,0.9);  top:40%; left:92%; --dur:4.7s; --del:2.1s; --dy:-40px; --dx:-14px; }
.sw3-p--6  { width:6px; height:6px; background:rgba(37,212,96,0.7);  top:80%; left:15%; --dur:5.3s; --del:.6s;  --dy:-32px; --dx:18px;  }
.sw3-p--7  { width:4px; height:4px; background:rgba(255,140,0,0.9);  top:10%; left:72%; --dur:3.8s; --del:1.8s; --dy:-25px; --dx:-8px;  }
.sw3-p--8  { width:8px; height:8px; background:rgba(255,215,0,0.7);  top:50%; left: 2%; --dur:6.5s; --del:.4s;  --dy:-20px; --dx:6px;   }
.sw3-p--9  { width:3px; height:3px; background:rgba(37,212,96,0.9);  top:85%; left:60%; --dur:4.0s; --del:2.8s; --dy:-38px; --dx:-5px;  }
.sw3-p--10 { width:5px; height:5px; background:rgba(255,215,0,0.9);  top:35%; left:45%; --dur:5.0s; --del:1.5s; --dy:-42px; --dx:10px;  }

@keyframes sw3Particle {
  0%,100% { transform: translate(0, 0);                          opacity: 0;   }
  20%      { opacity: 1; }
  80%      { opacity: 0.6; }
  50%      { transform: translate(var(--dx,0), var(--dy,-35px)); opacity: 0.85; }
}

/* ── Hover: slow rotation + scale ── */
.sandwich-scene:hover .sandwich-wrap {
  animation-duration: 22s;
}
.sandwich-scene:hover {
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

/* ── Watermark sketch bonesto-og — remplacé par le fond hero ── */
.hero__sketch-watermark { display: none; }

/* ── Cadre rétro pointillé ── */
.hero__retro-frame {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(37,212,96,0.18);
  pointer-events: none;
  z-index: 0;
}

/* ── Ribbon hero ── */
.hero__ribbon {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero__ribbon-line {
  flex: 1;
  height: 1px;
  background: rgba(37,212,96,0.35);
  max-width: 50px;
}

.hero__ribbon-text {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-glow);
  font-style: italic;
}

/* ── Callout rétro ── */
.hero__callout {
  position: absolute;
  top: 8%;
  right: -55px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 2;
}

.hero__callout-arrow {
  font-size: 1.8rem;
  color: var(--green-glow);
  line-height: 1;
  margin-top: 4px;
  animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

.hero__callout-text {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  border: 1px solid rgba(37,212,96,0.3);
  padding: 10px 16px;
  border-radius: 4px;
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(8px);
}

/* ── Retro ribbon générique ── */
.retro-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-glow);
  border: 1px solid rgba(37,212,96,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-top: 16px;
  background: rgba(37,212,96,0.06);
}

/* ── Sparkles rétro ── */
.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  font-family: serif;
  color: var(--green-glow);
  opacity: 0;
  animation: sparklePulse var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
  font-size: var(--sz, 1rem);
}

.sparkle--1 { top: 12%; left: 8%;  --sz: 1.1rem; --dur: 3.5s; --del: 0s;   }
.sparkle--2 { top: 22%; left: 18%; --sz: 0.8rem; --dur: 4.2s; --del: 0.7s; }
.sparkle--3 { top: 8%;  left: 55%; --sz: 1.3rem; --dur: 3.8s; --del: 1.2s; }
.sparkle--4 { top: 30%; left: 72%; --sz: 0.7rem; --dur: 4.5s; --del: 0.3s; }
.sparkle--5 { top: 60%; left: 6%;  --sz: 0.9rem; --dur: 3.2s; --del: 1.8s; }
.sparkle--6 { top: 75%; left: 30%; --sz: 1.2rem; --dur: 4s;   --del: 0.9s; }
.sparkle--7 { top: 55%; left: 85%; --sz: 0.8rem; --dur: 3.6s; --del: 2.1s; }
.sparkle--8 { top: 80%; left: 70%; --sz: 1rem;   --dur: 4.3s; --del: 1.5s; }

@keyframes sparklePulse {
  0%,100% { opacity: 0;   transform: scale(0.6) rotate(0deg);   }
  40%      { opacity: 0.7; transform: scale(1.1) rotate(15deg);  }
  60%      { opacity: 0.5; transform: scale(0.9) rotate(-10deg); }
}

/* ── Hero sub small line ── */
.hero__sub-small {
  display: block;
  font-size: 0.82rem;
  color: var(--white-dim);
  margin-top: 6px;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ── Badge circulaire rétro ── */
.hero__retro-badge {
  position: absolute;
  bottom: -40px;
  right: 120px;
  width: 120px;
  height: 120px;
  color: var(--green-glow);
  opacity: 0.6;
  animation: badgeSpin 30s linear infinite;
}

.hero__badge-svg {
  width: 100%;
  height: 100%;
}

/* ── Badges décoratifs dans les sections ── */
.section-badge {
  position: absolute;
  pointer-events: none;
  color: var(--green-glow);
  animation: badgeSpin 30s linear infinite;
  z-index: 0;
}

.section-badge svg { width: 100%; height: 100%; }

.section-badge--concept {
  width: 100px; height: 100px;
  top: 40px; right: 60px;
  opacity: 0.18;
}

.section-badge--sf {
  width: 130px; height: 130px;
  bottom: 60px; left: 40px;
  opacity: 0.15;
  animation-direction: reverse;
}

.section-badge--valeurs {
  width: 90px; height: 90px;
  top: 30px; right: 80px;
  opacity: 0.18;
  animation-duration: 40s;
}

.section-badge--footer {
  width: 110px; height: 110px;
  top: 30px; left: 50%;
  opacity: 0.12;
  animation-direction: reverse;
  animation-duration: 35s;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Logo décoratif en filigrane partout sur le site ── */
.deco-logo {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  opacity: 0.04;
  z-index: 0;
}

.deco-logo--concept    { width: 220px; bottom: -20px; left: -40px;  transform: rotate(-12deg); opacity: 0.05; }
.deco-logo--sf         { width: 180px; top: 40px;     right: -30px; transform: rotate(8deg);   opacity: 0.04; }
.deco-logo--restaurants{ width: 200px; bottom: 0;     left: 50%;    transform: translateX(-50%) rotate(5deg); opacity: 0.04; }
.deco-logo--experience { width: 160px; top: 20px;     left: -20px;  transform: rotate(-6deg);  opacity: 0.05; }
.deco-logo--contact    { width: 200px; bottom: -10px; right: -20px; transform: rotate(10deg);  opacity: 0.04; }
.deco-logo--footer     { width: 240px; bottom: 20px;  right: 40px;  transform: rotate(-8deg);  opacity: 0.06; }

/* ── Franchise texture ── */
.franchise__texture {
  position: absolute;
  inset: 0;
  background-image: url('images/bonesto-style.png');
  background-size: 320px;
  background-repeat: repeat;
  opacity: 0.06;
  mix-blend-mode: luminosity;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white-dim));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.4; }
}

.hero__scroll-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ════════════════════════════════════════════════════════════════
   TICKER RETRO
   ════════════════════════════════════════════════════════════════ */
.retro-ticker {
  background: var(--green-accent);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.retro-ticker__track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
}

.retro-ticker__track span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
  flex-shrink: 0;
}

.retro-ticker__track span:nth-child(odd) {
  color: rgba(255,255,255,0.6);
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════════ */
#stats {
  background: var(--dark-2);
  border-top: 1px solid rgba(240,237,232,0.06);
  border-bottom: 1px solid rgba(240,237,232,0.06);
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 28px;
  padding-bottom: 28px;
  flex-wrap: wrap;
}

.stats__item {
  text-align: center;
  padding: 0 clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--green-glow);
  line-height: 1;
  display: inline;
}

.stats__unit {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--green-glow);
  line-height: 1;
}

.stats__label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 4px;
}

.stats__divider {
  width: 1px;
  height: 60px;
  background: rgba(240,237,232,0.1);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   NOTRE RESTAURANT (CONCEPT)
   ════════════════════════════════════════════════════════════════ */

/* Sketch texture subtile inspirée de bonesto-og */
#concept {
  position: relative;
  overflow: hidden;
}

#concept::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background-image: url('images/bonesto-og.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  filter: grayscale(1);
  transform: rotate(8deg);
  z-index: 0;
}

#concept .container { position: relative; z-index: 1; }

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.concept__heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.concept__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.concept__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-glow);
  margin-top: 12px;
  transition: gap 0.3s var(--ease);
}

.concept__link:hover { gap: 20px; }

.concept__link-arrow {
  transition: transform 0.3s var(--ease);
}

.concept__link:hover .concept__link-arrow {
  transform: translateX(6px);
}

/* Image stack */
.concept__images {
  position: relative;
  height: 500px;
}

.concept__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 76%;
  border-radius: 20px;
  overflow: hidden;
}

.concept__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.concept__img-main:hover img {
  transform: scale(1.05);
}

.concept__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 46%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--dark);
}

.concept__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.concept__img-accent:hover img {
  transform: scale(1.06);
}

.concept__badge {
  position: absolute;
  bottom: 52%;
  right: 48%;
  transform: translate(50%, 50%);
  background: var(--green-accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(26,110,53,0.5);
}

/* ════════════════════════════════════════════════════════════════
   SAVOIR-FAIRE
   ════════════════════════════════════════════════════════════════ */
#savoir-faire {
  position: relative;
  padding-bottom: 0;
}

#savoir-faire::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/bonesto-style.png');
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.028;
  pointer-events: none;
  mix-blend-mode: luminosity;
}

.sf__accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--green-glow), var(--green-accent));
}

.sf__header {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 48px);
}

.sf__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.sf__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.sf__card {
  background: var(--dark-2);
  border: 1px solid rgba(240,237,232,0.05);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sf__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.sf__card:hover {
  transform: translateY(-10px);
  border-color: rgba(26,110,53,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(26,110,53,0.2);
}

.sf__card:hover::after {
  transform: scaleX(1);
}

.sf__card-icon {
  width: 48px;
  height: 48px;
  color: var(--green-glow);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf__card-icon svg { width: 100%; height: 100%; }
.sf__card-icon span { line-height: 1; }

.sf__card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.sf__card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.sf__card-bar { display: none; }

/* Parallax fullwidth image */
.sf__fullwidth {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.sf__parallax-img {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sf__fullwidth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.7) 40%,
    rgba(5,5,5,0.1) 100%
  );
}

.sf__quote {
  position: absolute;
  top: 50%;
  left: clamp(32px, 6vw, 80px);
  transform: translateY(-50%);
  max-width: 560px;
}

.sf__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.sf__quote cite {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ════════════════════════════════════════════════════════════════
   NOS PRODUITS
   ════════════════════════════════════════════════════════════════ */
.produits__header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 44px);
}

.produits__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

/* Sandwich hero block */
.produits__hero {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-cont);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(240,237,232,0.05);
}

.produits__hero-img {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.produits__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.produits__hero:hover .produits__hero-img img {
  transform: scale(1.05);
}

.produits__hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--green-accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
}

.produits__hero-text {
  padding: 48px 48px 48px 0;
}

.produits__hero-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-glow);
  margin-bottom: 16px;
}

.produits__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.produits__hero-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 28px;
}

.produits__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(26,110,53,0.5);
  color: var(--green-glow);
  transition: background 0.3s, border-color 0.3s;
}

.tag:hover {
  background: rgba(26,110,53,0.2);
  border-color: var(--green-glow);
}

/* Secondary products grid */
.produits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.produits__card {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
}

.produits__card-img {
  position: absolute;
  inset: 0;
}

.produits__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.produits__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.5) 40%,
    transparent 70%
  );
  transition: background 0.4s;
}

.produits__card:hover .produits__card-img img {
  transform: scale(1.12);
}

.produits__card:hover .produits__card-overlay {
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.96) 0%,
    rgba(5,5,5,0.7) 50%,
    rgba(5,5,5,0.1) 80%
  );
}

.produits__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}

.produits__card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.produits__card-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════════
   NOS RESTAURANTS
   ════════════════════════════════════════════════════════════════ */

.restaurants__header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 44px);
}

.restaurants__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.restaurants__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

#restaurants .container {
  max-width: 1920px;
}

.resto__card {
  border-radius: var(--radius-cont);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(240,237,232,0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.resto__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.resto__img {
  position: relative;
  height: 440px;
  overflow: hidden;
}

.resto__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.resto__card:hover .resto__img img {
  transform: scale(1.06);
}


.resto__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 50%);
}

.resto__info {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resto__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-glow);
  margin-bottom: 14px;
}

.resto__badge::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.resto__badge--ferme {
  color: #ff4d4d;
}

.resto__hours {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  margin-top: -8px;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.resto__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.resto__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.resto__address-icon {
  color: var(--green-glow);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.resto__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.resto__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-glow);
  border: 1px solid rgba(37,212,96,0.3);
  padding: 9px 16px;
  border-radius: 6px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.resto__link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.resto__link:hover {
  background: rgba(37,212,96,0.1);
  border-color: var(--green-glow);
  transform: translateY(-2px);
}

.waze-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s;
}

.resto__link--waze:hover .waze-logo {
  transform: scale(1.15);
}

.resto__link--waze {
  color: var(--green-glow);
  border-color: rgba(37,212,96,0.3);
}

.resto__link--waze:hover {
  background: rgba(37,212,96,0.1);
  border-color: var(--green-glow);
}

@media (max-width: 768px) {
  .restaurants__grid { grid-template-columns: 1fr; }
  .resto__img { height: 240px; }
}

/* ════════════════════════════════════════════════════════════════
   NOTRE ESPACE
════════════════════════════════════════════════════════════════ */

.espace { background: var(--black); }

/* Header */
.espace__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.espace__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}

.espace__heading--green { color: var(--green-glow); }

.espace__intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* Rows alternés image + texte */
.espace__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin-bottom: 6px;
}

.espace__row--2 { direction: ltr; }

.espace__row-img {
  position: relative;
  overflow: hidden;
}

.espace__row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.espace__row-img:hover img { transform: scale(1.04); }

.espace__row-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.espace__row-text {
  background: #0d0d0d;
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.espace__row-deco {
  width: 40px;
  height: 3px;
  background: var(--green-glow);
  border-radius: 2px;
}

.espace__row-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.espace__row-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
}

.espace__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.espace__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.espace__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-glow);
  box-shadow: 0 0 6px rgba(37,212,96,0.5);
}

.espace__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  border-left: 2px solid var(--green-accent);
  padding-left: 20px;
  margin: 0;
}

/* Reveal directional */
.reveal--left  {
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.reveal--right {
  transform: translateX(60px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.reveal--left.is-visible,
.reveal--right.is-visible {
  transform: translateX(0);
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .espace__row { grid-template-columns: 1fr; min-height: auto; }
  .espace__row-img { height: 50vw; min-height: 260px; }
  .espace__row--2 .espace__row-img { order: -1; }
}

/* ════════════════════════════════════════════════════════════════
   L'EXPÉRIENCE
   ════════════════════════════════════════════════════════════════ */
.exp__header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 44px);
}

.exp__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

/* Masonry grid */
.exp__masonry {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 20px;
  margin-bottom: 64px;
}

.exp__item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}

.exp__item--tall {
  grid-row: 1 / 3;
}

.exp__item--wide {
  grid-column: 2 / 4;
}

.exp__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.exp__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.exp__item:hover img {
  transform: scale(1.06);
}

.exp__item:hover .exp__item-overlay {
  opacity: 1;
}

.exp__item-caption {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* Quote */
.exp__quote-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 0 clamp(20px, 10%, 200px);
}

.exp__quote-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.exp__quote p {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.exp__quote cite {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ════════════════════════════════════════════════════════════════
   NOS VALEURS
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   BORNES DE COMMANDE
   ════════════════════════════════════════════════════════════════ */
.bornes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.bornes__visual {
  position: relative;
}

.bornes__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(26,110,53,0.3),
    0 24px 60px rgba(0,0,0,0.7),
    0 0 40px rgba(26,110,53,0.08);
}

.bornes__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.6s var(--ease);
}

.bornes__frame:hover .bornes__img {
  transform: scale(1.03);
}

/* Coins décoratifs verts */
.bornes__frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--green-accent);
  border-style: solid;
  z-index: 2;
}
.bornes__frame-corner--tl { top: 12px;  left: 12px;  border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.bornes__frame-corner--tr { top: 12px;  right: 12px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.bornes__frame-corner--bl { bottom: 12px; left: 12px;  border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.bornes__frame-corner--br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.bornes__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.bornes__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(240,237,232,0.72);
  margin-bottom: 28px;
  max-width: 480px;
}

.bornes__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bornes__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(240,237,232,0.85);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

.bornes__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bornes__icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-accent);
}

@media (max-width: 768px) {
  .bornes__grid { grid-template-columns: 1fr; }
}
.valeurs__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.valeurs__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.valeurs__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.75;
}

.valeurs__list {
  padding-top: 8px;
}

.valeurs__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(240,237,232,0.08);
  transition: transform 0.35s var(--ease);
  cursor: default;
}

.valeurs__item:hover {
  transform: translateX(8px);
}

.valeurs__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-accent);
  line-height: 1;
  padding-top: 4px;
}

.valeurs__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.valeurs__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   FRANCHISE BAND
   ════════════════════════════════════════════════════════════════ */
.franchise {
  position: relative;
  background: var(--green-mid);
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: hidden;
}

.franchise__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,232,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.franchise__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.franchise__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.03em;
}

.franchise__title-brand {
  color: var(--gold);
}

.franchise__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.franchise__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.contact__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  font-size: 1.1rem;
  color: var(--green-glow);
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.contact__detail-key {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact__detail-val {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
}

/* Form */
.contact__form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(240,237,232,0.06);
  border-radius: var(--radius-cont);
  padding: clamp(32px, 4vw, 48px);
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(240,237,232,0.05);
  border: 1px solid rgba(240,237,232,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem; /* ≥16px — prevents iOS Safari auto-zoom */
  font-weight: 300;
  color: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px; /* iOS touch target minimum */
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(240,237,232,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.field select option {
  background: var(--dark-2);
  color: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(240,237,232,0.3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-glow);
  box-shadow: 0 0 0 3px rgba(37,212,96,0.18), 0 0 24px rgba(37,212,96,0.12);
  background: rgba(240,237,232,0.07);
}

.field label {
  transition: color 0.3s ease, letter-spacing 0.3s var(--ease);
}

.field:focus-within label {
  color: var(--green-glow);
  letter-spacing: 0.18em;
}

/* Animation d'apparition au focus */
.field input,
.field select,
.field textarea {
  position: relative;
}

.field {
  position: relative;
}

.field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green-glow);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--green-glow);
}

.field:focus-within::after {
  width: 60%;
}

.form__btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--green-accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form__btn:hover:not(:disabled) {
  background: #1d8040;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,110,53,0.4);
}

.form__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form__btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form__btn.loading .form__btn-spinner { display: block; }
.form__btn.loading .form__btn-text::after { content: ' en cours…'; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success */
.form__success {
  display: none;
  align-items: center;
  gap: 16px;
  background: rgba(37,212,96,0.08);
  border: 1px solid rgba(37,212,96,0.3);
  border-radius: 12px;
  padding: 24px;
  color: var(--green-glow);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form__success.visible {
  display: flex;
}

.form__success svg {
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
#footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid rgba(240,237,232,0.06);
  padding-top: clamp(28px, 4vw, 52px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 60px;
}

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  display: none;
  margin-bottom: 16px;
}

.footer__claim {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.footer__nav-title {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(240,237,232,0.5);
  transition: color 0.25s;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--dark-2);
  border: 1px solid rgba(240,237,232,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer__social-btn svg {
  width: 16px;
  height: 16px;
}

.footer__social-btn:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: var(--white);
}

/* SINCE 1989 décoratif */
.footer__since {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.08em;
  color: rgba(240,237,232,0.04);
  line-height: 1;
  padding: 20px 0 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.footer__bottom {
  border-top: 1px solid rgba(240,237,232,0.06);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(240,237,232,0.35);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__burger-wrap { display: none; }
  .sandwich-scene   { display: none; }
  .hero__callout    { display: none; }

  .hero__content { max-width: 100%; }

  .hero__eyebrow { justify-content: center; }

  .hero__actions { justify-content: center; }

  .concept__grid { grid-template-columns: 1fr; }

  .concept__images { height: 380px; }

  .sf__grid { grid-template-columns: 1fr 1fr; }

  .produits__hero {
    grid-template-columns: 1fr;
  }

  .produits__hero-img { height: 320px; }

  .produits__hero-text { padding: 32px; }

  .produits__grid { grid-template-columns: repeat(3, 1fr); }

  .valeurs__grid { grid-template-columns: 1fr; }

  .franchise__inner { grid-template-columns: 1fr; text-align: center; }

  .franchise__right { align-items: center; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .nav__links { display: none; }

  .nav__toggle { display: flex; }
  .hero__callout { display: none; }
  .hero__retro-frame { display: none; }

  .hero__title { font-size: clamp(2.5rem, 10vw, 4.5rem); }

  .sf__grid { grid-template-columns: 1fr; }

  .sf__parallax-img { background-attachment: scroll; }

  .exp__masonry {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .exp__item--tall,
  .exp__item--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .exp__item { height: 260px; }

  .produits__grid { grid-template-columns: 1fr 1fr; }

  .stats__inner { gap: 0; }

  .stats__divider { height: 40px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .hero__title { font-size: 2.5rem; }

  .btn { width: 100%; justify-content: center; }

  .hero__actions { flex-direction: column; }

  .produits__hero-text { padding: 24px; }

  .produits__grid { grid-template-columns: 1fr 1fr; }

  .contact__form-wrap { padding: 24px; }

  .footer__inner { grid-template-columns: 1fr; }

  .concept__images { height: 300px; }

  .stats__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats__divider { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   iOS SAFE AREA — iPhone encoche / Dynamic Island
   ════════════════════════════════════════════════════════════════ */

/* Nav: padding-top pour Dynamic Island en landscape */
#nav {
  padding-left:  env(safe-area-inset-left,  0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Footer bottom: espace pour le home indicator iOS */
.footer__bottom {
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

/* Nav overlay mobile: prend tout l'écran y compris les zones sûres */
.nav__overlay {
  padding-top:    env(safe-area-inset-top,    0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left:   env(safe-area-inset-left,   0px);
  padding-right:  env(safe-area-inset-right,  0px);
}

/* Waze : lien app sur mobile, lien web sur desktop */
.waze-mobile  { display: none; }
.waze-desktop { display: inline-flex; }

@media (hover: none), (max-width: 768px) {
  .waze-mobile  { display: inline-flex; }
  .waze-desktop { display: none; }
}

/* Touch targets minimum 44px pour tous les éléments interactifs */
.footer__social-btn {
  min-width:  44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__toggle {
  min-width:  44px;
  min-height: 44px;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — iPhone & Android polish
   ════════════════════════════════════════════════════════════════ */

/* iOS tap highlight + smoothing */
* {
  -webkit-tap-highlight-color: transparent;
}

a, button, [role="button"] {
  -webkit-touch-callout: none;
  touch-action: manipulation; /* removes 300ms tap delay on iOS */
}

@media (max-width: 768px) {

  /* ─── Nav réduit sur mobile ─── */
  :root { --nav-h: 80px; }

  .nav__logo-img {
    height: 56px;
    filter: drop-shadow(0 0 12px rgba(37,212,96,0.18));
  }

  .nav__logo-text {
    font-size: 1.6rem;
  }

  /* ─── Container padding mobile ─── */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ─── Section padding réduit ─── */
  :root { --section-py: clamp(48px, 9vw, 72px); }

  /* ─── Hero mobile ─── */
  #hero {
    padding-top: calc(var(--nav-h) + 24px);
    min-height: 100svh;
  }

  .hero__container { gap: 0; }

  .hero__eyebrow {
    margin-bottom: 20px;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero__title {
    margin-bottom: 24px;
    line-height: 0.95;
    letter-spacing: 0.01em;
  }

  .hero__ribbon { margin-bottom: 16px; }

  .hero__sub {
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero__sub-small { font-size: 0.85rem; }

  /* ─── Boutons mobile ─── */
  .btn {
    padding: 14px 24px;
    font-size: 0.78rem;
    min-height: 48px;
  }

  /* ─── Stats : grid 2x2 ─── */
  .stats__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    padding: 32px 0;
  }

  .stats__divider { display: none; }

  .stats__num { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .stats__label { font-size: 0.7rem; }

  /* ─── Sections heading sizes ─── */
  .concept__heading { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .concept__images { height: 320px; margin-top: 32px; }

  .sf__card { padding: 32px 24px; }
  .sf__heading { font-size: clamp(2rem, 8vw, 3rem); }

  .espace__heading { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .espace__row-text { padding: 32px 24px; }

  .restaurants__heading { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .resto__info { padding: 24px; }
  .resto__name { font-size: 1.4rem; }

  .bornes__heading { font-size: clamp(2rem, 8vw, 3rem); }
  .bornes__text { padding-top: 32px; }

  .valeurs__heading { font-size: clamp(2rem, 8vw, 3rem); }
  .valeurs__num { font-size: 2.2rem; }
  .valeurs__title { font-size: 1.05rem; }

  .franchise__title { font-size: clamp(2rem, 8vw, 3rem); }
  .franchise__inner { padding: 48px 0; gap: 28px; }

  .contact__heading { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .contact__form-wrap { padding: 28px 24px; border-radius: 16px; }

  .field { margin-bottom: 18px; }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px; /* prévient zoom auto iOS */
    padding: 14px 16px;
  }

  /* ─── Footer ─── */
  .footer__inner { gap: 32px; }
  .footer__since {
    font-size: clamp(3rem, 16vw, 7rem);
    letter-spacing: 0.1em;
  }

  /* ─── Désactive les effets coûteux pour la perf mobile ─── */
  body::before { display: none; } /* film grain */
  .hero__bg::after { display: none; } /* gradient mesh */
  .hero__sparkles { display: none; }
  .hero__particles { display: none; }
  .hero__retro-badge { display: none; }
  .deco-logo { opacity: 0.04 !important; }

  .scroll-progress { height: 2px; }

  /* ─── Désactive transforms hover sur mobile ─── */
  .sf__card:hover,
  .resto__card:hover,
  .valeurs__item:hover,
  .btn:hover {
    transform: none !important;
  }

  /* ─── Texte plus lisible ─── */
  body {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ─── Section transitions plus fines ─── */
  .section::before,
  .section::after {
    height: 40px;
  }
}

/* ─── iPhone très petit (≤ 380px) ─── */
@media (max-width: 380px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__title { font-size: 2.1rem; }
  .nav__logo-img { height: 48px; }
  .nav__logo-text { font-size: 1.4rem; }
}

/* ─── Landscape iPhone ─── */
@media (max-width: 900px) and (orientation: landscape) {
  #hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 40px;
  }
  .hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 16px;
  }
  .hero__sub { margin-bottom: 20px; }
}

/* ─── Touch devices : tap targets confortables ─── */
@media (hover: none), (pointer: coarse) {
  .nav__overlay-links a {
    padding: 12px 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM AWWWARDS-LEVEL POLISH
   ════════════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--green-accent) 0%,
    var(--green-glow) 50%,
    var(--green-accent) 100%
  );
  box-shadow: 0 0 12px rgba(37,212,96,0.7);
  z-index: 200;
  transform-origin: left center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ── Custom cursor (desktop only) ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s;
  will-change: transform;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--white);
  transform: translate(-50%, -50%);
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-dot {
  width: 0;
  height: 0;
}

body.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--green-glow);
  background: rgba(37,212,96,0.08);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Hide native cursor when custom cursor active (mouse devices only) */
@media (hover: hover) and (pointer: fine) {
  body.cursor-active,
  body.cursor-active a,
  body.cursor-active button,
  body.cursor-active input,
  body.cursor-active textarea,
  body.cursor-active select {
    cursor: none;
  }
}

/* ── Magnetic buttons (translate via JS var) ── */
.magnetic {
  display: inline-block;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

/* ── 3D tilt cards ── */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}

.tilt > * {
  transform: translateZ(0);
}

/* ── H2 reveal masks (clip-path word-by-word) ── */
.h2-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.h2-reveal__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}

.h2-reveal.is-visible .h2-reveal__inner {
  transform: translateY(0);
}

/* ── Image reveal with clip-path mask ── */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s var(--ease), transform 1.4s var(--ease);
}

.img-reveal.is-visible img {
  clip-path: inset(0 0 0 0);
}

.img-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-accent);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.8s var(--ease);
}

.img-reveal.is-visible::before {
  transform: scaleX(1);
  transform-origin: right center;
  animation: imgRevealSwipe 1.4s var(--ease) forwards;
}

@keyframes imgRevealSwipe {
  0%   { transform: scaleX(0); transform-origin: left center; }
  50%  { transform: scaleX(1); transform-origin: left center; }
  51%  { transform-origin: right center; }
  100% { transform: scaleX(0); transform-origin: right center; }
}

/* ── Ticker pause on hover ── */
.retro-ticker:hover .retro-ticker__track {
  animation-play-state: paused;
}

/* ── Hero animated gradient mesh ── */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(37,212,96,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(26,110,53,0.05) 0%, transparent 60%);
  filter: blur(40px);
  animation: meshDrift 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes meshDrift {
  0%,100% { transform: translate(0, 0) scale(1);     }
  33%     { transform: translate(2%, -2%) scale(1.05); }
  66%     { transform: translate(-2%, 2%) scale(0.97); }
}

/* ════════════════════════════════════════════════════════════════
   MICRO-INTERACTIONS — animations pertinentes
   ════════════════════════════════════════════════════════════════ */

/* ── Bouton primaire : shimmer effect au hover ── */
.btn--fill {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.btn--fill:hover::before {
  left: 130%;
}

/* ── Icones savoir-faire : rotation au hover de la card ── */
.sf__card-icon {
  transition: transform 0.6s var(--ease), color 0.4s ease;
}

.sf__card:hover .sf__card-icon {
  transform: rotate(-8deg) scale(1.12);
  color: var(--green-accent);
}

/* ── Numéros "01-04" des valeurs : glow + scale au hover ── */
.valeurs__item {
  transition: transform 0.4s var(--ease);
}

.valeurs__item:hover {
  transform: translateX(6px);
}

.valeurs__num {
  transition: transform 0.5s var(--ease), color 0.4s ease, text-shadow 0.4s ease;
}

.valeurs__item:hover .valeurs__num {
  transform: scale(1.08);
  color: var(--green-glow);
  text-shadow: 0 0 24px rgba(37,212,96,0.5);
}

/* ── Boutons sociaux footer : pop + rotation subtile ── */
.footer__social-btn {
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}

.footer__social-btn:hover {
  transform: translateY(-3px) rotate(-6deg);
  color: var(--green-glow);
}

/* ── Restaurant badge "Ouvert" : pulse vivant ── */
.resto__badge--status {
  position: relative;
}

.resto__badge--status::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-glow);
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--green-glow);
  animation: badgeDot 2s ease-in-out infinite;
}

.resto__badge--status.resto__badge--ferme::before {
  background: #c14040;
  box-shadow: 0 0 8px rgba(193,64,64,0.7);
  animation: none;
}

@keyframes badgeDot {
  0%,100% { opacity: 1;   transform: translateY(-50%) scale(1);   }
  50%     { opacity: 0.4; transform: translateY(-50%) scale(0.7); }
}

/* ── Coins du cadre des bornes : pulse séquentiel ── */
.bornes__frame-corner {
  animation: cornerPulse 3s ease-in-out infinite;
}

.bornes__frame-corner--tl { animation-delay: 0s;    }
.bornes__frame-corner--tr { animation-delay: 0.75s; }
.bornes__frame-corner--br { animation-delay: 1.5s;  }
.bornes__frame-corner--bl { animation-delay: 2.25s; }

@keyframes cornerPulse {
  0%,100% { opacity: 0.4; transform: scale(1);    }
  50%     { opacity: 1;   transform: scale(1.18); }
}

/* ── Concept badge : flottement doux ── */
.concept__badge {
  animation: badgeBob 4.5s ease-in-out infinite;
}

@keyframes badgeBob {
  0%,100% { transform: translateY(0px) rotate(0deg);   }
  50%     { transform: translateY(-6px) rotate(-1.5deg); }
}

/* ── Liens restaurants : flèche qui glisse ── */
.resto__link {
  position: relative;
  overflow: hidden;
}

.resto__link svg,
.resto__link .waze-logo {
  transition: transform 0.4s var(--ease);
}

.resto__link:hover svg,
.resto__link:hover .waze-logo {
  transform: translateX(3px) scale(1.1);
}

/* ── Lien concept "découvrir" : flèche bouge ── */
.concept__link-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.concept__link:hover .concept__link-arrow {
  transform: translateX(8px);
}

/* ── Hero : eyebrow line s'étire au load ── */
.hero__eyebrow-line {
  display: inline-block;
  transform-origin: left center;
  animation: lineGrow 1.2s var(--ease) 0.4s backwards;
}

@keyframes lineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ── Bouton callout du hero : pulse rétro ── */
.hero__callout {
  animation: calloutSway 5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes calloutSway {
  0%,100% { transform: rotate(-6deg) translateY(0px); }
  50%     { transform: rotate(-3deg) translateY(-6px); }
}

/* ── Form button : effet shimmer comme btn--fill ── */
.form__btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.form__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.form__btn:hover::before {
  left: 130%;
}

/* ── Stats : glow on visible ── */
.stats__num {
  transition: text-shadow 0.6s ease;
}

.stats__item:hover .stats__num {
  text-shadow: 0 0 30px rgba(37,212,96,0.4);
}

/* ── Logo nav : pulse subtil au hover ── */
.nav__brand:hover .nav__logo-img {
  animation: logoPulse 0.8s ease;
}

@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 24px rgba(37,212,96,0.18)); }
  50%     { filter: drop-shadow(0 0 36px rgba(37,212,96,0.55)); }
}

/* ── Exp items : zoom fluide + caption monte au hover ── */
.exp__item img {
  transition: transform 0.8s var(--ease);
}

.exp__item:hover img {
  transform: scale(1.08);
}

.exp__item-overlay {
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}

.exp__item:hover .exp__item-overlay {
  transform: translateY(-4px);
}

/* ── Footer logo : breath ── */
.footer__logo {
  animation: footerBreath 5s ease-in-out infinite;
}

@keyframes footerBreath {
  0%,100% { opacity: 0.85; transform: scale(1);    }
  50%     { opacity: 1;    transform: scale(1.03); }
}

/* ════════════════════════════════════════════════════════════════
   REDUCED MOTION — accessibilité
   ════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:   0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  0.01ms !important;
  }
}
