/* ═══════════════════════════════════════════════════════════
   LE FRANCE RESTAURANT — Feuille de styles principale
   Design premium · Aquarelle provençale
═══════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --cream:       #F5EEE3;
  --cream-dark:  #EDE0CC;
  --ink:         #1A1208;
  --ink-mid:     #3D2E1A;
  --gold:        #B8935A;
  --gold-light:  #D4AB78;
  --gold-pale:   #F0E2C8;
  --terracotta:  #9E3A2A;
  --sage:        #5C6E4A;
  --sage-light:  #8FA37A;
  --warm-white:  #FAF7F2;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;

  --max-w:       1200px;
  --section-pad: 7rem 2rem;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset & base ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ─── Typography helpers ────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: var(--gold);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: transparent;
  color: var(--gold);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background-color: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--ink);
  color: var(--warm-white);
}

/* ─── Scroll reveal ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ═══════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-in-out), visibility 0.8s;
}

#loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-watercolor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(184,147,90,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(158,58,42,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 80%, rgba(92,110,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  width: 320px;
  animation: loaderPulse 2s var(--ease-in-out) infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.97); }
}

.loader-bar-wrap {
  width: 120px;
  height: 1px;
  background-color: rgba(184,147,90,0.3);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.loader-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background-color 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s;
}

#nav.is-scrolled {
  background-color: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 2rem;
  box-shadow: 0 1px 0 rgba(26,18,8,0.08);
}

#nav.is-scrolled .nav-brand img {
  width: 120px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand img {
  width: 200px;
  transition: filter 0.3s, width 0.4s var(--ease-out);
}

#nav:not(.is-scrolled) .nav-brand img {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background-color: currentColor;
  transition: right 0.3s var(--ease-out);
}

.nav-link:hover::after {
  right: 0;
}

#nav.is-scrolled .nav-link {
  color: var(--ink);
}

.nav-link--cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background-color: rgba(255,255,255,0.15);
}

#nav.is-scrolled .nav-link--cta {
  border-color: var(--gold);
  color: var(--gold);
}

#nav.is-scrolled .nav-link--cta:hover {
  background-color: var(--gold);
  color: var(--warm-white);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #fff;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

#nav.is-scrolled .nav-burger span {
  background-color: var(--ink);
}

.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Bouton fermeture panneau mobile */
.nav-close-item {
  display: none;
  width: 100%;
}

.nav-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  padding: 0;
  margin-bottom: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.nav-close:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,18,8,0.35) 0%,
      rgba(26,18,8,0.1) 40%,
      rgba(26,18,8,0.3) 70%,
      rgba(26,18,8,0.65) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--warm-white);
  padding: 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.hero-title-le {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title-france {
  font-size: clamp(4.5rem, 14vw, 12rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.01em;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.hero-scroll-cue:hover {
  color: rgba(255,255,255,0.9);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.7));
  animation: scrollBounce 2s var(--ease-in-out) infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%       { transform: scaleY(0.6); transform-origin: top; }
}

.scroll-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
#about {
  position: relative;
  padding: var(--section-pad);
  background-color: var(--warm-white);
  overflow: hidden;
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.4;
}

.about-blob--tl {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,147,90,0.25) 0%, transparent 70%);
  top: -150px;
  left: -150px;
}

.about-blob--br {
  width: 450px;
  height: 350px;
  background: radial-gradient(circle, rgba(92,110,74,0.2) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text-col .section-label { margin-bottom: 1rem; }
.about-text-col .section-title { margin-bottom: 2rem; }

.about-body {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
}

.about-body strong {
  font-weight: 600;
  color: var(--ink);
}

.about-body em {
  font-style: italic;
  color: var(--gold);
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mid);
  opacity: 0.7;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--cream-dark);
}

/* About image */
.about-image-col {
  position: relative;
}

.about-image-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-image-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: 0.6;
}

.about-image-tag {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background-color: var(--warm-white);
  padding: 0.5rem 1rem;
  border-left: 2px solid var(--gold);
}

.about-image-tag span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════════ */
#menu {
  position: relative;
  padding: var(--section-pad);
  background-color: var(--cream);
  overflow: hidden;
}

.menu-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%,  rgba(184,147,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 80%,  rgba(92,110,74,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 50% 50%,  rgba(158,58,42,0.04)  0%, transparent 60%);
  pointer-events: none;
}

.menu-header {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-header .section-title { margin-bottom: 1.2rem; }

.menu-intro {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.olive-divider {
  max-width: 500px;
  margin: 0 auto;
}

.olive-divider svg {
  width: 100%;
  height: auto;
}

/* Tabs */
.menu-tabs-wrap {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(26,18,8,0.12);
  white-space: nowrap;
}

.menu-tab {
  padding: 0.75rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,18,8,0.45);
  position: relative;
  transition: color 0.3s;
}

.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.menu-tab:hover {
  color: var(--ink);
}

.menu-tab.active {
  color: var(--gold);
}

.menu-tab.active::after {
  transform: scaleX(1);
}

/* Panels */
.menu-panels {
  max-width: var(--max-w);
  margin: 0 auto;
}

.menu-panel {
  display: none;
  animation: panelFadeIn 0.4s var(--ease-out);
}

.menu-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(26,18,8,0.07);
  transition: background-color 0.2s;
}

.menu-item:first-child {
  border-top: 1px solid rgba(26,18,8,0.07);
}

.menu-item--featured .menu-item-name {
  color: var(--ink);
  font-weight: 500;
}

.menu-item--featured .menu-item-price {
  color: var(--terracotta);
}

.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(26,18,8,0.25);
  margin-bottom: 4px;
  min-width: 20px;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(26,18,8,0.55);
  line-height: 1.6;
  font-style: italic;
}

/* Formules */
.formules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.formule-card {
  padding: 2.5rem;
  border: 1px solid rgba(26,18,8,0.12);
  background-color: var(--warm-white);
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s;
}

.formule-card:hover {
  box-shadow: 0 8px 40px rgba(26,18,8,0.08);
}

.formule-card--featured {
  border-color: var(--gold);
  background-color: var(--ink);
  color: var(--warm-white);
}

.formule-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--warm-white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
}

.formule-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.formule-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.formule-card--featured .formule-name {
  color: var(--warm-white);
}

.formule-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 1.5rem;
}

.formule-price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.formule-currency {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
}

.formule-per {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-left: 0.3rem;
}

.formule-card:not(.formule-card--featured) .formule-per {
  color: rgba(26,18,8,0.4);
}

.formule-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.formule-list li {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.formule-list li:last-child {
  border-bottom: none;
}

.formule-card:not(.formule-card--featured) .formule-list li {
  color: var(--ink-mid);
  border-bottom-color: rgba(26,18,8,0.08);
}

.formule-note {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(26,18,8,0.45);
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   AMBIANCE
═══════════════════════════════════════════════════════════ */
#ambiance {
  padding: var(--section-pad);
  background-color: var(--ink);
  color: var(--warm-white);
}

#ambiance .section-label {
  color: var(--gold-light);
}

#ambiance .section-title {
  color: var(--warm-white);
}

.ambiance-header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.ambiance-gallery {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 6px;
}

.ambiance-item {
  overflow: hidden;
  position: relative;
}

.ambiance-item--large {
  grid-row: span 2;
}

.ambiance-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.ambiance-item:hover img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
#contact {
  position: relative;
  padding: var(--section-pad);
  background-color: var(--warm-white);
  overflow: hidden;
}

.contact-blob {
  position: absolute;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,147,90,0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(80px);
  pointer-events: none;
}

.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-col .section-title {
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-item-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-item-text p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

.contact-note {
  font-size: 0.8rem;
  color: rgba(26,18,8,0.45);
  font-style: italic;
}

.contact-link {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-pale);
  transition: border-color 0.3s, color 0.3s;
}

.contact-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.map-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.map-wrap iframe {
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#footer {
  background-color: var(--ink);
  color: rgba(250,247,242,0.6);
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-center-col {
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,247,242,0.5);
  margin-bottom: 1.2rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-nav a {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-nav span {
  color: rgba(250,247,242,0.2);
  font-size: 0.6rem;
}

.footer-address {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(250,247,242,0.35);
  margin-bottom: 0.4rem;
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(250,247,242,0.25);
}

.footer-credit-col {
  text-align: right;
}

.footer-credit {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(250,247,242,0.25);
}

.footer-credit a {
  color: rgba(250,247,242,0.4);
  border-bottom: 1px solid rgba(250,247,242,0.15);
  transition: color 0.3s, border-color 0.3s;
}

.footer-credit a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   CUISINE — Galerie photos plats
═══════════════════════════════════════════════════════════ */
#cuisine {
  padding: var(--section-pad);
  background-color: var(--warm-white);
  overflow: hidden;
  position: relative;
}

#cuisine .section-title {
  margin-bottom: 1rem;
}

.cuisine-blob {
  position: absolute;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(158,58,42,0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  filter: blur(80px);
  pointer-events: none;
}

.cuisine-header {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.cuisine-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cuisine-item {
  overflow: hidden;
  position: relative;
  background-color: var(--cream-dark);
}

.cuisine-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.cuisine-item:hover img {
  transform: scale(1.06);
}

.cuisine-item--wide {
  grid-column: span 2;
}

.cuisine-item--wide img {
  aspect-ratio: 2 / 1;
}

.cuisine-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26,18,8,0.2);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 5rem 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col {
    order: -1;
  }

  .about-photo {
    aspect-ratio: 16/9;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-col {
    text-align: center;
  }

  .contact-info-col .section-title {
    text-align: center;
  }

  .contact-items {
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }

  .contact-item-text {
    text-align: center;
  }

  .contact-info-col .btn-secondary {
    display: block;
    text-align: center;
  }

  .map-wrap {
    height: 350px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-credit-col {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .menu-panel-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ambiance-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .ambiance-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .cuisine-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cuisine-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Désactiver backdrop-filter sur mobile : il crée un stacking context
     qui piège les enfants position:fixed (nav-menu) dans le nav */
  #nav.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: rgba(250, 247, 242, 0.98);
  }

  .nav-burger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background-color: var(--warm-white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -4px 0 30px rgba(26,18,8,0.12);
    z-index: 1001;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-close-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 0.5rem;
  }

  .nav-link {
    color: var(--ink);
    font-size: 0.8rem;
  }

  .nav-link--cta {
    border-color: var(--gold);
    color: var(--gold);
    padding: 0.65rem 1.4rem;
  }

  .hero-title-france {
    font-size: clamp(4rem, 20vw, 8rem);
  }

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

  .menu-tabs {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .ambiance-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 4rem 1.2rem;
  }

  .nav-brand img {
    width: 130px;
  }

  #nav.is-scrolled .nav-brand img {
    width: 65px;
  }

  .cuisine-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .cuisine-item--wide {
    grid-column: span 2;
  }

  .cuisine-item--wide img {
    aspect-ratio: 16 / 9;
  }

  .hero-title-le {
    font-size: 2rem;
  }

  .hero-title-france {
    font-size: clamp(3.5rem, 22vw, 6rem);
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--gold);
    opacity: 0.35;
  }

  .ambiance-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .ambiance-item--large {
    grid-column: span 1;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-nav span {
    display: none;
  }
}
