/* ═══════════════════════════════════════════════════════════════
   FACTORY GRILL & PIZZA — Lomé, Togo
   Design system premium · performance-first (aucune librairie)
   ═══════════════════════════════════════════════════════════════ */

/* 1. Polices locales (self-hosted = chargement instantané) */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-italic.woff2') format('woff2-variations');
}

/* 2. Tokens */
:root {
  --red: #e8411f;
  --red-2: #f2562c;
  --red-deep: #b92d10;
  --gold: #d9b36a;
  --gold-soft: #f2ddb0;

  --ink: #201812;        /* texte sur fond clair */
  --cream: #f4eee2;      /* texte sur fond sombre */

  --bg-dark: #0d0b09;
  --bg-dark-2: #120f0c;
  --panel-dark: #191410;
  --panel-dark-2: #201a14;

  --mut-d: rgba(244, 238, 226, 0.62);   /* texte secondaire sur sombre */
  --mut-l: rgba(32, 24, 18, 0.66);      /* texte secondaire sur clair */
  --line-d: rgba(244, 238, 226, 0.14);
  --line-l: rgba(32, 24, 18, 0.14);

  --paper: #f4eee2;

  --f-disp: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow-lg: 0 40px 90px -38px rgba(10, 6, 3, 0.65);
}

/* 3. Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--cream);
  background: var(--bg-dark);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { flex: none; }
section[id] { scroll-margin-top: 96px; }

::selection { background: var(--red); color: #fff; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 4. Structure */
/* Peinture différée des sections hors écran (chargement initial plus rapide) */
main > .sec:not(#apropos):not(#signature), main > .band, .cta, .marquee, .footer {
  content-visibility: auto;
  contain-intrinsic-size: 820px;
}
.container {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.sec { padding-block: clamp(88px, 12vh, 150px); }
.theme-dark { background: var(--bg-dark); color: var(--cream); }
.theme-light {
  background: linear-gradient(180deg, #f7f1e6 0%, var(--paper) 100%);
  color: var(--ink);
}
.theme-light .sec-note { color: var(--mut-l); }

/* 5. Typographie éditoriale */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.95em;
  font: 700 0.74rem/1 var(--f-body);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--red);
}
.kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--red);
  flex: none;
}
.kicker--band {
  color: var(--gold);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.kicker--band::before { background: var(--gold); }

.sec-title {
  margin-top: 0.55em;
  font: 400 clamp(2.5rem, 6.2vw, 4.7rem) / 1 var(--f-disp);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.serif-accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--red);
}
.serif { font-family: var(--f-serif); font-style: italic; font-weight: 500; }

.sec-head { margin-bottom: clamp(2.6rem, 6vw, 5rem); }
.sec-head.split {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.42fr);
  gap: 2.5rem;
  align-items: end;
}
.sec-note { font-size: 1.02rem; color: var(--mut-d); }
.theme-dark .sec-note { color: var(--mut-d); }

.lede { font-size: 1.18rem; color: inherit; }

/* 6. Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 1.04em 1.9em;
  border-radius: 100px;
  border: 1px solid transparent;
  font: 700 0.76rem/1.1 var(--f-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s,
    border-color 0.3s, box-shadow 0.3s;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(232, 65, 31, 0.6);
}
.btn-primary:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -16px rgba(232, 65, 31, 0.65);
}

.btn-ghost {
  border-color: rgba(244, 238, 226, 0.38);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  border-color: rgba(32, 24, 18, 0.4);
  color: var(--ink);
}
.btn-ghost-dark:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* 7. Système d'apparition au scroll (activé seulement si JS dispo) */
.js [data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal="up"], .js [data-reveal] { transform: translateY(30px); }
.js [data-reveal="left"] { transform: translateX(-44px); }
.js [data-reveal="right"] { transform: translateX(44px); }
.js [data-reveal="pop"] { transform: scale(0.86); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* 8. Navigation */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(11, 9, 7, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-d);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-block: 1.05rem;
  transition: padding 0.35s;
  position: relative;
  z-index: 90;
}
.site-nav.scrolled .nav-wrap { padding-block: 0.62rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  color: var(--cream);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font: 400 1.45rem/1 var(--f-disp);
  box-shadow: 0 12px 26px -10px rgba(232, 65, 31, 0.75);
}
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name { font: 400 1.06rem/1 var(--f-disp); letter-spacing: 0.16em; }
.brand-sub {
  font: 700 0.56rem/1 var(--f-body);
  letter-spacing: 0.3em;
  color: rgba(244, 238, 226, 0.55);
}

.nav-links {
  display: flex;
  gap: clamp(1.3rem, 2.8vw, 2.7rem);
  margin-inline: auto;
}
.nav-link {
  position: relative;
  font: 600 0.8rem/1 var(--f-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(244, 238, 226, 0.78);
  padding: 6px 2px;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link.is-active { color: var(--cream); }
.nav-link.is-active::after, .nav-link:hover::after { transform: scaleX(1); }

.btn-nav { padding: 0.92em 1.6em; font-size: 0.72rem; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 95;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(244, 238, 226, 0.3);
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: calc(50% - 6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(13, 10, 8, 0.99);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem clamp(24px, 8vw, 60px) 3rem;
  transform: translateY(-101%);
  transition: transform 0.55s var(--ease);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-links { display: flex; flex-direction: column; gap: 0.35rem; }
.mobile-link {
  font: 400 clamp(2.1rem, 9vw, 3.4rem) / 1.15 var(--f-disp);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s;
  width: fit-content;
}
.mobile-menu.open .mobile-link { opacity: 1; transform: none; }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.36s; }
.mobile-link:hover { color: var(--red); }
.mobile-foot {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-d);
}
.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font: 600 1.15rem/1.2 var(--f-body);
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
}
.mobile-phone svg { width: 22px; color: var(--red); }
.mobile-addr { margin-top: 0.9rem; color: var(--mut-d); font-size: 0.92rem; }

/* 9. HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(7.5rem, 15vh, 10rem) 6.5rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0806;
}
.hero-media {
  animation: heroZoom 2.4s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.78) 0%, rgba(10, 8, 6, 0.25) 34%, rgba(10, 8, 6, 0.35) 62%, var(--bg-dark) 100%),
    linear-gradient(90deg, rgba(10, 8, 6, 0.85) 0%, rgba(10, 8, 6, 0.15) 62%, rgba(10, 8, 6, 0) 100%);
}
.hero-side {
  position: absolute;
  right: clamp(14px, 2.4vw, 40px);
  top: 50%;
  z-index: 3;
  font: 600 0.68rem/1 var(--f-body);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(244, 238, 226, 0.6);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  margin: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  font: 700 0.76rem/1 var(--f-body);
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-topline .line {
  width: 52px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  margin-top: 1.1rem;
  text-shadow: 0 30px 90px rgba(5, 3, 2, 0.65);
  text-transform: uppercase;
  font: 400 1em/0.93 var(--f-disp);
}
.hero-title .t1 {
  display: block;
  font-size: clamp(3.9rem, 13.5vw, 12rem);
  letter-spacing: 0.01em;
  color: var(--cream);
}
.hero-title .t2 {
  display: block;
  font-size: clamp(1.9rem, 6.6vw, 6rem);
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-top: 0.08em;
}
.hero-title .amp {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--gold);
  padding-inline: 0.08em;
}
.hero-title-inner {
  display: inline-block;
  animation: floatY 7s ease-in-out 2.2s infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-tag {
  margin-top: 1.7rem;
  font: 500 clamp(1.3rem, 2.8vw, 2rem) / 1.3 var(--f-serif);
  font-style: italic;
  color: var(--cream);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  margin-top: 2.2rem;
  font: 600 1.02rem/1 var(--f-body);
  letter-spacing: 0.14em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}
.hero-phone svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  color: var(--red);
  border: 1px solid rgba(244, 238, 226, 0.28);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-phone:hover { color: var(--red); }
.hero-phone:hover svg {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.06);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: 1px;
  height: 58px;
  background: rgba(244, 238, 226, 0.22);
  overflow: hidden;
}
.hero-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 1px;
  height: 40%;
  background: var(--red);
  animation: scrollDrop 2.1s var(--ease) infinite;
}
@keyframes scrollDrop {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}

/* Apparition du contenu hero */
.js [data-hero] {
  opacity: 0;
  transform: translateY(34px);
  animation: heroIn 1s var(--ease) forwards;
}
.js .hero-topline { animation-delay: 0.05s; }
.js .hero-title { animation-delay: 0.15s; }
.js .hero-tag { animation-delay: 0.35s; }
.js .hero-cta { animation-delay: 0.5s; }
.js .hero-phone { animation-delay: 0.66s; }
.js .hero-scroll { animation: none; opacity: 0; animation: heroIn 1s var(--ease) 1.5s forwards; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* 10. INTRODUCTION */
.intro-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.intro-media { position: relative; }
.intro-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 4.7;
  box-shadow: var(--shadow-lg);
}
.intro-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.intro-media:hover .intro-photo img { transform: scale(1.05); }
.intro-photo-small {
  position: absolute;
  right: -8%;
  bottom: -9%;
  z-index: 2;
  width: 44%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-lg);
}
.intro-photo-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  top: 26px;
  left: -16px;
  z-index: 3;
  padding: 0.85em 1.4em;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font: 700 0.66rem/1 var(--f-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px -14px rgba(232, 65, 31, 0.65);
  transform: rotate(-4deg);
}
.intro-copy p + p { margin-top: 1.15rem; color: var(--mut-l); }
.intro-copy .lede { margin-top: 1.4rem; color: var(--ink); }

.feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.6rem;
  margin-top: 2.6rem;
}
.feat {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.05rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: var(--r-md);
  box-shadow: 0 18px 40px -30px rgba(32, 24, 18, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -30px rgba(32, 24, 18, 0.45);
}
.feat-ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: rgba(232, 65, 31, 0.1);
  color: var(--red);
}
.feat-ic svg { width: 21px; height: 21px; }
.feat strong { display: block; font: 600 0.95rem/1.3 var(--f-body); }
.feat small { color: var(--mut-l); font-size: 0.82rem; }

/* 11. SIGNATURE — cartes asymétriques */
.sig-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.82fr 1fr;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: start;
}
.sig-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 60px -34px rgba(5, 3, 2, 0.9);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.sig-card--a { aspect-ratio: 3 / 3.8; }
.sig-card--b { aspect-ratio: 1 / 1.2; margin-top: 120px; }
.sig-card--c { aspect-ratio: 3 / 3.05; margin-top: 110px; }
.sig-media {
  position: absolute;
  inset: 0;
}
.sig-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.sig-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.05) 30%, rgba(8, 6, 4, 0.94) 100%);
}
.sig-no {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  font: 400 0.82rem/1 var(--f-disp);
  letter-spacing: 0.32em;
  color: rgba(244, 238, 226, 0.85);
}
.sig-no::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--red);
  margin-top: 8px;
}
.sig-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.sig-title { font: 400 2.05rem/1 var(--f-disp); text-transform: uppercase; color: var(--cream); }
.sig-body p {
  margin-top: 0.65rem;
  max-width: 30ch;
  color: rgba(244, 238, 226, 0.8);
  font-size: 0.95rem;
}
.sig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1.1rem;
  font: 700 0.72rem/1 var(--f-body);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(244, 238, 226, 0.3);
  transition: color 0.3s, border-color 0.3s;
}
.sig-link svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.sig-link:hover { color: var(--red); border-color: var(--red); }
.sig-link:hover svg { transform: translateX(5px); }

.sig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 46px 80px -38px rgba(5, 3, 2, 1);
}
.sig-card:hover .sig-media img { transform: scale(1.07); }

/* 12. BANDES PLEINE LARGEUR — PIZZA / GRILL / CTA */
.band {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(110px, 16vh, 190px);
}
.band-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0806;
}
.band-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
}
.band-shade {
  position: absolute;
  inset: 0;
}
.band-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* — PIZZA */
.pizza { min-height: 100vh; flex-direction: column; justify-content: center; }
.pizza .band-shade {
  background:
    linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 8, 6, 0.55) 26%, rgba(10, 8, 6, 0.55) 66%, var(--bg-dark) 100%);
}
.band-title {
  font: 400 clamp(5.5rem, 19vw, 16.5rem) / 0.86 var(--f-disp);
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 34px 90px rgba(5, 3, 2, 0.6);
  margin-top: 0.35rem;
  animation: floatY 8s ease-in-out 2.6s infinite;
}
.band-sub {
  margin-top: 1.3rem;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  color: var(--gold);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.pizza-slider { margin-top: clamp(2.8rem, 6vw, 5rem); }
.pizza-track {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0.4rem 0.2rem 1rem;
}
.pizza-track::-webkit-scrollbar { display: none; }
.pizza-card {
  position: relative;
  flex: 0 0 clamp(240px, 25vw, 330px);
  aspect-ratio: 3 / 3.6;
  border-radius: var(--r-md);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 26px 50px -30px rgba(5, 3, 2, 0.9);
  transition: transform 0.45s var(--ease);
}
.pizza-card:hover { transform: translateY(-6px); }
.pizza-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.pizza-card:hover img { transform: scale(1.07); }
.pizza-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 6, 4, 0.8));
}
.pizza-note {
  margin-top: clamp(1.6rem, 3.5vw, 2.6rem);
  color: rgba(244, 238, 226, 0.75);
  font-size: 0.98rem;
}
.pizza-tel {
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  transition: color 0.3s;
}
.pizza-tel:hover { color: var(--red); }

/* — GRILL */
.grill { min-height: 92vh; }
.grill .band-shade {
  background:
    linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 8, 6, 0.4) 30%, rgba(10, 8, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 8, 6, 0.9) 0%, rgba(10, 8, 6, 0.35) 70%, rgba(10, 8, 6, 0) 100%);
}
.grill-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.grill-copy { max-width: 620px; }
.grill-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.grill-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.1s var(--ease);
}
.grill-photo:hover img { transform: scale(1.03); }
.grill-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1em;
  border-radius: 100px;
  border: 1px solid rgba(244, 238, 226, 0.3);
  background: rgba(13, 10, 8, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font: 700 0.6rem/1 var(--f-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.grill-caption::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.band-title--grill {
  font-size: clamp(6rem, 21vw, 18rem);
  margin-top: 0.3rem;
  color: var(--cream);
  animation: floatY 8s ease-in-out 2.6s infinite;
}
.grill-text {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: rgba(244, 238, 226, 0.85);
  max-width: 46ch;
}
.grill-inner .btn { margin-top: 2.2rem; }

/* 13. MARQUEE */
.marquee {
  overflow: hidden;
  background: var(--red);
  padding-block: 1.15rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marq 30s linear infinite;
}
.marquee-track span {
  font: 400 1.25rem/1 var(--f-disp);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  padding-inline: 0.8em;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* 14. MENU — la carte par familles */
.cat-list {
  display: grid;
  gap: clamp(3rem, 7vw, 5.5rem);
  margin-top: clamp(2.6rem, 5.5vw, 4.4rem);
}
.cat-row {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: center;
}
.cat-row:nth-child(even) .cat-media { order: 2; }
.cat-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 2.9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.cat-row:hover .cat-media img { transform: scale(1.05); }
.cat-copy { max-width: 520px; }
.cat-no {
  margin: 0 0 0.7em;
  font: 700 0.8rem/1 var(--f-body);
  letter-spacing: 0.34em;
  color: var(--red);
}
.cat-no::after { content: " /"; }
.cat-name {
  font: 400 clamp(2.4rem, 5.6vw, 4.4rem) / 0.95 var(--f-disp);
  text-transform: uppercase;
  color: var(--ink);
}
.cat-desc {
  margin-top: 1rem;
  color: var(--mut-l);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.65;
  max-width: 44ch;
}
.menu-foot {
  margin-top: clamp(3.2rem, 7vw, 5.5rem);
  padding-top: clamp(2.2rem, 4.5vw, 3.4rem);
  border-top: 1px solid var(--line-l);
  text-align: center;
}
.mf-big {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  color: var(--ink);
}
.mf-big em { color: var(--red); }
.mf-sub {
  margin-top: 0.7rem;
  color: var(--mut-l);
  font-size: 0.98rem;
}
.menu-foot .btn { margin-top: 1.8rem; }

@media (max-width: 900px) {
  .cat-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .cat-row:nth-child(even) .cat-media { order: 0; }
  .cat-copy { max-width: 100%; }
  .cat-desc { max-width: 100%; }
}
/* Rotation restaurée après apparition (sinon le reveal l'écraserait) */
.js .xp-photo--b.is-in { transform: rotate(2.2deg); }
.js .xp-photo--d.is-in { transform: rotate(-2.4deg); }
.js .xp-sticker--food.is-in { transform: rotate(-6deg); }
.js .xp-sticker--moments.is-in { transform: rotate(3deg); }
.js .xp-sticker--lome.is-in { transform: rotate(-3deg); }

/* 15. EXPÉRIENCE — collage */
.xp-grid {
  position: relative;
  height: clamp(600px, 72vw, 860px);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.xp-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 34px 70px -32px rgba(5, 3, 2, 0.95);
}
.xp-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
}
.xp-photo--a {
  left: 0;
  top: 5%;
  width: 33%;
  aspect-ratio: 3 / 3.6;
  z-index: 1;
}
.xp-photo--b {
  left: 23%;
  top: 0;
  width: 30%;
  aspect-ratio: 1 / 1.05;
  z-index: 3;
  transform: rotate(2.2deg);
  border: 8px solid #f7f1e6;
}
.xp-photo--c {
  left: 47%;
  bottom: 4%;
  width: 30%;
  aspect-ratio: 4 / 3;
  z-index: 2;
}
.xp-photo--d {
  right: 0;
  top: 26%;
  width: 23%;
  aspect-ratio: 1 / 1.3;
  z-index: 4;
  transform: rotate(-2.4deg);
  border: 8px solid #1c1712;
}

.xp-sticker {
  position: absolute;
  z-index: 6;
  font: 400 1rem/1 var(--f-disp);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.95em 1.5em;
  box-shadow: 0 22px 44px -18px rgba(5, 3, 2, 0.85);
}
.xp-sticker--food {
  left: 9%;
  top: -6%;
  background: var(--red);
  color: #fff;
  transform: rotate(-6deg);
}
.xp-sticker--moments {
  left: 41%;
  top: 8%;
  background: var(--cream);
  color: var(--ink);
  transform: rotate(3deg);
}
.xp-sticker--lome {
  left: 3%;
  bottom: 2%;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  transform: rotate(-3deg);
}

/* 16. GALERIE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: clamp(130px, 16vw, 215px);
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  margin: 0;
}
.g-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
}
.g-item:hover img { transform: scale(1.07); }
/* Cadrages variés (recadrages secondaires des mêmes photos) */
.g-item--2 img { object-position: 50% 28%; }
.g-item--3 img { object-position: 50% 22%; }
.g-item--5 img { object-position: 50% 66%; }
.g-item--7 img { object-position: 50% 40%; }
.g-item--1 { grid-column: span 2; grid-row: span 2; }
.g-item--2 { grid-column: span 1; grid-row: span 1; }
.g-item--3 { grid-column: span 1; grid-row: span 1; }
.g-item--4 { grid-column: span 1; grid-row: span 2; }
.g-item--5 { grid-column: span 2; grid-row: span 1; }
.g-item--6 { grid-column: span 2; grid-row: span 1; }
.g-item--7 { grid-column: span 2; grid-row: span 1; }
.g-item--8 { grid-column: span 1; grid-row: span 1; }
.g-item--9 { grid-column: span 2; grid-row: span 1; }
.g-item--10 { grid-column: span 1; grid-row: span 1; }

/* 17. CTA FINAL */
.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 17vh, 200px);
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0806;
}
.cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
  opacity: 0.55;
}
.cta-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 8, 6, 0.55) 45%, var(--bg-dark) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-title {
  font: 400 clamp(2.3rem, 5.6vw, 4.6rem) / 1.02 var(--f-disp);
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 1.2rem;
  text-shadow: 0 24px 70px rgba(5, 3, 2, 0.7);
}
.cta-title .serif-accent {
  font-size: 1.06em;
  color: var(--red);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.6rem;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 2.1rem;
  font: 700 1.35rem/1 var(--f-body);
  letter-spacing: 0.16em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.cta-phone::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.cta-phone::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.cta-phone:hover { color: var(--cream); }

/* 18. CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: stretch;
}
.contact-info {
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: var(--r-lg);
  padding: clamp(1.9rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.contact-name {
  font: 400 clamp(1.7rem, 3vw, 2.3rem) / 1.02 var(--f-disp);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.contact-list { margin-top: 2rem; display: grid; gap: 1.5rem; }
.contact-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.ci-ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: rgba(232, 65, 31, 0.11);
  color: var(--red);
}
.ci-ic svg { width: 21px; height: 21px; }
.contact-list strong {
  display: block;
  font: 700 0.7rem/1 var(--f-body);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mut-l);
  margin-bottom: 0.35em;
}
.contact-list a { font-weight: 700; text-decoration: none; color: var(--ink); }
.contact-list a:hover { color: var(--red); }
.contact-hint {
  margin-top: 1.9rem;
  font: 500 1.02rem/1.6 var(--f-serif);
  font-style: italic;
  color: var(--mut-l);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 2rem;
}
.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-l);
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

/* 19. FOOTER */
.footer {
  background: #0a0806;
  color: var(--cream);
  border-top: 1px solid var(--line-d);
  padding-top: clamp(3.4rem, 7vw, 5.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.footer-logo { font: 400 clamp(2rem, 4vw, 2.9rem) / 1 var(--f-disp); letter-spacing: 0.03em; }
.footer-tag {
  margin-top: 0.8rem;
  color: var(--mut-d);
  font: 500 1.05rem/1.5 var(--f-serif);
  font-style: italic;
}
.footer-place {
  margin-top: 0.5rem;
  font: 700 0.74rem/1 var(--f-body);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-nav { display: grid; gap: 0.5rem; align-content: start; }
.footer-nav a {
  width: fit-content;
  font: 600 0.95rem/1.5 var(--f-body);
  text-decoration: none;
  color: rgba(244, 238, 226, 0.75);
  transition: color 0.3s, transform 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--red); transform: translateX(4px); }
.footer-contact { display: grid; gap: 0.6rem; align-content: start; justify-items: start; }
.footer-phone {
  font: 700 1.35rem/1.2 var(--f-body);
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.3s;
}
.footer-phone:hover { color: var(--red); }
.footer-contact p { color: var(--mut-d); font-size: 0.95rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-d);
  color: rgba(244, 238, 226, 0.45);
  font-size: 0.84rem;
}
.footer-mark {
  font: 400 0.72rem/1 var(--f-disp);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(244, 238, 226, 0.35);
}

/* 20. Bouton d'appel rapide */
.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 40px -12px rgba(232, 65, 31, 0.8);
  transition: transform 0.45s var(--ease), background 0.3s;
}
.call-fab svg { width: 24px; height: 24px; }
.call-fab:hover { background: var(--red-2); transform: scale(1.07); }
body.show-fab .call-fab { animation: fabIn 0.5s var(--ease) forwards; }

/* 21. RESPONSIVE */
@media (max-width: 1180px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-wrap { justify-content: space-between; }

  .sig-grid { grid-template-columns: 1fr 1fr; }
  .sig-card--b { margin-top: 0; }
  .sig-card--c { grid-column: 1 / -1; margin-top: 0; aspect-ratio: 3 / 1.7; }
}

@media (max-width: 960px) {
  .intro-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .intro-media { max-width: 620px; margin-inline: auto; width: 100%; }
  .intro-photo-small { right: -2%; }

  .sec-head.split { grid-template-columns: 1fr; gap: 1.4rem; align-items: start; }
  .sec-note { max-width: 60ch; }

  .xp-grid { height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .xp-photo { position: relative; inset: auto; width: 100%; transform: none !important; border-width: 0; }
  .xp-photo--a { aspect-ratio: 3 / 3.6; grid-column: 1; grid-row: 1 / span 2; }
  .xp-photo--b { aspect-ratio: 1 / 0.9; grid-column: 2; grid-row: 1; }
  .xp-photo--c { aspect-ratio: 4 / 2.6; grid-column: 1 / -1; grid-row: 3; }
  .xp-photo--d { aspect-ratio: 1 / 1; grid-column: 2; grid-row: 2; }
  .xp-sticker--food { left: 2%; top: -2%; }
  .xp-sticker--moments { left: auto; right: 2%; top: -2%; }
  .xp-sticker--lome { left: auto; right: 8%; bottom: -3%; }

  .grill-inner { grid-template-columns: 1fr; }
  .grill-photo { max-width: 560px; margin-inline: auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 380px; }
  .contact-map iframe { min-height: 380px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .sec { padding-block: 4.5rem; }
  .feats { grid-template-columns: 1fr; }

  .sig-grid { grid-template-columns: 1fr; }
  .sig-card--c { grid-column: auto; aspect-ratio: 3 / 3.2; }
  .sig-card--b { aspect-ratio: 3 / 3.4; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(120px, 34vw, 200px); }
  .g-item--1 { grid-column: span 2; grid-row: span 2; }
  .g-item--6, .g-item--7 { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .band-title { font-size: clamp(4.4rem, 30vw, 10rem); }
  .band-title--grill { font-size: clamp(4.6rem, 32vw, 11rem); }
  .hero-title .t1 { font-size: clamp(3.2rem, 19vw, 6rem); }
  .hero-title .t2 { font-size: clamp(1.55rem, 8.5vw, 3rem); }
  .hero-side { display: none; }

  .xp-grid { grid-template-columns: 1fr; }
  .xp-photo--a { grid-column: 1; grid-row: 1; aspect-ratio: 3 / 3.4; }
  .xp-photo--b { grid-column: 1; grid-row: 2; aspect-ratio: 3 / 2.4; }
  .xp-photo--d { grid-column: 1; grid-row: 3; aspect-ratio: 1 / 0.9; }
  .xp-photo--c { grid-column: 1; grid-row: 4; aspect-ratio: 4 / 3; }

  .cat-row { grid-template-columns: 1fr; }
  .cat-copy { max-width: 100%; }
  .call-fab { display: flex; }
}

/* 22. Accessibilité — mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal], .js [data-hero] { opacity: 1 !important; transform: none !important; }
}
