@font-face {
  font-family: 'Lazy Dog';
  src: url('font/lazy_dog.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ========== VARIABLES ========== */
:root {
  --black: #000000;
  --dark: #0b0b0c;   /* très légèrement plus clair que --black : sert au rythme des sections.
                        Remets #000000 si tu veux du noir strict partout. */
  --dark2: #181922;
  --yellow: #F2D649;
  --yellow-light: #f5e06a;
  --white: #f5f5f0;
  --gray: #999;
  --radius: 16px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-display);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 0 50px;
  height: 200px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, height 0.4s ease;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(242,214,73,0.15);
  height: 80px;
}

.nav-logo { justify-self: start; }

.nav-logo img {
  height: 40px;
  width: auto;
  transition: height 0.4s ease;
}

.nav.scrolled .nav-logo img { height: 28px; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  justify-self: center;
}

.nav-center a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.nav-center a:hover { color: var(--yellow); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
  justify-self: end;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  transition: opacity 0.3s;
}

.nav-social a:hover { opacity: 0.7; }

.nav-social svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  transition: fill 0.3s;
}

.nav-cta {
  font-family: var(--font-display);
  background: var(--yellow);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, padding 0.4s ease, font-size 0.4s ease;
}

.nav-cta:hover { background: var(--yellow-light); }

.nav.scrolled .nav-cta {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Icône Snapchat : ajustement de taille */
.nav-social a[aria-label="Snapchat"] svg { width: 26px; height: 26px; }
.social-icons a[aria-label="Snapchat"] svg { width: 20px; height: 20px; }
.footer-social a[aria-label="Snapchat"] svg { width: 24px; height: 24px; }

/* ========== HERO ========== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-slogan-img {
  width: clamp(300px, 50vw, 700px);
  height: auto;
  margin: 0 auto 12px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  letter-spacing: 4px;
  color: var(--yellow);
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 14px 40px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
}

/* ========== SECTIONS GÉNÉRIQUES ========== */
section { padding: 100px 40px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 60px;
  letter-spacing: 1px;
  text-transform: none;
}

/* ========== ACCUEIL : bloc "Qui sommes-nous" court ========== */
.monthly { background: var(--dark); }

.monthly-content {
  max-width: 62ch;
  margin: 0 auto;
  text-align: left;
}

.about-block { margin-bottom: 40px; }

.about-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.about-block p {
  font-family: var(--font-body);
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-block p strong { color: var(--white); }

.about-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========== NOS RESTAURANTS ========== */
.restaurants { background: var(--black); }

.resto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.resto-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 600px;
}

.resto-card .resto-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.resto-card .resto-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray);
  border: 2px dashed rgba(242,214,73,0.2);
  border-radius: var(--radius);
}

.resto-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: linear-gradient(transparent, rgba(30,32,48,0.95));
  border-radius: 0 0 var(--radius) var(--radius);
}

.resto-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.resto-card address {
  font-style: normal;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  max-width: 450px;
}

.resto-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.resto-tags span {
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(242,214,73,0.4);
  padding: 4px 10px;
  border-radius: 4px;
}

.resto-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding-bottom: 4px;
}

.resto-links a {
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.resto-links a:hover { color: var(--yellow); }

/* ========== NOS BURGERS ========== */
.burgers { background: var(--dark); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.ingredient-card { text-align: center; }

.ingredient-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark2);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray);
  border: 2px dashed rgba(242,214,73,0.2);
}

.ingredient-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.veggie-note {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--yellow);
}

.ingredient-img-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* ========== NOTRE CARTE ========== */
.carte { background: var(--black); }

.carte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.carte-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carte-item .carte-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gray);
  border: 2px dashed rgba(242,214,73,0.2);
  border-radius: var(--radius);
}

.carte-item h4 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* ========== TIPS ========== */
.tips {
  background: var(--dark);
  text-align: center;
}

.tips-content {
  max-width: 700px;
  margin: 0 auto;
}

.tips h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.tips ol {
  text-align: left;
  list-style: none;
  counter-reset: tips;
  margin-bottom: 30px;
}

.tips ol li {
  counter-increment: tips;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: var(--gray);
}

.tips ol li::before {
  content: counter(tips) ".";
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-right: 12px;
}

/* ========== RESEAUX ========== */
.social { background: var(--black); }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(242,214,73,0.4);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}

.social-icons a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.social-icons a:hover svg { fill: var(--black); }

.social-icons svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  transition: fill 0.3s;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.insta-item {
  aspect-ratio: 2.2/4;
  background: var(--dark2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray);
  border: 1px dashed rgba(242,214,73,0.15);
  transition: opacity 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.insta-item:hover { opacity: 0.7; }

.insta-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 80px 40px 40px;
  border-top: 1px solid rgba(242,214,73,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: var(--yellow);
}

.footer-col p,
.footer-col a {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer-col a:hover { color: var(--yellow); }

.footer-col .footer-address {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer-col .footer-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.footer-col .footer-hours {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 2;
}

.footer-halal {
  width: 70px;
  height: auto;
  margin-top: 20px;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(242,214,73,0.3);
  border-radius: 50%;
  transition: background 0.3s;
}

.footer-social a:hover { background: var(--yellow); }
.footer-social a:hover svg { fill: var(--black); }
.footer-social svg { width: 28px; height: 28px; fill: var(--gray); transition: fill 0.3s; }

.footer-bottom {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PAGE MENU ========== */
.menu-page { padding-top: 190px; }

.menu-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 40px;
  transition: opacity 0.3s;
}

.menu-back:hover { opacity: 0.7; }

.menu-category {
  max-width: 900px;
  margin: 0 auto 60px;
}

.menu-category h3 {
  font-family: 'Lazy Dog', var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(242,214,73,0.2);
  text-transform: uppercase;
}

.menu-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
  margin: -12px 0 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.menu-item-left h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.menu-item-left p {
  font-size: 1rem;
  color: var(--gray);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--yellow);
  white-space: nowrap;
  margin-left: 20px;
}

/* ========== FULLSCREEN MENU ========== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-overlay a:hover { color: var(--yellow); }

.mobile-overlay .overlay-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.mobile-overlay .overlay-social svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  transition: fill 0.3s;
}

.mobile-overlay .overlay-social a:hover svg { fill: var(--yellow); }

.mobile-overlay .overlay-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-top: 10px;
}

.mobile-overlay .overlay-cta:hover { background: var(--yellow-light); }


/* ============================================================
   PAGE QUI SOMMES-NOUS  (about.html)

   SYSTEME TYPOGRAPHIQUE — 4 niveaux, pas plus :
   1. .about-title    page      Bebas   blanc   ~5.5rem
   2. .about-kicker   rubrique  Bebas   jaune    1.3rem
   3. .block-title    bloc      Bebas   blanc    ~2rem
   4. .sub-title      détail    Bebas   jaune    1.25rem
   Texte courant : Inter, gris, 1.05rem
   Jaune = repère / accent · Blanc = titre de contenu · Gris = texte

   RYTHME VERTICAL : toutes les sections = 70px de padding vertical
   ============================================================ */

/* Largeurs de lecture */
.about-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.gallery-wrap {
  max-width: 1050px;
  margin: 0 auto;
}

/* ---- En-tête ---- */
.about-hero {
  padding: 200px 40px 70px;
  background: var(--black);
  text-align: center;
}

.about-hero .menu-back {
  display: inline-flex;
  margin-bottom: 30px;
}

/* NIVEAU 1 */
.about-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

.about-tagline {
  font-family: var(--font-body);
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ---- Sections ---- */
.about-section {
  padding: 70px 40px;
  background: var(--dark);
}

/* Fond alterné pour rythmer la page */
.about-section--alt { background: var(--black); }

/* NIVEAU 2 — rubrique */
.about-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242,214,73,0.2);
}

/* NIVEAU 3 — titre de bloc */
.block-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

/* NIVEAU 4 — sous-titre */
.sub-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

/* ---- Texte ---- */
.about-lead {
  font-family: var(--font-body);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 24px;
}

.about-lead strong { color: var(--yellow); }

.about-text {
  font-family: var(--font-body);
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong { color: var(--white); }

/* Accents jaunes */
.about-highlight {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-top: 14px;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 2px;
  line-height: 1.4;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding-left: 24px;
  margin: 40px 0;
}

/* ---- Photos dans le texte ---- */
.about-figure { margin: 36px 0; }

.about-figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-figure figcaption {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 10px;
}

/* Portrait (format vertical) */
.about-figure--portrait {
  max-width: 380px;
  margin: 40px auto;
  text-align: center;
}

.about-figure--portrait img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

/* ---- Valeurs ---- */
.value-line {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.value-line:last-child { border-bottom: none; padding-bottom: 0; }
.value-line .about-text:last-child { margin-bottom: 0; }

/* ---- Blocs produits : photo + texte ---- */
.product-block {
  padding: 70px 40px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.product-wrap {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Bloc sans photo : texte pleine largeur, aligné sur .about-wrap */
.product-wrap--full {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.product-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Alterne le sens photo / texte */
.product-block--reverse .product-media { order: 2; }
.product-block--reverse .product-body  { order: 1; }

.product-body .about-text:last-child { margin-bottom: 0; }

/* Sous-blocs (les deux buns) */
.sub-line {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 18px;
}

.bun-logo {
  width: 170px;
  max-width: 60%;
  height: auto;
  margin: 6px 0 10px;
}

/* Tags */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-tags span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(242,214,73,0.4);
  padding: 6px 14px;
  border-radius: 6px;
}

/* ---- Galerie ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

/* ---- CTA final ---- */
.about-final {
  padding: 90px 40px;
  background: var(--black);
  text-align: center;
}

.about-final-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
}


/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
  }

  .nav-logo img { height: 20px; }
  .nav.scrolled .nav-logo img { height: 18px; }

  .nav-center { display: none; }
  .nav-right { display: none; }

  .nav-center.open,
  .nav-right.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(242,214,73,0.15);
  }

  .nav-center.open { z-index: 2; }

  .nav-right.open {
    top: auto;
    position: relative;
    padding-top: 0;
    border: none;
  }

  .nav-toggle { display: flex; }

  section { padding: 60px 20px; }

  /* Hero */
  .hero-slogan-img { width: clamp(200px, 80vw, 400px); }

  /* Titres de section */
  .section-title { font-size: 1.8rem; }
  .section-sub { font-size: 1rem; }

  /* Restaurants */
  .resto-grid { grid-template-columns: 1fr; }
  .resto-card { max-width: 100%; }
  .resto-card h3 { font-size: 1.5rem; }
  .resto-card address { font-size: 1rem; }
  .resto-tags span { font-size: 0.7rem; }
  .resto-links a { font-size: 0.9rem; }

  /* Burgers / ingrédients */
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
  }
  .ingredient-card h4 { font-size: 1rem; }

  /* Carte */
  .carte-grid { grid-template-columns: 1fr; }

  /* Tips */
  .tips h3 { font-size: 1.1rem; }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
  }

  /* Footer */
  .footer { padding: 50px 20px 30px; }
  .footer-col h4 { font-size: 1.3rem; }
  .footer-col .footer-phone { font-size: 1.3rem; }
  .footer-col .footer-address { font-size: 0.9rem; }
  .footer-col .footer-hours { font-size: 0.85rem; }

  /* Page menu */
  .menu-page { padding-top: 100px; }

  /* --- Page Qui sommes-nous --- */
  .about-hero { padding: 120px 20px 45px; }
  .about-section,
  .product-block,
  .about-final { padding: 45px 20px; }

  .product-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  /* Sur mobile, la photo passe toujours au-dessus */
  .product-block--reverse .product-media { order: 1; }
  .product-block--reverse .product-body  { order: 2; }

  .about-figure--portrait {
    max-width: 100%;
    margin: 30px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about-kicker { font-size: 1.15rem; }
  .about-lead { font-size: 1.12rem; }
  .about-quote { font-size: 1.35rem; padding-left: 18px; }
  .about-highlight { font-size: 1.15rem; }
}