/* ===========================
   FILOCHE — Styles principaux
   Couleurs extraites Figma:
   #f9f5dd  crème (fond principal)
   #000000  noir
   #ffffff  blanc
   #991734  rouge (accent)
   #641527  rouge foncé
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&family=Parisienne&display=swap');

/* --- Fallback local si pas de connexion --- */
@font-face {
  font-family: 'Le Havre';
  src: local('Le Havre');
}
@font-face {
  font-family: 'TT Ricordi Greto VF Trial';
  src: local('TT Ricordi Greto VF Trial');
}

:root {
  --creme:      #f9f5dd;
  --noir:       #000000;
  --blanc:      #ffffff;
  --rouge:      #991734;
  --rouge-dark: #641527;

  --font-titre: 'le-havre', 'Le Havre', 'Oswald', 'Arial Black', sans-serif;
  --font-corps: 'TT Ricordi Greto VF Trial', 'Lora', Georgia, serif;
  --font-cursive-fr: 'Parisienne', 'Brush Script MT', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--creme);
  color: var(--noir);
  font-family: var(--font-corps);
  font-size: 18px;
  line-height: 1.5;
}

/* =====================
   MOTION
===================== */
@keyframes filocheFadeUp {
  from { opacity: 0; transform: translateY(18px) scale(0.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes filocheNavIn {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

.motion-enabled .nav {
  opacity: 0;
  transform: translateY(-14px);
}

.motion-enabled.page-ready .nav {
  animation: filocheNavIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.motion-enabled .hero__badge,
.motion-enabled .hero__title,
.motion-enabled .hero__subtitle,
.motion-enabled .hero__actions,
.motion-enabled .hero__rating {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.motion-enabled.page-ready .hero__badge { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.motion-enabled.page-ready .hero__title { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.motion-enabled.page-ready .hero__subtitle { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.motion-enabled.page-ready .hero__actions { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.motion-enabled.page-ready .hero__rating { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }

.motion-enabled .hero__overlay {
  opacity: 0.78;
  transition: opacity 1s ease;
}

.motion-enabled.page-ready .hero__overlay {
  opacity: 0.55;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .reveal {
    transform: translateY(16px);
    transition: opacity 0.52s ease-out, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-enabled .nav,
  .motion-enabled .hero__badge,
  .motion-enabled .hero__title,
  .motion-enabled .hero__subtitle,
  .motion-enabled .hero__actions,
  .motion-enabled .hero__rating,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =====================
   NAVIGATION
===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: var(--noir);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav__logo img {
  width: 138px;
  height: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-titre);
  font-size: 16px;
  font-weight: 700;
  color: var(--creme);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--rouge);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav__links a.is-active {
  color: var(--rouge);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav__order {
  display: flex;
  gap: 12px;
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 14px;
}

.nav__social-label {
  font-family: var(--font-corps);
  font-size: 12px;
  color: rgba(249,245,221,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav__social a {
  font-family: var(--font-titre);
  font-size: 13px;
  color: var(--creme);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(249,245,221,0.35);
  border-radius: 999px;
  padding: 4px 10px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav__social-text {
  display: inline;
}

.nav__social-icon {
  display: none;
  width: 14px;
  height: 14px;
}

.nav__social a:hover {
  color: var(--blanc);
  border-color: var(--rouge);
  background: rgba(153, 23, 52, 0.24);
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 14px;
}

.nav__lang-link {
  font-size: 20px;
  line-height: 1;
  border: 1px solid rgba(249,245,221,0.35);
  border-radius: 999px;
  padding: 4px 6px;
  transition: border-color 0.2s, background 0.2s;
}

.nav__lang-link:hover {
  color: var(--blanc);
  border-color: var(--rouge);
  background: rgba(153, 23, 52, 0.24);
}

.nav__lang-link.is-active {
  color: var(--blanc);
  border-color: var(--rouge);
  background: rgba(153, 23, 52, 0.35);
}

.nav__order a {
  font-family: var(--font-titre);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.nav__order a.btn-outline {
  border: 1.5px solid var(--rouge);
  color: var(--rouge);
}
.nav__order a.btn-outline:hover { background: var(--rouge); color: var(--blanc); }

.nav__order a.btn-fill {
  background: var(--rouge);
  color: var(--blanc);
}
.nav__order a.btn-fill:hover { background: var(--rouge-dark); }

/* Mobile nav */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  pointer-events: none;
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 120px 80px;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { display: none; }
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-titre);
  font-size: 18px;
  font-weight: 700;
  color: var(--creme);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.7;
}
.hero__badge svg {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.hero__title {
  font-family: var(--font-titre);
  font-size: clamp(42px, 5.2vw, 75px);
  font-weight: 800;
  color: var(--blanc);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 780px;
  margin-bottom: 28px;
}

.hero__title-continuation {
  display: block;
}

.hero__subtitle {
  font-family: var(--font-titre);
  font-size: clamp(20px, 2.4vw, 35px);
  font-weight: 700;
  color: var(--creme);
  max-width: 600px;
  margin-bottom: 56px;
}

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

.hero__rating {
  margin-top: 14px;
  font-family: var(--font-corps);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
  color: var(--blanc) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

.hero__stars {
  color: #ffd64d !important;
  letter-spacing: 0.08em;
  margin-right: 8px;
}

.hero .hero__rating { color: #ffffff !important; }
.hero .hero__stars { color: #ffd64d !important; }

.btn {
  font-family: var(--font-titre);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  display: inline-block;
}
.btn:active { transform: scale(0.98); }

.btn--rouge { background: var(--rouge); color: var(--blanc); }
.btn--rouge:hover { background: var(--rouge-dark); }

.btn--outline-creme {
  background: transparent;
  color: var(--creme);
  border: 1.5px solid var(--creme);
}
.btn--outline-creme:hover { background: var(--creme); color: var(--noir); }

/* Overlay sombre sur la photo hero */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero > *:not(.hero__overlay):not(.hero__bg-wrap) {
  position: relative;
  z-index: 2;
}

/* Lignes décoratives hero */
.hero__lines {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.25;
}
.hero__lines span {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--creme);
  transform-origin: center;
}

/* =====================
   SECTION — FILOCHE SCROLL
===================== */
.section-filoche-scroll {
  background: var(--creme);
  padding: 20px 120px 60px;
}

.filoche-scroll-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  cursor: default;
  user-select: none;
  scrollbar-width: none;
}

.filoche-scroll-track::-webkit-scrollbar {
  display: none;
}

.filoche-scroll-track img {
  width: 360px;
  max-width: 78vw;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* =====================
   SECTION — CONCEPT
===================== */
.section-concept {
  background: var(--creme);
  padding: 120px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-concept__heading {
  font-family: var(--font-titre);
  font-size: clamp(32px, 3.8vw, 55px);
  font-weight: 800;
  color: var(--noir);
  text-transform: uppercase;
  line-height: 1.05;
}

.section-concept__text {
  font-family: var(--font-corps);
  font-size: 18px;
  font-weight: 400;
  color: var(--noir);
  line-height: 1.65;
}

/* =====================
   SECTION — AVIS
===================== */
.section-avis {
  background: linear-gradient(180deg, var(--creme) 0%, #f1ead0 100%);
  padding: 30px 120px 90px;
}

.section-avis__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.section-avis__title {
  font-family: var(--font-titre);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  color: var(--rouge);
  text-transform: uppercase;
  margin: 0;
}

.section-avis__meta {
  font-family: var(--font-corps);
  font-size: 14px;
  font-weight: 600;
  color: var(--rouge-dark);
  margin: 0;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.avis-card {
  background: var(--blanc);
  border: 1px solid rgba(153,23,52,0.16);
  border-radius: 6px;
  padding: 18px;
}

.avis-card__stars {
  font-size: 19px;
  line-height: 1;
  color: #d9a300;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.avis-card p {
  margin: 0;
  font-family: var(--font-corps);
  font-size: 15px;
  line-height: 1.55;
  color: var(--noir);
}

.avis-card__author {
  display: block;
  margin-top: 12px;
  font-family: var(--font-titre);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rouge-dark);
  opacity: 0.8;
}

/* =====================
   SECTION — SANDWICHS
===================== */
.section-sandwichs {
  background: var(--creme);
  padding: 100px 120px 120px;
}

.section-sandwichs__header {
  margin-bottom: 16px;
}

.section-sandwichs__title {
  font-family: var(--font-titre);
  font-size: clamp(32px, 3.8vw, 55px);
  font-weight: 800;
  color: var(--rouge);
  text-transform: uppercase;
}

.section-sandwichs__subtitle {
  font-family: var(--font-corps);
  font-size: 18px;
  font-weight: 400;
  color: var(--rouge-dark);
  margin-top: 8px;
  margin-bottom: 60px;
}

.sandwichs__formats {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 40px;
}
.sandwichs__format-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sandwichs__format-badge span {
  font-family: var(--font-titre);
  font-size: 28px;
  font-weight: 800;
  color: var(--rouge);
}

/* Layout liste PDF : texte | bun | pain long */
.sandwichs__liste {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}

.sandwichs__row {
  display: grid;
  grid-template-columns: 1fr 160px 320px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(153,23,52,0.1);
}
.sandwichs__row:last-child { border-bottom: none; }

.sandwichs__row-info { display: flex; flex-direction: column; gap: 8px; }

.sandwichs__row-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sandwichs__row-name {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 800;
  color: var(--rouge);
  text-transform: uppercase;
}

.sandwichs__row-desc {
  font-family: var(--font-corps);
  font-size: 15px;
  color: var(--rouge-dark);
  line-height: 1.6;
}

.sandwichs__row-allergenes {
  font-family: var(--font-corps);
  font-size: 12px;
  color: rgba(100,21,39,0.55);
  font-style: italic;
}

.sandwichs__row-bun {
  width: 160px;
  height: 120px;
  object-fit: contain;
  border-radius: 4px;
}

.sandwichs__row-long {
  width: 320px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.sandwichs__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 56px;
}

.sandwichs__grid .sandwich-card {
  flex: 0 0 calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
}

.sandwich-card {
  background: var(--blanc);
  border-radius: 4px;
  padding: 40px 32px;
  border: 1px solid rgba(153, 23, 52, 0.12);
}

.sandwich-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 24px;
  display: block;
}

.sandwich-card__img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #e8e0c0 0%, #d4c890 100%);
  border-radius: 2px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sandwich-card__img-placeholder span {
  font-family: var(--font-corps);
  font-size: 13px;
  color: rgba(0,0,0,0.35);
  font-style: italic;
}

.sandwich-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.sandwich-card__tag {
  font-family: var(--font-titre);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
}
.sandwich-card__tag--viande { background: var(--rouge); color: var(--blanc); }
.sandwich-card__tag--veggie { background: #4a7c2f; color: var(--blanc); }

.sandwich-card__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(153,23,52,0.1);
  font-family: var(--font-titre);
  font-weight: 700;
  color: rgba(0,0,0,0.45);
  font-size: 16px;
}
.sandwich-card__price-grand {
  font-size: 20px;
  color: var(--rouge);
}

/* Formule banner */
.formule-banner {
  background: var(--rouge);
  padding: 28px 120px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.formule-banner p {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 800;
  color: var(--blanc);
  text-transform: uppercase;
}
.formule-banner p span {
  font-family: var(--font-corps);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  opacity: 0.85;
  margin-left: 8px;
}
.formule-banner__resto {
  border-left: 1.5px solid rgba(255,255,255,0.3);
  padding-left: 32px;
}
@media (max-width: 768px) {
  .formule-banner { padding: 24px; flex-direction: column; align-items: flex-start; }
  .formule-banner__resto { border-left: none; padding-left: 0; }
}

.sandwich-card__name {
  font-family: var(--font-titre);
  font-size: 28px;
  font-weight: 800;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sandwich-card__desc {
  font-family: var(--font-corps);
  font-size: 15px;
  color: var(--rouge-dark);
  line-height: 1.6;
}

.section-sandwichs__cta {
  display: flex;
  justify-content: flex-start;
}

/* =====================
   SECTION — INSTAGRAM
===================== */
.section-instagram {
  background: var(--noir);
  padding: 100px 120px;
  text-align: center;
}

/* =====================
   CARTE (embarquée dans index)
===================== */
.carte-hero {
  background: var(--noir);
  padding: 80px 120px 60px;
  text-align: center;
}
.carte-hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 800;
  color: var(--blanc);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.carte-hero p {
  font-family: var(--font-corps);
  font-size: 18px;
  color: var(--creme);
  opacity: 0.75;
}
.carte-section {
  padding: 72px 120px;
}
.carte-section:nth-child(even) { background: var(--blanc); }
.carte-section:nth-child(odd)  { background: var(--creme); }
.carte-section__title {
  font-family: var(--font-titre);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.carte-section__subtitle {
  font-family: var(--font-corps);
  font-size: 15px;
  color: var(--rouge-dark);
  margin-bottom: 40px;
}
.filoches-prix {
  display: grid;
  grid-template-columns: 1fr 420px;
  margin-bottom: 40px;
}
.filoches-prix__group {
  grid-column: 2;
  display: flex;
  gap: 12px;
}
.filoches-prix__badge {
  background: var(--rouge);
  color: var(--blanc);
  font-family: var(--font-titre);
  font-size: 24px;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 4px;
  text-align: center;
  flex: 1;
}
.filoches-prix__badge small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 4px;
  font-family: var(--font-corps);
  text-transform: none;
}
.filoches-list { display: flex; flex-direction: column; gap: 0; overflow: visible; }
.filoche-item {
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-rows: 1fr auto;
  gap: 8px 40px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(153,23,52,0.1);
}
.filoche-item:last-child { border-bottom: none; }
.filoche-item__body  { grid-column: 1; grid-row: 1; }
.filoche-item__price { grid-column: 1; grid-row: 2; }
.filoche-item__photos {
  grid-column: 2; grid-row: 1 / 3;
  display: flex; flex-direction: row; gap: 8px;
  align-self: center; width: 420px;
  overflow: visible;
}
.filoche-item__photo {
  flex: 1; min-width: 0;
  height: 240px;
  object-fit: cover; border-radius: 4px;
  cursor: zoom-in;
  transition: opacity 0.15s ease;
}
.filoche-item__photo[src*='-bun.webp'] {
  object-fit: contain;
  background: #fff;
  padding: 6px;
}
.filoche-item__photo:hover { opacity: 0.88; }
/* Photo détourée (PNG sans fond) — non utilisé actuellement */

/* Overlay preview */
#photo-preview {
  display: none;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border-radius: 6px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.55);
  max-width: 540px;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: var(--blanc);
  border: 3px solid var(--rouge);
  transform: translate(-50%, -50%);
}

#photo-preview-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.78);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#photo-preview-backdrop.is-open {
  display: flex;
}

#photo-preview-mobile {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  background: var(--blanc);
  border: 3px solid var(--rouge);
}

body.no-scroll {
  overflow: hidden;
}
.filoche-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rouge);
  font-family: var(--font-titre);
  font-size: 10px; font-weight: 700;
  color: var(--blanc);
  text-align: center; line-height: 1.2; padding: 4px;
  flex-shrink: 0;
  margin-right: 10px;
  vertical-align: middle;
}
.filoche-item__icon.veggie { background: #4a7c2f; }

.filoche-item__name {
  font-family: var(--font-titre);
  font-size: 22px; font-weight: 800;
  color: var(--rouge); text-transform: uppercase; margin-bottom: 6px;
}
.filoche-item__type {
  font-family: var(--font-corps);
  font-size: 13px; font-weight: 600;
  color: var(--rouge-dark); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.filoche-item__desc {
  font-family: var(--font-corps);
  font-size: 15px; color: var(--noir); line-height: 1.6; max-width: 640px;
}
.filoche-item__allergenes {
  font-family: var(--font-corps);
  font-size: 12px; color: rgba(0,0,0,0.45); margin-top: 6px; font-style: italic;
}
.filoche-item__price {
  display: none;
}
.filoche-item__price span {
  font-family: var(--font-titre); font-size: 18px; font-weight: 800; color: var(--noir);
}
.filoche-item__price span.grand { font-size: 22px; color: var(--rouge); }
.filoche-item__price small { font-family: var(--font-corps); font-size: 11px; color: rgba(0,0,0,0.4); }

.formule-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 8px;
}
.formule-card {
  background: var(--rouge); color: var(--blanc); border-radius: 4px; padding: 28px 24px;
}
.formule-card--dark { background: var(--rouge-dark); }
.formule-card--olive { background: #3d5a2a; }
.formule-card__title { font-family: var(--font-titre); font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.formule-card__price { font-family: var(--font-titre); font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.formule-card__desc { font-family: var(--font-corps); font-size: 14px; opacity: 0.85; line-height: 1.5; }

.happy-hours-banner {
  background: var(--rouge); color: var(--blanc);
  padding: 48px 120px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.happy-hours-banner__title { font-family: var(--font-titre); font-size: clamp(32px, 4vw, 56px); font-weight: 800; text-transform: uppercase; line-height: 1; }
.happy-hours-banner__desc { font-family: var(--font-corps); font-size: clamp(13px, 1.4vw, 17px); opacity: 0.85; margin-top: 8px; }
.happy-hours-banner__sub { font-family: var(--font-corps); font-size: 18px; opacity: 0.85; }
.happy-hours-banner__time { font-family: var(--font-titre); font-size: clamp(48px, 6vw, 80px); font-weight: 800; margin-left: auto; }

.prix-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; }
.prix-block__title { font-family: var(--font-titre); font-size: 18px; font-weight: 800; color: var(--rouge); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--rouge); }

/* ── Accordéons carte ── */
.carte-accordeon { margin-bottom: 32px; }
.carte-accordeon:last-child { margin-bottom: 0; }

/* Masquer le triangle natif */
.carte-accordeon summary { list-style: none; }
.carte-accordeon summary::-webkit-details-marker { display: none; }

.carte-accordeon__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-titre);
  font-size: 18px; font-weight: 800;
  color: var(--rouge);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border: 2px solid var(--rouge);
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0;
}
.carte-accordeon__title:hover {
  background: var(--rouge);
  color: var(--blanc);
}
.carte-accordeon__title:hover .carte-accordeon__title-sub {
  color: rgba(255,255,255,0.65);
}

/* Icône +/- */
.carte-accordeon__title::after {
  content: '+';
  font-size: 22px; font-weight: 400; line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.carte-accordeon[open] > .carte-accordeon__title::after {
  content: '−';
}

.carte-accordeon__title-sub {
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
  color: rgba(153,23,52,0.6);
  margin-left: 6px;
}

/* Contenu */
.carte-accordeon > .prix-block,
.carte-accordeon > p {
  margin-top: 4px;
  border-top: none;
}

/* Desktop : toujours ouvert, titre discret sans bordure pleine */
@media (min-width: 769px) {
  .carte-accordeon__title {
    pointer-events: none;
    border-color: transparent;
    padding: 0 0 8px 0;
    border-bottom: 2px solid var(--rouge);
    border-radius: 0;
    margin-bottom: 16px;
  }
  .carte-accordeon__title::after { display: none; }
  .carte-accordeon__title:hover { background: transparent; color: var(--rouge); }
}
.prix-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); gap: 12px; }
.prix-row:last-child { border-bottom: none; }
.prix-row__label { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-corps); font-size: 15px; color: var(--noir); }
.prix-row__text { display: block; }
.prix-row__label small { display: block; font-size: 12px; color: rgba(0,0,0,0.45); }
.prix-row__thumb { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.08); cursor: zoom-in; }
.prix-row__val { font-family: var(--font-titre); font-size: 16px; font-weight: 700; color: var(--rouge); white-space: nowrap; flex-shrink: 0; }

.carte-mention { background: var(--noir); padding: 24px 120px; }
.carte-mention p { font-family: var(--font-corps); font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

@media (max-width: 768px) {
  .carte-hero { padding: 100px 24px 40px; }
  .carte-section { padding: 48px 24px; }
  .prix-row { align-items: flex-start; }
  .prix-row__label { flex: 1; min-width: 0; }
  .prix-row__text { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
  .prix-row__text small { flex-basis: 100%; margin-top: 2px; }
  .prix-row__val { align-self: flex-start; margin-top: 2px; line-height: 1; font-size: 18px; }
  .filoche-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .filoche-item__body  { grid-column: 1; grid-row: 1; }
  .filoche-item__photos { grid-column: 1; grid-row: 2; width: 100%; gap: 8px; }
  .filoche-item__photo { height: 160px; }
  .filoche-item__price { grid-column: 1; grid-row: 3; flex-direction: row; gap: 12px; margin-top: 0; }
  .happy-hours-banner { padding: 40px 24px; }
  .happy-hours-banner__time { margin-left: 0; }
  .carte-mention { padding: 24px; }
}

.section-instagram__title {
  font-family: var(--font-titre);
  font-size: clamp(30px, 3.8vw, 55px);
  font-weight: 800;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-instagram__handle {
  font-family: var(--font-titre);
  font-size: 24px;
  font-weight: 700;
  color: var(--rouge);
}
.section-instagram__handle a:hover { text-decoration: underline; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.instagram-grid--scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.instagram-grid--scroll::-webkit-scrollbar {
  display: none;
}

.instagram-grid--scroll .instagram-grid__item {
  flex: 0 0 320px;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
}

.instagram-grid__item {
  aspect-ratio: 1;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
}
.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.instagram-grid__item span {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-corps);
  font-style: italic;
}

/* =====================
   SECTION — TÉMOIGNAGE
===================== */
.section-temoignage {
  background: var(--noir);
  padding: 100px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.temoignage__quote {
  font-family: var(--font-titre);
  font-size: clamp(22px, 2.4vw, 35px);
  font-weight: 700;
  color: var(--blanc);
  max-width: 820px;
  line-height: 1.4;
  margin-bottom: 32px;
}

.temoignage__author {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 700;
  color: var(--creme);
  opacity: 0.7;
}

/* =====================
   SECTION — CONTACT
===================== */
.section-contact {
  background: var(--rouge);
  padding: 100px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-contact__title {
  font-family: var(--font-titre);
  font-size: clamp(32px, 3.8vw, 55px);
  font-weight: 800;
  color: var(--blanc);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-contact__desc {
  font-family: var(--font-corps);
  font-size: 16px;
  color: var(--blanc);
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info li {
  font-family: var(--font-titre);
  font-size: 18px;
  font-weight: 700;
  color: var(--blanc);
}

.contact-info li span {
  display: block;
  font-family: var(--font-corps);
  font-size: 15px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.85;
}

.contact-info__map-link {
  display: block;
  font-family: var(--font-corps);
  font-size: 15px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.85;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.contact-info__map-link:hover {
  opacity: 1;
  color: var(--creme);
}

.contact-info a.contact-phone {
  font-family: var(--font-corps);
  font-size: 16px;
  font-weight: 600;
  color: var(--blanc);
  text-decoration: underline;
}

.contact-subtitle {
  font-family: var(--font-titre);
  font-size: 20px;
  font-weight: 800;
  color: var(--blanc);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.contact-press {
  margin-top: 22px;
}

.contact-press a {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 14px;
  line-height: 1.55;
  color: var(--blanc);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-press a:hover {
  opacity: 0.85;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--rouge-dark);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-placeholder p {
  font-family: var(--font-corps);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.map-placeholder a {
  font-family: var(--font-titre);
  font-size: 15px;
  font-weight: 700;
  color: var(--blanc);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.map-placeholder a:hover { background: rgba(255,255,255,0.1); border-color: var(--blanc); }

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--creme);
  padding: 32px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer__nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer__nav a {
  font-family: var(--font-titre);
  font-size: 16px;
  font-weight: 700;
  color: var(--rouge);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--rouge-dark); }

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer__legal p {
  font-family: var(--font-corps);
  font-size: 13px;
  color: var(--rouge);
  opacity: 0.75;
}

.mobile-quickbar {
  display: none;
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--rouge-dark); }

/* =====================
   RESPONSIVE MOBILE
===================== */
@media (max-width: 768px) {
  .nav {
    padding: 0 16px;
    height: 64px;
  }
  .nav__links,
  .nav__order {
    display: none;
  }
  .nav__logo {
    line-height: 1;
  }

  .nav__logo img {
    width: 112px;
  }

  .nav__social {
    margin-left: auto;
    margin-right: 6px;
    gap: 8px;
  }

  .nav__lang {
    margin-right: 6px;
    gap: 6px;
  }

  .nav__lang-link {
    font-size: 20px;
    padding: 4px 6px;
  }

  .nav__social-label {
    display: none;
  }

  .nav__social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    letter-spacing: 0;
  }

  .nav__social a[href*="instagram.com"] {
    background: radial-gradient(circle at 28% 108%, #fdf497 0%, #fdf497 8%, #fd5949 38%, #d6249f 64%, #285AEB 98%);
  }

  .nav__social a[href*="facebook.com"] {
    background: #1877f2;
  }

  .nav__social a[href*="tiktok.com"] {
    background: #111111;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 4px 10px rgba(0,0,0,0.42);
  }

  .nav__social-text {
    display: none;
  }

  .nav__social-icon {
    display: block;
    width: 18px;
    height: 18px;
  }

  .nav__burger { display: flex; }

  .hero {
    padding: 100px 24px 60px;
    min-height: 100svh;
  }

  .hero__title-continuation {
    display: inline;
    margin-left: 0.2em;
  }

  body {
    padding-bottom: 84px;
  }

  .back-to-top {
    bottom: 92px;
    right: 16px;
  }

  .hero__rating {
    font-size: 22px;
    line-height: 1.2;
  }

  .section-concept,
  .section-contact {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .section-filoche-scroll {
    padding: 14px 24px 42px;
  }

  .filoche-scroll-track img {
    width: 82vw;
    max-width: none;
  }

  .section-avis {
    padding: 24px 24px 56px;
  }

  .filoches-prix {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .filoches-prix__group {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .filoches-prix__badge {
    font-size: 20px;
    padding: 12px 10px;
    min-width: 0;
    line-height: 1.05;
  }

  /* Fallback si le HTML n'a pas encore le wrapper __group */
  .filoches-prix:not(:has(.filoches-prix__group)) {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .filoches-prix:not(:has(.filoches-prix__group)) > .filoches-prix__badge {
    flex: 1;
    width: calc(50% - 5px);
  }

  .section-avis__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 6px;
  }

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

  .contact-subtitle {
    font-size: 18px;
  }

  .section-sandwichs,
  .section-instagram,
  .section-temoignage {
    padding: 60px 24px;
  }

  .mobile-quickbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 150;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  }

  .mobile-quickbar a {
    font-family: var(--font-titre);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blanc);
    text-align: center;
    padding: 10px 6px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 6px;
    background: transparent;
  }

  .mobile-quickbar a.is-active {
    background: var(--rouge);
    border-color: var(--rouge);
    color: var(--blanc);
  }

  .sandwichs__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .sandwichs__row-info { grid-column: 1 / 3; }
  .sandwichs__row-bun { width: 100%; height: 100px; }
  .sandwichs__row-long { width: 100%; height: 100px; }

  .instagram-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .instagram-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-grid__item {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }

  .footer {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer__legal { align-items: flex-start; }
}
