/* ============================================================
   La Cuisine de Jen — style.css
   ============================================================ */

/* ---- Custom Brand Fonts ---- */
@font-face {
  font-family: 'Bright Summer';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Bright-Summer-.ttf') format('truetype'),
       url('https://mrspringmrsfresh.com/wp-content/uploads/2025/07/Bright-Summer-.ttf') format('truetype');
}

@font-face {
  font-family: 'Maiandra DmBd GD';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/Maiandra-DmBd-GD-Roman.ttf') format('truetype'),
       url('https://mrspringmrsfresh.com/wp-content/uploads/2025/07/Maiandra-DmBd-GD-Roman.ttf') format('truetype');
}

/* ---- Custom Properties ---- */
:root {
  --green-dark:    #1e3318;
  --green-mid:     #2d4a22;
  --green-light:   #3a5c28;
  --gold:          #c8952a;
  --gold-light:    #d4a93a;
  --cream:         #e6ddc8;
  --cream-light:   #f0e8d4;
  --beige:         #d6ccb4;
  --white:         #ffffff;
  --text-dark:     #172613;
  --text-body:     #322f2b;
  --font-heading:  'Nunito', sans-serif;
  --font-script:   'Dancing Script', cursive;
  --font-body:     'Nunito', sans-serif;
  --font-caps:     'Nunito', sans-serif;
  --radius:        4px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #142311;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream-light);
  overflow-x: hidden;
  max-width: 2800px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 80px rgba(0,0,0,0.35);
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-caps);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #1D2C15;
  font-weight: 800;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(200, 149, 42, 0.25);
}
.btn-gold:hover {
  background: var(--green-mid);
  color: var(--cream-light);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 42, 0.4);
}
.btn-dark {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 42, 0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-dark-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-dark-outline:hover {
  background: var(--green-dark);
  color: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 51, 24, 0.25);
}
.btn-order-nav {
  background: var(--gold);
  color: #1D2C15;
  font-weight: 800;
  border: 2px solid var(--gold);
  padding: 10px 22px;
  font-size: 0.75rem;
  box-shadow: 0 4px 12px rgba(200, 149, 42, 0.3);
}
.btn-order-nav:hover {
  background: var(--green-mid);
  border-color: var(--gold);
  color: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 149, 42, 0.45);
}

/* ---- Typography helpers ---- */
.gold-script {
  font-family: var(--font-script);
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

/* ---- Animation classes ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.65s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.is-visible.fade-in-up,
.is-visible.fade-in-left,
.is-visible.fade-in-right {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 2800px;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(30, 51, 24, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  height: 60px;
  background: var(--green-mid);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
.header-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.logo:hover {
  transform: translateY(-2px) scale(1.02);
}
.logo-icon svg {
  width: 38px;
  height: 34px;
  transition: filter 0.3s ease;
}
.logo:hover .logo-icon svg {
  filter: drop-shadow(0 2px 8px rgba(200, 149, 42, 0.5));
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.logo-name strong {
  color: var(--gold);
  font-weight: 800;
}

/* Nav */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-caps);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream-light);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,24,6,0.72) 0%,
    rgba(10,24,6,0.45) 55%,
    rgba(10,24,6,0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  padding-top: 80px;
  max-width: 960px;
}
.hero-title-wrap {
  margin-bottom: 34px;
  max-width: 900px;
}
.hero-title-img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.32));
  transition: transform 0.4s ease;
}
.hero-title-img:hover {
  transform: scale(1.02);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-delivery-wrap {
  position: absolute;
  bottom: clamp(28px, 4.5vh, 56px);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  padding: 0 20px;
}
.hero-delivery {
  font-family: 'Maiandra DmBd GD', sans-serif !important;
  font-size: clamp(1.25rem, 2.5vw, 2.35rem);
  font-weight: 700;
  color: #f7d28b;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.2;
}

/* =====================================================
   STORY SECTION
   ===================================================== */
.story-section {
  position: relative;
  background: #F8E5C8;
  overflow: visible;
  padding: 80px 0 100px;
  min-height: clamp(700px, 39.3vw, 1100px);
  z-index: 5;
}
.story-sketch-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(700px, 39.3vw, 1100px);
  max-height: 1100px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.saigon-sketch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  mix-blend-mode: multiply;
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 50px;
  align-items: start;
}
.story-text {
  grid-column: 1;
  grid-row: 1;
}

.story-welcome {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.story-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.story-heading-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.story-heading-block {
  font-family: 'Maiandra DmBd GD', sans-serif !important;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 700;
  font-style: normal;
  color: #111111;
  line-height: 1.08;
}
.story-heading-script {
  font-family: 'Bright Summer', cursive !important;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
  line-height: 1.1;
}
.story-heading-row .story-heading-script {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
}
.story-body {
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 520px;
}

/* Stamp photos column (sous En Savoir Plus) */
.story-stamps-col {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.stamp-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.stamp {
  background: #ffffff;
  box-sizing: border-box;
  --r: 8px;
  --s: 24px;
  -webkit-mask:
    radial-gradient(circle var(--r) at 50% 0, #0000 98%, #000 100%) 50% 0 / var(--s) 100% repeat-x,
    radial-gradient(circle var(--r) at 50% 100%, #0000 98%, #000 100%) 50% 100% / var(--s) 100% repeat-x,
    radial-gradient(circle var(--r) at 0 50%, #0000 98%, #000 100%) 0 50% / 100% var(--s) repeat-y,
    radial-gradient(circle var(--r) at 100% 50%, #0000 98%, #000 100%) 100% 50% / 100% var(--s) repeat-y;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  filter: drop-shadow(4px 14px 28px rgba(0,0,0,0.22));
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}
.stamp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  outline: 1px solid rgba(200, 149, 42, 0.45);
  outline-offset: -1px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stamp:hover img {
  transform: scale(1.05);
}

.stamp-main {
  position: relative;
  width: 350px;
  height: 390px;
  padding: 16px;
  transform: rotate(-3deg);
  margin-left: 0;
  z-index: 2;
}
.stamp-main:hover {
  transform: rotate(-1deg) translateY(-4px);
  filter: drop-shadow(6px 20px 36px rgba(0,0,0,0.32));
}

.stamp-secondary {
  position: relative;
  width: 350px;
  height: 390px;
  padding: 16px;
  transform: rotate(3.5deg);
  margin-top: -90px;
  margin-left: 70px;
  z-index: 3;
}
.stamp-secondary:hover {
  transform: rotate(1deg) translateY(-4px);
  filter: drop-shadow(6px 20px 36px rgba(0,0,0,0.32));
}

/* Right-aligned Story Block (à droite des timbres) */
.story-right-block {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  align-self: center;
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 4;
}

.story-right-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-bottom: 20px;
  gap: 2px;
}

.story-heading-script-lg {
  font-family: 'Bright Summer', cursive !important;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
  line-height: 1.05;
}

.story-right-body {
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-body);
  text-align: right;
  max-width: 520px;
  margin-bottom: 28px;
}

.story-right-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.story-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   FOOD SECTION
   ===================================================== */
.food-section {
  background: var(--cream);
  padding: 80px 0 0;
  overflow: hidden;
  width: 100%;
}
.food-section-header {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 60px;
}
.food-heading {
  font-family: 'Maiandra DmBd GD', sans-serif !important;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.food-heading .gold-script {
  font-family: 'Bright Summer', cursive !important;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--gold);
}
.food-subheading {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 580px;
}

/* ============================================================
   Carrousel Rotatif Infini (3 cartes visibles, bords à 60%)
   ============================================================ */
:root {
  --food-card-width: 380px;
  --food-card-gap: 28px;
}

.food-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Viewport avec découpe des 3 cartes (centre 100%, bords à 60%) */
.food-carousel-viewport {
  width: calc(var(--food-card-width) * 2.2 + var(--food-card-gap) * 2);
  max-width: 100%;
  height: 535px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  touch-action: pan-y;
  user-select: none;
}

.food-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.food-card {
  position: absolute;
  top: 15px;
  left: calc(50% - var(--food-card-width) / 2);
  width: var(--food-card-width);
  height: 500px;
  background: #ffffff;
  border: 1px solid rgba(45, 74, 34, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              filter 0.5s ease;
  will-change: transform, opacity;
  box-sizing: border-box;
}

/* Carte centrale (active, 100% visible) */
.food-card.is-center {
  z-index: 10;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 24px 60px rgba(45, 74, 34, 0.16), 0 4px 16px rgba(200, 149, 42, 0.12);
  cursor: default;
}

/* Carte gauche (visible à 60%) */
.food-card.is-left {
  z-index: 5;
  opacity: 0.72;
  transform: translate3d(calc(-1 * (var(--food-card-width) + var(--food-card-gap))), 0, 0) scale(0.92);
  cursor: pointer;
  filter: brightness(0.96);
}
.food-card.is-left:hover {
  opacity: 0.88;
  filter: brightness(1);
}

/* Carte droite (visible à 60%) */
.food-card.is-right {
  z-index: 5;
  opacity: 0.72;
  transform: translate3d(calc(var(--food-card-width) + var(--food-card-gap)), 0, 0) scale(0.92);
  cursor: pointer;
  filter: brightness(0.96);
}
.food-card.is-right:hover {
  opacity: 0.88;
  filter: brightness(1);
}

/* Cartes en attente (hors champ) */
.food-card.is-far-left {
  z-index: 1;
  opacity: 0;
  transform: translate3d(calc(-2 * (var(--food-card-width) + var(--food-card-gap))), 0, 0) scale(0.78);
  pointer-events: none;
}
.food-card.is-far-right {
  z-index: 1;
  opacity: 0;
  transform: translate3d(calc(2 * (var(--food-card-width) + var(--food-card-gap))), 0, 0) scale(0.78);
  pointer-events: none;
}
.food-card.is-hidden {
  z-index: 0;
  opacity: 0;
  transform: translate3d(0, 50px, 0) scale(0.7);
  pointer-events: none;
}

/* Éléments internes de chaque carte */
.food-card-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1D2C15;
  background: rgba(200, 149, 42, 0.22);
  border: 1px solid rgba(200, 149, 42, 0.45);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.food-card-media {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(200, 149, 42, 0.35);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.food-card.is-center:hover .food-card-media {
  transform: scale(1.05) rotate(1.5deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.food-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.food-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}
.food-card-title {
  font-family: 'Maiandra DmBd GD', sans-serif !important;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.food-card-desc {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  max-width: 320px;
}

.food-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--gold);
  color: #1D2C15;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 14px rgba(200, 149, 42, 0.3);
  transition: all 0.25s ease;
  margin-top: auto;
}
.food-card-btn:hover {
  background: var(--green-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 74, 34, 0.35);
}
.food-card-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.food-card-btn:hover svg {
  transform: translateX(3px);
}

/* Boutons de navigation (flèches latérales) */
.food-carousel-nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}
.food-carousel-nav:hover {
  background: var(--gold);
  color: #1D2C15;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 26px rgba(200, 149, 42, 0.35);
}
.food-carousel-nav:active {
  transform: translateY(-50%) scale(0.96);
}
.food-carousel-nav.prev {
  left: 10px;
}
.food-carousel-nav.next {
  right: 10px;
}
.food-carousel-nav svg {
  width: 22px;
  height: 22px;
}

/* Indicateurs de pagination (Dots) */
.food-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 50px;
  position: relative;
  z-index: 15;
}
.food-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(45, 74, 34, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.food-carousel-dot:hover {
  background: rgba(200, 149, 42, 0.6);
}
.food-carousel-dot.active {
  width: 36px;
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(200, 149, 42, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  :root {
    --food-card-width: 320px;
    --food-card-gap: 20px;
  }
  .food-carousel-viewport {
    height: 490px;
  }
  .food-card {
    height: 460px;
    padding: 20px 16px;
  }
  .food-card-media {
    width: 175px;
    height: 175px;
  }
}

@media (max-width: 680px) {
  :root {
    --food-card-width: 280px;
    --food-card-gap: 14px;
  }
  .food-carousel-wrapper {
    padding: 10px 10px 30px;
  }
  .food-carousel-viewport {
    width: 100%;
    max-width: 100%;
    height: 460px;
  }
  .food-card {
    height: 435px;
    padding: 16px 14px;
  }
  .food-card-media {
    width: 150px;
    height: 150px;
  }
  .food-carousel-nav {
    width: 42px;
    height: 42px;
  }
  .food-carousel-nav svg {
    width: 18px;
    height: 18px;
  }
}



/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--green-dark);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}
.footer-logo-link:hover {
  transform: translateY(-2px);
}
.footer-logo-icon svg { width: 56px; height: 46px; }
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.footer-logo-name strong {
  color: var(--gold);
  font-weight: 800;
}
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: rgba(230,221,200,0.85);
  margin-top: 4px;
  text-transform: uppercase;
}

.footer-nav-list { display: flex; gap: 28px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nav-list a {
  font-family: var(--font-caps);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 3px;
}
.footer-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.footer-nav-list a:hover { color: var(--gold); }
.footer-nav-list a:hover::after { width: 100%; }
.footer-nav-list li:first-child a { color: var(--gold); }
.footer-nav-list li:first-child a::after { width: 100%; }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,149,42,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(30,51,24,0.4);
}
.back-to-top svg { width: 18px; height: 18px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .site-header { padding: 0 30px; }
  .header-inner { gap: 20px; }
  .nav-list { gap: 20px; }
  .story-content { grid-template-columns: 1fr; gap: 40px; }
  .story-text,
  .story-stamps-col,
  .story-right-block { grid-column: auto; grid-row: auto; }
  .story-stamps-col { justify-content: center; align-items: center; margin-top: 0; }
  .story-right-block { align-items: center; text-align: center; margin-top: 30px; }
  .story-right-heading { align-items: center; text-align: center; }
  .story-right-body { text-align: center; margin-left: auto; margin-right: auto; }
  .story-right-ctas { justify-content: center; }
  .stamp-main { width: 320px; height: 350px; }
  .stamp-secondary { width: 220px; height: 250px; margin-top: -60px; margin-left: 40px; }
  .food-showcase { grid-template-columns: 1fr; gap: 40px; }
  .food-center-img-wrap { justify-content: center; margin-bottom: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav-list { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
    height: 60px;
    background: rgba(30, 51, 24, 0.95);
  }
  .header-inner {
    justify-content: space-between;
    gap: 12px;
    padding: 0;
  }
  .logo-icon svg { width: 32px; height: 28px; }
  .logo-name { font-size: 1.1rem; }
  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(20, 35, 15, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 28px 24px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
    transform: translateY(-130%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-list {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }
  .nav-link {
    font-size: 1rem;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }
  /* Keep Order CTA visible on mobile! */
  .btn-order-nav {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-left: auto;
  }
  .hamburger {
    display: flex;
    margin-left: 8px;
  }
  .hero-content { padding: 0 20px; padding-top: 70px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-delivery-wrap {
    bottom: 22px;
    padding: 0 12px;
  }
  .hero-delivery {
    font-size: clamp(0.72rem, 3.8vw, 0.98rem);
    white-space: nowrap;
  }
  .story-content { padding: 0 20px; }
  .story-sketch-bg { opacity: 0.2; }
  .story-right-block { align-items: center; text-align: center; }
  .story-right-heading { align-items: center; text-align: center; }
  .story-right-body { text-align: center; }
  .story-right-ctas { justify-content: center; width: 100%; }
  .story-right-ctas .btn { width: 100%; }
  .food-section-header { padding-left: 20px; padding-right: 20px; }
  .footer-inner { padding: 40px 20px 36px; }
  .stamp-main { width: 240px; height: 260px; }
  .stamp-secondary { width: 160px; height: 180px; margin-top: -50px; margin-left: 30px; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (max-width: 600px) {
  .food-item {
    padding: 12px 14px;
    gap: 12px;
  }
  .food-item-icon-wrap svg {
    width: 42px;
    height: 42px;
  }
  .food-item-text strong {
    font-size: 1.02rem;
  }
  .food-item-text span {
    font-size: 0.78rem;
  }
  .btn-food-detail {
    padding: 6px 12px;
    font-size: 0.72rem;
    margin-left: 8px;
  }
}

@media (max-width: 480px) {
  .story-stamps-col { flex-direction: column; align-items: center; }
  .stamp-secondary { margin-left: 0; margin-top: -20px; }
  .food-center-img { width: 290px; height: 290px; }
  .food-plate-bg { width: 300px; height: 150px; }
}

/* ============================================================
   OPTIONS DE PRÉSENTATION DES PLATS (SPÉCIAL SENIORS & CLARTÉ)
   ============================================================ */

/* ---- En-tête Commun & Réassurance ---- */
.senior-menu-notice-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.senior-menu-notice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid rgba(45, 74, 34, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(45, 74, 34, 0.08);
}
.senior-menu-notice .notice-icon {
  font-size: 1.35rem;
}
.senior-menu-notice strong {
  color: var(--gold);
}

/* Badge Prix Partagé */
.dish-price-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #d4a93a 0%, #b88320 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
  z-index: 2;
}

.dish-badge-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(23, 38, 19, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

/* ============================================================
   OPTION 2 : L'ARDOISE / CARTE BISTROT TRADITIONNELLE
   ============================================================ */
.bistro-menu-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* Barre de navigation / filtrage instantané par catégorie */
.bistro-category-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.bistro-filter-btn {
  background: #ffffff;
  color: var(--green-dark);
  border: 2px solid rgba(45, 74, 34, 0.2);
  border-radius: 50px;
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bistro-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.bistro-filter-btn.active {
  background: var(--green-mid);
  color: #ffffff;
  border-color: var(--green-mid);
  box-shadow: 0 6px 18px rgba(45, 74, 34, 0.28);
}

/* Sections de catégories */
.bistro-category-section {
  margin-bottom: 50px;
  transition: opacity 0.3s ease;
}
.bistro-category-header {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px dashed rgba(45, 74, 34, 0.22);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.bistro-category-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bistro-category-subtitle {
  font-size: 1rem;
  color: #555;
  font-style: italic;
  font-weight: 500;
}

.bistro-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bistro-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(45, 74, 34, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bistro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(45, 74, 34, 0.14);
}
.bistro-card-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.bistro-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bistro-card:hover .bistro-card-media img {
  transform: scale(1.04);
}

.bistro-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.bistro-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.bistro-card-desc {
  font-size: 1.02rem;
  line-height: 1.55;
  color: #4a453f;
  margin-bottom: 22px;
  flex-grow: 1;
}
.bistro-card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-bistro-detail {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  background: #f7f5ed;
  border: 1.5px solid rgba(45, 74, 34, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-bistro-detail:hover {
  background: #eee8d8;
  border-color: var(--green-dark);
}
.btn-bistro-order {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #c8952a 0%, #ad7c1a 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(200, 149, 42, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-bistro-order:hover {
  background: linear-gradient(135deg, #d8a335 0%, #b8851f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 149, 42, 0.4);
}

/* ============================================================
   OPTION 1 : LA GRILLE GOURMANDE (3 colonnes)
   ============================================================ */
.food-grid-wrapper {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 60px;
}
.food-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-dish-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(45, 74, 34, 0.12);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grid-dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(45, 74, 34, 0.15);
}
.grid-dish-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.grid-dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.grid-dish-card:hover .grid-dish-media img {
  transform: scale(1.05);
}
.grid-dish-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.grid-dish-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.grid-dish-desc {
  font-size: 1.02rem;
  line-height: 1.55;
  color: #4a453f;
  margin-bottom: 22px;
  flex-grow: 1;
}
.grid-dish-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   OPTION 3 : FORMAT MAGAZINE / FICHES ALTERNÉES GRAND FORMAT
   ============================================================ */
.magazine-menu-wrapper {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 70px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.magazine-dish-row {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(45, 74, 34, 0.12);
  min-height: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.magazine-dish-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(45, 74, 34, 0.13);
}
.magazine-dish-row.reverse {
  flex-direction: row-reverse;
}
.magazine-dish-media {
  position: relative;
  flex: 1 1 44%;
  min-width: 320px;
  overflow: hidden;
}
.magazine-dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.magazine-dish-row:hover .magazine-dish-media img {
  transform: scale(1.04);
}
.magazine-dish-content {
  flex: 1 1 56%;
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.magazine-dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.magazine-dish-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
}
.magazine-price-tag {
  background: linear-gradient(135deg, #d4a93a 0%, #b88320 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  padding: 6px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(200, 149, 42, 0.3);
  white-space: nowrap;
}
.magazine-dish-desc {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #4a453f;
  margin-bottom: 20px;
}
.magazine-dish-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.magazine-tag {
  background: #f7f5ed;
  color: var(--green-mid);
  border: 1px solid rgba(45, 74, 34, 0.15);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 12px;
}
.magazine-dish-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ---- Responsive pour les nouveaux formats ---- */
@media (max-width: 1024px) {
  .food-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .bistro-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .food-grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bistro-items-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .magazine-dish-row,
  .magazine-dish-row.reverse {
    flex-direction: column;
    min-height: auto;
  }
  .magazine-dish-media {
    width: 100%;
    height: 240px;
    min-width: unset;
  }
  .magazine-dish-content {
    padding: 24px 20px;
  }
  .magazine-dish-title {
    font-size: 1.35rem;
  }
  .senior-menu-notice {
    font-size: 0.95rem;
    padding: 8px 18px;
    text-align: center;
  }
}
