/* ============================================
   STYLE.CSS — Le Petit Farceur — v3
   Réécriture complète avec vraies photos
   ============================================ */

/* --- VARIABLES --- */
:root {
  --creme:       #F0E6D3;
  --creme-fonce: #E4D4B8;
  --brun:        #2C1810;
  --brun-moyen:  #5C3D2E;
  --bordeaux:    #8B2332;
  --texte:       #3D3028;
  --ambre:       #C8792A;
  --ambre-clair: #E8A050;
  --or:          #D4A843;
  --blanc:       #FDFAF6;

  --font-titre: 'Fraunces', Georgia, serif;
  --font-corps: 'Lora', Georgia, serif;

  --transition: 0.4s ease;
  --radius: 12px;
  --brun-mid: #7A5A40;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.5rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(44, 24, 16, 0.97);
  padding: 0.9rem 2.5rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav__logo {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--creme);
  letter-spacing: 0.04em;
}
.nav__liens {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__liens a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,230,211,0.75);
  transition: color var(--transition);
}
.nav__liens a:hover,
.nav__liens a.active { color: var(--creme); }
.nav__tel {
  font-family: var(--font-titre);
  color: var(--or) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--creme);
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('Photo/hero.jpg.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(18, 7, 3, 0.78) 0%,
    rgba(44, 24, 16, 0.58) 55%,
    rgba(139, 35, 50, 0.22) 100%
  );
  z-index: 1;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__contenu {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--creme);
  padding: 2rem 1.5rem;
  max-width: 820px;
  width: 100%;
}
.hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

/* Mots rotatifs */
.hero__mots {
  position: relative;
  height: 7.5rem;
  margin-bottom: 1.5rem;
  overflow: visible;
}
.hero__mot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  font-family: var(--font-titre);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-style: italic;
  font-weight: 600;
  color: var(--creme);
  white-space: nowrap;
  opacity: 0;
  animation: motTourne 12s infinite;
}
.hero__mot:nth-child(1) { animation-delay: 0.8s; }
.hero__mot:nth-child(2) { animation-delay: 3.8s; }
.hero__mot:nth-child(3) { animation-delay: 6.8s; }
.hero__mot:nth-child(4) { animation-delay: 9.8s; }

@keyframes motTourne {
  0%    { opacity: 0; transform: translateX(-50%) translateY(18px); }
  6%    { opacity: 0; transform: translateX(-50%) translateY(18px); }
  14%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  20%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  27%   { opacity: 0; transform: translateX(-50%) translateY(-18px); }
  100%  { opacity: 0; transform: translateX(-50%) translateY(-18px); }
}

.hero__h1 {
  font-family: var(--font-titre);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(240,230,211,0.85);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.1s forwards;
}
.hero__h1 em {
  color: var(--or);
  font-style: italic;
}
.hero__sous-titre {
  font-size: 0.92rem;
  color: rgba(240,230,211,0.65);
  line-height: 1.9;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.3s forwards;
}
.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.5s forwards;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(240,230,211,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.2s forwards;
}
.hero__scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid rgba(240,230,211,0.35);
  border-bottom: 1.5px solid rgba(240,230,211,0.35);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-corps);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border-radius: var(--radius);
}
.btn:hover { transform: translateY(-2px); }
.btn--bordeaux {
  background: var(--bordeaux);
  color: var(--creme);
  border: 1.5px solid var(--bordeaux);
}
.btn--bordeaux:hover {
  background: transparent;
  color: var(--creme);
  border-color: var(--creme);
}
.btn--contour {
  background: transparent;
  color: var(--creme);
  border: 1.5px solid rgba(240,230,211,0.45);
}
.btn--contour:hover {
  background: rgba(240,230,211,0.1);
  border-color: var(--creme);
}
.btn--brun {
  background: var(--brun);
  color: var(--creme);
  border: 1.5px solid var(--brun);
}
.btn--brun:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.container--etroit {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: 6rem 0; position: relative; }
.section--blanc  { background: var(--blanc); }
.section--creme  { background: var(--creme); }
.section--brun   { background: var(--brun); }
.section--ambre  { background: var(--ambre); }

/* ============================================
   TRANSITIONS ENTRE SECTIONS
   Pseudo-éléments qui fondent vers la couleur suivante
   ============================================ */

/* Crème → EDE0C8 (aperçu carte) */
.section--creme::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to bottom, transparent, #EDE0C8);
  z-index: 2;
  pointer-events: none;
}

/* Ambre → Blanc (formules → réservation) */
.section--ambre::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--blanc));
  z-index: 2;
  pointer-events: none;
}

/* Blanc → Brun (réservation → infos pratiques) */
.section--blanc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--brun));
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */
.titre-section {
  font-family: var(--font-titre);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brun);
  margin-bottom: 1rem;
}
.titre-section--clair { color: var(--creme); }

.sous-titre-section {
  font-size: 0.98rem;
  color: var(--brun-moyen);
  line-height: 1.85;
  margin-bottom: 3rem;
}
.sous-titre-section--clair { color: rgba(240,230,211,0.75); }

.sep {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.sep--centre { justify-content: center; }
.sep__ornement { font-size: 0.85rem; color: var(--or); }
.sep::before, .sep::after {
  content: '';
  height: 1px;
  width: 48px;
  background: var(--or);
  opacity: 0.45;
}

/* ============================================
   ANIMATIONS AU SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.depuis-gauche { transform: translateX(-60px); }
.reveal.depuis-droite { transform: translateX(60px); }
.reveal.depuis-haut   { transform: translateY(-56px); }
.reveal.fondu         { transform: none; transition: opacity 0.95s ease; }
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.20s; }
.stagger-3 { transition-delay: 0.34s; }
.stagger-4 { transition-delay: 0.50s; }
.stagger-5 { transition-delay: 0.68s; }

/* ============================================
   PHOTO AVEC ZOOM HOVER
   ============================================ */
.photo-zoom {
  overflow: hidden;
  border-radius: var(--radius);
}
.photo-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  display: block;
}
.photo-zoom:hover img { transform: scale(1.06); }

/* ============================================
   SECTION PRÉSENTATION
   ============================================ */
.presentation {
  display: grid;
  grid-template-columns: 57% 43%;
  gap: 5rem;
  align-items: center;
}
.presentation__photo { height: 500px; }
.presentation__texte { padding-left: 0.5rem; }
.presentation__texte p {
  color: var(--texte);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

/* ============================================
   APERÇU CARTE
   ============================================ */
.apercu-carte { text-align: center; }
.apercu-carte__grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 0 3rem;
  perspective: 1200px;
}
.plat-card {
  background: rgba(253,247,235,0.93);
  border: 1px solid rgba(44,24,16,0.13);
  padding: 2rem 1.6rem;
  text-align: left;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: var(--radius);
}
.plat-card:hover {
  box-shadow: 0 22px 52px rgba(44,24,16,0.18);
}
/* Coins décoratifs bistrot */
.plat-card::before,
.plat-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.35s ease;
}
.plat-card::before {
  top: 10px; left: 10px;
  border-top: 1.5px solid var(--bordeaux);
  border-left: 1.5px solid var(--bordeaux);
}
.plat-card::after {
  bottom: 10px; right: 10px;
  border-bottom: 1.5px solid var(--bordeaux);
  border-right: 1.5px solid var(--bordeaux);
}
.plat-card:hover::before,
.plat-card:hover::after { opacity: 1; }
.plat-card__categorie {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 0.6rem;
}
.plat-card__nom {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--brun);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.plat-card__desc {
  font-size: 0.87rem;
  color: var(--brun-moyen);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.plat-card__prix {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  color: var(--bordeaux);
}

/* ============================================
   BANDEAU PHOTO PLEINE LARGEUR
   ============================================ */
.bandeau-photo {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.bandeau-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 14s ease;
  display: block;
}
.bandeau-photo:hover img { transform: scale(1.05); }
.bandeau-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #EDE0C8 0%,
    rgba(28,12,6,0.04) 70px,
    rgba(28,12,6,0.44) 32%,
    rgba(28,12,6,0.44) 68%,
    rgba(28,12,6,0.04) calc(100% - 70px),
    var(--ambre) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.bandeau-photo__texte {
  font-family: var(--font-titre);
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--creme);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.bandeau-photo__texte em { color: var(--or); }

/* ============================================
   FORMULES DU MIDI
   ============================================ */
.formules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.formule-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(240,230,211,0.28);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  position: relative;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
/* Coins décoratifs bistrot */
.formule-card::before,
.formule-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.formule-card::before {
  top: 10px; left: 10px;
  border-top: 1.5px solid var(--or);
  border-left: 1.5px solid var(--or);
}
.formule-card::after {
  bottom: 10px; right: 10px;
  border-bottom: 1.5px solid var(--or);
  border-right: 1.5px solid var(--or);
}
.formule-card:hover::before,
.formule-card:hover::after { opacity: 0.9; }
.formule-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}
.formule-card__nom {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  color: var(--creme);
  margin-bottom: 1rem;
}
.formule-card__detail {
  font-size: 0.9rem;
  color: rgba(240,230,211,0.72);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.formule-card__prix {
  font-family: var(--font-titre);
  font-size: 2.1rem;
  color: var(--or);
}

/* ============================================
   SECTION RÉSERVATION (photo + texte)
   ============================================ */
.resa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.resa-split__photo { height: 420px; }
.resa-split__texte { padding: 1rem 0; }
.resa-split__texte p {
  color: var(--brun-moyen);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.resa-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-titre);
  font-size: 1.7rem;
  color: var(--bordeaux);
  transition: color var(--transition);
}
.resa-tel:hover { color: var(--ambre); }

/* ============================================
   INFOS PRATIQUES
   ============================================ */
.infos-pratiques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.info-bloc {
  text-align: center;
  transition: transform 0.35s ease;
  cursor: default;
}
.info-bloc:hover { transform: translateY(-6px); }
.info-bloc__icone {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.info-bloc__titre {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--creme);
  margin-bottom: 0.6rem;
}
.info-bloc__texte {
  font-size: 0.9rem;
  color: rgba(240,230,211,0.68);
  line-height: 1.85;
}
.info-bloc__texte a {
  color: var(--ambre-clair);
  transition: color var(--transition);
}
.info-bloc__texte a:hover { color: var(--or); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #190D07;
  color: rgba(240,230,211,0.55);
  padding: 4.5rem 0 2rem;
}
.footer__grille {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(240,230,211,0.09);
}
.footer__logo {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--creme);
  margin-bottom: 0.8rem;
}
.footer__desc { font-size: 0.87rem; line-height: 1.75; }
.footer__titre-col {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.2rem;
}
.footer__liste li { margin-bottom: 0.6rem; }
.footer__liste a {
  font-size: 0.87rem;
  color: rgba(240,230,211,0.55);
  transition: color var(--transition);
}
.footer__liste a:hover { color: var(--creme); }
.footer__bas {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.77rem;
}
.footer__toquemedia a {
  color: var(--ambre-clair);
  transition: color var(--transition);
}
.footer__toquemedia a:hover { color: var(--or); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .presentation {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .presentation__photo { height: 340px; }
  .apercu-carte__grille { grid-template-columns: 1fr; gap: 1.5rem; }
  .resa-split { grid-template-columns: 1fr; gap: 3rem; }
  .resa-split__photo { height: 300px; }
  .infos-pratiques { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grille { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bas { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 768px) {
  .hero { background-attachment: scroll; }
  .nav { padding: 1.1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav__liens {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav__liens.ouvert { display: flex; }
  .nav__liens a { font-size: 1rem; }
  .nav__toggle { display: flex; }
  .hero__mots { height: 5.5rem; }
  .bandeau-photo { height: 280px; }
  .section { padding: 4rem 0; }
  .formules { grid-template-columns: 1fr; }
}

/* ============================================
   PAGES SECONDAIRES — HERO
   ============================================ */
.page-hero {
  background: var(--brun);
  color: var(--creme);
  padding: 10rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(139,35,50,0.09);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 38%;
  bottom: -4rem;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(212,168,67,0.05);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600;
  color: var(--creme);
  line-height: 1.1;
  position: relative;
  z-index: 2;
  margin-left: clamp(0rem, 6vw, 5rem);
  max-width: 760px;
}
.page-hero__sous-titre {
  font-size: 0.93rem;
  color: rgba(240,230,211,0.58);
  margin-left: clamp(0rem, 9vw, 7.5rem);
  margin-top: 1.2rem;
  font-style: italic;
  max-width: 480px;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

/* ============================================
   SÉPARATEUR (pages secondaires)
   ============================================ */
.separateur {
  width: 44px;
  height: 2px;
  background: var(--bordeaux);
  margin: 1.1rem 0 1.7rem;
  border-radius: 2px;
}
.separateur--centre { margin-left: auto; margin-right: auto; }

/* ============================================
   MENU — LA CARTE
   ============================================ */
.menu-section { padding: 5.5rem 0; background: var(--blanc); }
.menu-section:nth-of-type(even) { background: var(--creme); }
.menu-titre-cat {
  font-family: var(--font-titre);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--brun);
  margin-bottom: 0;
  display: inline-block;
}
.menu-separateur {
  width: 44px; height: 2px;
  background: var(--bordeaux);
  margin: 0.9rem 0 2.8rem;
  border-radius: 2px;
}
.menu-grille {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4.5rem;
  margin-bottom: 1rem;
}
/* Décalage asymétrique : colonne droite descend de 2.5rem */
.menu-grille > div:nth-child(2) { padding-top: 2.5rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(44,24,16,0.07);
  position: relative;
  transition: padding-left 0.28s ease;
}
.menu-item:hover { padding-left: 0.75rem; }
.menu-item:hover::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 55%;
  background: var(--bordeaux);
  border-radius: 0 3px 3px 0;
}
.menu-item--signature {
  background: rgba(139,35,50,0.04);
  margin: 0 -1rem;
  padding-left: 1rem; padding-right: 1rem;
  border-radius: var(--radius);
  border-bottom: none;
}
.menu-item__gauche { flex: 1; min-width: 0; }
.menu-item__nom {
  font-family: var(--font-titre);
  font-size: 1.05rem; color: var(--brun);
  margin-bottom: 0.3rem; line-height: 1.3;
}
.menu-item__desc {
  font-size: 0.82rem; color: var(--brun-mid);
  font-style: italic; line-height: 1.55;
}
.menu-item__prix {
  font-family: var(--font-titre);
  font-size: 1.08rem; color: var(--bordeaux);
  white-space: nowrap; flex-shrink: 0; padding-top: 0.1rem;
}

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */
.photo-placeholder {
  background: linear-gradient(135deg, var(--creme-fonce) 0%, var(--creme) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem; color: var(--brun-moyen);
  font-size: 0.8rem; font-style: italic;
  text-align: center; padding: 2rem 3rem;
}
.photo-placeholder--clair {
  background: linear-gradient(135deg, rgba(228,212,184,0.65) 0%, rgba(200,178,148,0.45) 100%);
}
.placeholder-icon { font-size: 2.5rem; opacity: 0.4; display: block; }

/* ============================================
   FORMULES DÉJEUNER (page menu)
   ============================================ */
.formules-dejeuner { background: var(--ambre); padding: 6.5rem 0; }
.formules-dejeuner__grille {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}
/* Décalage : 2ème carte plus haute */
.formules-dejeuner__grille .formule-card:nth-child(2) { margin-top: -1.5rem; }

/* ============================================
   CTA SECTION — pages secondaires
   Titre/sous-titre/tel décalés vers la gauche
   ============================================ */
.cta-section {
  background: var(--bordeaux);
  padding: 7rem 2.5rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.cta-section::before {
  content: ''; position: absolute;
  right: -4rem; top: -4rem;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  left: -3rem; bottom: -6rem;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,0,0,0.07); pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-titre);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400; color: var(--creme);
  margin-bottom: 0.8rem; position: relative; z-index: 2;
  margin-left: clamp(0rem, 8vw, 7rem); max-width: 640px;
}
.cta-section p {
  color: rgba(240,230,211,0.68);
  font-size: 0.97rem; margin-bottom: 2.5rem;
  position: relative; z-index: 2;
  margin-left: clamp(0rem, 10vw, 9rem);
  max-width: 520px; font-style: italic;
}
.cta-section__tel {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-titre);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--creme); transition: color var(--transition);
  position: relative; z-index: 2;
  margin-left: clamp(0rem, 8vw, 7rem);
}
.cta-section__tel:hover { color: var(--or); }

/* ============================================
   À PROPOS — INTRO
   Photo 53% | Texte 47%, décalé vers le bas
   ============================================ */
.apropos-intro {
  display: grid; grid-template-columns: 53% 47%;
  gap: 5rem; align-items: start;
  padding: 6rem 2.5rem;
  max-width: 1140px; margin: 0 auto;
}
.apropos-photo { border-radius: var(--radius); overflow: hidden; }
.apropos-photo.photo-placeholder { min-height: 480px; }
.apropos-texte { padding-top: 2rem; }
.apropos-texte .titre-section { margin-bottom: 0.5rem; }
.apropos-texte p {
  font-size: 0.97rem; line-height: 1.92;
  color: var(--texte); margin-bottom: 1.3rem;
}
.citation {
  border-left: 3px solid var(--bordeaux);
  padding: 1rem 1.6rem; margin: 1.8rem 0;
  font-style: italic; font-size: 1.02rem; color: var(--brun);
  background: rgba(44,24,16,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.7;
}

/* ============================================
   TIMELINE
   Années en gros en arrière-plan, débordent à gauche
   ============================================ */
.timeline { background: var(--creme); padding: 6.5rem 0; }
.timeline__liste {
  max-width: 820px; margin: 4.5rem auto 0;
  position: relative; padding-left: 8rem;
}
.timeline__liste::before {
  content: ''; position: absolute;
  left: 6.6rem; top: 0.6rem; bottom: 0;
  width: 1px; background: rgba(139,35,50,0.18);
}
.timeline__item {
  position: relative; margin-bottom: 4rem; padding-left: 2.5rem;
}
.timeline__item::before {
  content: ''; position: absolute;
  left: -0.45rem; top: 0.55rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bordeaux);
  box-shadow: 0 0 0 4px rgba(139,35,50,0.12);
}
/* Les années : grandes, transparentes, décalées à gauche */
.timeline__annee {
  font-family: var(--font-titre);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: rgba(44,24,16,0.065);
  position: absolute; left: -7rem; top: -0.55rem;
  line-height: 1; font-weight: 700;
  pointer-events: none; white-space: nowrap;
  letter-spacing: -0.02em;
}
.timeline__contenu h3 {
  font-fami  font-family: var(--font-titre);
  font-size: 1.15rem; font-weight: 600;
  color: var(--brun); margin-bottom: 0.45rem;
}
.timeline__contenu p {
  font-size: 0.93rem; color: var(--brun-moyen);
  line-height: 1.8;
}

/* ============================================
   CONTACT — GRILLE PRINCIPALE
   Infos 45% | Carte 55%, alignés en haut
   ============================================ */
.contact-grille {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 5rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}
.contact-infos__titre {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--brun);
  margin-bottom: 0.3rem;
}
.contact-info-bloc {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(44,24,16,0.07);
}
.contact-info-bloc:last-child { border-bottom: none; }
.contact-info-bloc__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ambre);
  margin-bottom: 0.45rem;
}
.contact-info-bloc__valeur {
  font-size: 0.95rem;
  color: var(--brun-moyen);
  line-height: 1.75;
}
.contact-info-bloc__valeur a:not(.btn) {
  color: var(--bordeaux);
  transition: color var(--transition);
}
.contact-info-bloc__valeur a:not(.btn):hover { color: var(--ambre); }
.contact-info-bloc__valeur .btn {
  color: var(--creme);
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44,24,16,0.12);
  aspect-ratio: 4/3;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   PAGE-HERO — ANIMATIONS D'ENTRÉE
   ============================================ */
.page-hero h1 {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.page-hero__sous-titre {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

/* ============================================
   RESPONSIVE — PAGES SECONDAIRES
   ============================================ */
@media (max-width: 960px) {
  .contact-grille { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2.5rem; }
  .apropos-intro { grid-template-columns: 1fr; gap: 3rem; }
  .apropos-photo.photo-placeholder { min-height: 260px; }
  .timeline__liste { padding-left: 4rem; }
  .timeline__annee { font-size: 2rem; left: -3.5rem; }
}
@media (max-width: 768px) {
  .contact-grille { padding: 3rem 1.5rem; }
  .timeline__liste { padding-left: 2rem; }
  .timeline__annee { display: none; }
}
m 1.5rem; }
  .cta-section h2, .cta-section p, .cta-section__tel { margin-left: 0; }
  .timeline__liste { padding-left: 2.5rem; }
  .timeline__annee { display: none; }
  .timeline__liste::before { left: 0.9rem; }
}
