/* ===== Byzance 31 — CSS vanilla (dark mode, mobile-first) ===== */

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1f1f1f;
  --primary: #FF6B1A;
  --primary-hover: #FF8533;
  --accent: #E63900;
  --gold: #FFB84D;
  --text: #FFFFFF;
  --text-2: #D4D4D4;
  --text-muted: #8A8A8A;
  --border: #2A2A2A;
  --ok: #4ADE80;

  --fs-hero: clamp(3.5rem, 16vw, 8rem);
  --fs-h1: clamp(2rem, 7vw, 3.5rem);
  --fs-h2: clamp(1.5rem, 5vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 3.2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-price: clamp(1.5rem, 4vw, 2rem);

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-6: 24px; --sp-8: 32px; --sp-12: 48px; --sp-16: 64px; --sp-24: 96px;

  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-pill: 9999px;

  --glow: 0 8px 28px -4px rgba(255, 107, 26, 0.55);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Remove tap highlight on mobile */
a, button { -webkit-tap-highlight-color: transparent; }

img, picture, svg { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4 {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.05;
  margin: 0 0 var(--sp-4);
  text-transform: uppercase;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 var(--sp-4); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--sp-8); }
}

section {
  padding: var(--sp-16) 0;
}

@media (min-width: 768px) {
  section { padding: var(--sp-24) 0; }
}

/* ===== Header top bar ===== */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.25s ease;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
}

.brand-mark {
  width: 40px; height: 40px;
  mix-blend-mode: screen;
  filter: contrast(1.2) brightness(1.1) saturate(1.15) drop-shadow(0 0 6px rgba(255, 107, 26, 0.55));
}

.brand-text {
  font-family: "Permanent Marker", "Barrio", cursive;
  font-size: 1.65rem;
  background: linear-gradient(180deg, #FFE08A, #FF8533 60%, #E63900);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: skewX(-4deg);
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(255, 107, 26, 0.6));
}

.brand-sub {
  display: none;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .brand-sub {
    display: inline-block;
    margin-left: 6px;
    padding-left: 10px;
    border-left: 1px solid var(--border);
  }
}

.nav-desktop {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: var(--sp-2) 0;
  position: relative;
}

.nav-desktop a:hover { color: var(--text); }

.nav-desktop a.is-active {
  color: var(--primary);
}

.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--primary);
}

.topbar-phone {
  display: none;
}

@media (min-width: 560px) {
  .topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--text);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
  }
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  cursor: pointer;
}

@media (min-width: 960px) { .burger { display: none; } }

.burger svg { width: 22px; height: 22px; }

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 60;
  display: none;
  flex-direction: column;
  padding: var(--sp-16) var(--sp-6) var(--sp-24);
}

.drawer.is-open { display: flex; }

.drawer-close {
  position: absolute;
  top: var(--sp-4); right: var(--sp-4);
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  cursor: pointer;
}

.drawer nav { display: flex; flex-direction: column; gap: var(--sp-4); }

.drawer nav a {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}

.drawer nav a.is-active { color: var(--primary); }

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--sp-16) var(--sp-4) var(--sp-24);
  text-align: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(230, 57, 0, 0.55) 0%, transparent 58%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255, 107, 26, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(230, 57, 0, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, #0a0505 0%, #1a0a00 50%, #0a0505 100%);
}

/* Grain noise pour casser le flat */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.4  0 0 0 0 0.1  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Halo orange derrière le logo + texte */
.hero::after {
  content: "";
  position: absolute;
  left: 50%; top: 48%;
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  transform: translate(-50%, -50%);
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 107, 26, 0.45) 0%, rgba(230, 57, 0, 0.22) 28%, transparent 55%);
  animation: halo-pulse 4s ease-in-out infinite;
  filter: blur(50px);
}

@keyframes halo-pulse {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Flame particles animated */
.hero-flames {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(255, 107, 26, 0.55) 0, transparent 9%),
    radial-gradient(circle at 30% 95%, rgba(230, 57, 0, 0.6) 0, transparent 8%),
    radial-gradient(circle at 55% 88%, rgba(255, 184, 77, 0.5) 0, transparent 7%),
    radial-gradient(circle at 75% 92%, rgba(255, 107, 26, 0.55) 0, transparent 8%),
    radial-gradient(circle at 90% 84%, rgba(230, 57, 0, 0.5) 0, transparent 7%),
    radial-gradient(circle at 10% 20%, rgba(255, 140, 60, 0.18) 0, transparent 12%),
    radial-gradient(circle at 90% 25%, rgba(255, 107, 26, 0.18) 0, transparent 12%);
  animation: flicker 3.5s ease-in-out infinite alternate;
  filter: blur(3px);
}

@keyframes flicker {
  0%, 100% { opacity: 0.55; transform: translateY(0) scale(1); }
  50% { opacity: 0.85; transform: translateY(-6px) scale(1.025); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-logo {
  display: block;
  margin: 0 auto var(--sp-6);
  width: clamp(200px, 36vw, 340px);
  height: auto;
  /* Fait disparaître le fond noir du PNG + booste le contraste pour nettoyer les gris résiduels */
  mix-blend-mode: screen;
  filter:
    contrast(1.15)
    brightness(1.08)
    saturate(1.15)
    drop-shadow(0 0 25px rgba(255, 107, 26, 0.55))
    drop-shadow(0 0 55px rgba(230, 57, 0, 0.35));
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

/* ===== BYZANCE : gradient fire clair + stroke sombre pour lisibilité ===== */
.hero-brand {
  font-family: "Permanent Marker", "Barrio", "Impact", cursive;
  font-size: var(--fs-hero);
  line-height: 0.95;
  margin: 0;
  letter-spacing: 0.005em;
  font-weight: 400;
  text-transform: uppercase;
  transform: skewX(-5deg);
  display: inline-block;
  position: relative;

  /* Gradient plus clair en bas pour ne pas se fondre dans le halo rouge */
  background: linear-gradient(180deg,
    #FFFFFF 0%,
    #FFF0B8 18%,
    #FFD27A 40%,
    #FFB84D 62%,
    #FF9240 85%,
    #FF7A2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Contour sombre très fin pour redessiner chaque lettre — clé de la lisibilité */
  -webkit-text-stroke: 1.5px rgba(40, 12, 0, 0.85);

  /* Glow : gardé mais un peu moins envahissant pour que le texte reste net */
  filter:
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 4px rgba(255, 224, 138, 0.9))
    drop-shadow(0 0 18px rgba(255, 107, 26, 0.75))
    drop-shadow(0 0 42px rgba(230, 57, 0, 0.6));
}

/* Aura pulsante derrière — décalée pour ne pas "manger" les lettres */
.hero-brand::before {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  z-index: -1;
  color: #FF4500;
  -webkit-text-fill-color: #FF4500;
  -webkit-text-stroke: 0;
  background: none;
  filter: blur(22px);
  opacity: 0.7;
  animation: brand-pulse 2.6s ease-in-out infinite alternate;
}

@keyframes brand-pulse {
  from { opacity: 0.55; filter: blur(20px); }
  to { opacity: 0.9; filter: blur(28px); }
}

.hero-sub {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  letter-spacing: 0.5em;
  color: var(--text);
  margin: var(--sp-4) 0 var(--sp-2);
  padding-left: 0.5em;
  text-shadow: 0 0 20px rgba(255, 107, 26, 0.6), 0 2px 0 rgba(0,0,0,0.5);
}

.hero-slogan {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(0.85rem, 2.6vw, 1.35rem);
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: var(--sp-2) auto var(--sp-8);
  font-style: italic;
  text-shadow: 0 0 16px rgba(255, 184, 77, 0.65), 0 2px 0 rgba(0,0,0,0.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.hero-slogan::before, .hero-slogan::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: clamp(16px, 6vw, 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0 10px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 20px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: normal;
  line-height: 1.15;
  min-height: 52px;
  width: 100%;
  max-width: 360px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.btn svg { flex-shrink: 0; }

/* Bouton empilé (label + numéro) pour actions téléphone */
.btn-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.1;
}
.btn-stack .btn-label {
  font-size: 0.78em;
  letter-spacing: 0.16em;
  opacity: 0.75;
}
.btn-stack .btn-phone-num {
  font-size: 1.15em;
  letter-spacing: 0.08em;
  font-weight: 400;
}

@media (min-width: 560px) {
  .btn {
    width: auto;
    padding: 16px 28px;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }
}

.btn-primary {
  background: linear-gradient(180deg, #FF8533 0%, #FF6B1A 50%, #E63900 100%);
  color: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(255, 184, 77, 0.4) inset,
    0 10px 30px -6px rgba(255, 107, 26, 0.6),
    0 0 40px -10px rgba(230, 57, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #FFA050 0%, #FF8533 50%, #FF6B1A 100%);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 224, 138, 0.6) inset,
    0 14px 40px -6px rgba(255, 107, 26, 0.85),
    0 0 60px -10px rgba(230, 57, 0, 0.7);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover { background: var(--bg-2); color: var(--primary); }

.btn svg { width: 20px; height: 20px; }

/* ===== Section titles ===== */

.section-title {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-title h2 {
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.section-title .kicker {
  display: inline-block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--primary);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
}

.section-title p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== Product cards ===== */

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 640px) {
  .products { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .products { grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
}

.product {
  background: linear-gradient(160deg, var(--bg-2) 0%, #1a0a05 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,107,26,0.3), transparent 40%, transparent 60%, rgba(255,107,26,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.product:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow:
    0 20px 50px -10px rgba(255, 107, 26, 0.4),
    0 0 0 1px rgba(255, 107, 26, 0.3);
}

.product:hover::before { opacity: 1; }

.product-media {
  aspect-ratio: 4 / 3;
  background: #0a0505;
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product:hover .product-media img {
  transform: scale(1.06);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10,5,5,0.65) 100%),
    radial-gradient(ellipse at center bottom, rgba(255,107,26,0.25), transparent 70%);
  pointer-events: none;
}

.product-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  color: var(--text);
  margin-bottom: var(--sp-1);
}

.product-body .sub {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.price {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: var(--fs-price);
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255, 107, 26, 0.15);
  color: var(--primary);
  border-radius: var(--r-pill);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Features strip ===== */

.features {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  background: linear-gradient(160deg, rgba(31, 15, 0, 0.5), rgba(10, 5, 5, 0.5));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  width: 140%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 107, 26, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px -12px rgba(255, 107, 26, 0.35);
}

.feature:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  margin: 0 auto var(--sp-4);
  color: var(--primary);
  filter: drop-shadow(0 0 12px rgba(255, 107, 26, 0.55));
  position: relative;
  z-index: 1;
}

.feature h4 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--text);
  margin: 0 0 var(--sp-1);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 107, 26, 0.3);
  position: relative;
  z-index: 1;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ===== Info grid (localisation) ===== */

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

@media (min-width: 960px) {
  .info-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-12); }
}

.info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--primary);
  margin-bottom: var(--sp-6);
}

.info-card h3 svg {
  width: 24px; height: 24px; flex-shrink: 0;
}

.info-card address {
  font-style: normal;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-2);
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-2);
}

.hours li strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 400;
  text-transform: uppercase;
}

.hours li.closed { color: var(--text-muted); }

/* ===== Sticky CTA bar (mobile) ===== */

.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 40;
  padding: var(--sp-3) var(--sp-3) calc(var(--sp-3) + var(--safe-bottom));
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--sp-2);
}

@media (min-width: 960px) {
  .sticky-cta { display: none; }
}

.sticky-cta a {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: var(--sp-2);
  background: transparent;
  color: var(--text-2);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  min-height: 56px;
  text-decoration: none;
}

.sticky-cta a.primary {
  background: var(--primary);
  color: #0a0a0a;
  box-shadow: var(--glow);
}

.sticky-cta a svg { width: 20px; height: 20px; }

/* Offset main content on mobile when sticky-cta is visible */
@media (max-width: 959px) {
  body { padding-bottom: 80px; }
}

/* Très petits écrans (iPhone SE / 360-375) : resserrer encore */
@media (max-width: 380px) {
  section { padding: var(--sp-12) 0; }
  .sticky-cta a { font-size: 0.72rem; letter-spacing: 0.05em; }
  .nav-desktop a { letter-spacing: 0.08em; }
  .btn { padding: 12px 16px; letter-spacing: 0.06em; }
  .info-card, .form { padding: var(--sp-6); }
}

/* ===== Form ===== */

.form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: grid;
  gap: var(--sp-4);
}

.form label {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
}

.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease;
}

.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form .btn { width: 100%; max-width: none; margin-top: var(--sp-2); }

.form small { color: var(--text-muted); font-size: 0.85rem; }

.notice {
  padding: var(--sp-4);
  background: rgba(255, 184, 77, 0.1);
  border: 1px solid rgba(255, 184, 77, 0.3);
  border-radius: var(--r-md);
  color: var(--gold);
  font-size: 0.9rem;
}

/* ===== Créneaux réservation ===== */

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-height: 80px;
}

.slots-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  font-family: inherit;
}

.slot strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.slot span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.slot:hover:not(.is-disabled) {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.slot.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #0a0a0a;
  box-shadow: 0 6px 18px -4px rgba(255, 107, 26, 0.6);
}

.slot.is-selected span { color: rgba(10,10,10,0.7); }

.slot.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.slot.is-disabled strong { color: var(--text-muted); }

/* ===== Footer ===== */

footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: var(--sp-16) 0 var(--sp-8);
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer .container {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  footer .container { grid-template-columns: 2fr 1fr 1fr; }
}

footer h4 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
}

footer a { color: var(--text-2); }
footer a:hover { color: var(--primary); }

footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }

.footer-bottom {
  max-width: 1200px;
  margin: var(--sp-8) auto 0;
  padding: var(--sp-6) var(--sp-4) 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-size: 0.8rem;
}

@media (min-width: 560px) {
  .footer-bottom { flex-direction: row; }
}

.footer-credit {
  max-width: 1200px;
  margin: var(--sp-3) auto 0;
  padding: 0 var(--sp-4);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--text-2);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.footer-brand {
  font-family: "Permanent Marker", "Barrio", cursive;
  font-size: 2.2rem;
  line-height: 1;
  background: linear-gradient(180deg, #FFB84D, #FF6B1A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: skewX(-4deg);
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(255, 107, 26, 0.5));
}

/* 404 title glow */
.notfound h1 {
  font-family: "Permanent Marker", "Barrio", cursive;
  background: linear-gradient(180deg, #FFB84D, #E63900);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 107, 26, 0.7));
  transform: skewX(-4deg);
}

/* ===== Carte (page menu complète) ===== */

.carte-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-8);
}

.carte-tab {
  padding: 10px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--text-2);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.15s ease;
}

.carte-tab:hover { border-color: var(--primary); color: var(--primary); }

.carte-tab.is-active {
  background: var(--primary);
  color: #0a0a0a;
  border-color: var(--primary);
}

.carte-category {
  margin-bottom: var(--sp-16);
}

.carte-category-title {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.carte-category-title::before,
.carte-category-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.carte-category-title h2 { color: var(--primary); margin: 0; white-space: nowrap; }

.carte-list {
  display: grid;
  gap: var(--sp-3);
}

.carte-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-4);
  background: var(--bg-2);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.carte-item:hover { border-color: var(--border); }

.carte-item-name {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}

.carte-item-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

.carte-item-price {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ===== 404 ===== */

.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-16) var(--sp-4);
}

.notfound h1 {
  font-family: "Permanent Marker", "Barrio", cursive;
  color: var(--primary);
  font-size: clamp(4rem, 15vw, 8rem);
}

/* ===== Utilities ===== */

.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}

/* ===== Scroll reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Décalages en cascade pour les enfants d'un même parent */
.reveal-stagger > .reveal { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }

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