/* ═══════════════════════════════════════════════════════
   BIEN MANGER ENSEMBLE — CSS
   Palette : Beige clair · Rose pastel · Terracotta
   Style : Chaleureux, artisanal, Provence
   Mobile-first
   ═══════════════════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Lora:ital,wght@0,400;0,500;1,400&family=Caveat:wght@400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  /* Palette principale */
  --beige:          #F7F0E8;
  --beige-light:    #FBF8F4;
  --beige-dark:     #EBE1D4;
  --rose:           #FAE5DC;
  --rose-light:     #FEF6F2;
  --rose-dark:      #F2CEBF;
  --terracotta:     #C4704B;
  --terracotta-dark:#A85C3A;
  --terracotta-light:#D4896A;

  /* Pastels */
  --pastel-peach:   #FDDCC5;
  --pastel-pink:    #F9D5D3;
  --pastel-lavande: #E8DAF0;
  --pastel-sage:    #D4E6D4;
  --pastel-creme:   #FFF5E6;
  --pastel-abricot: #FFE0C2;

  /* Neutres */
  --noir:           #2A2A2A;
  --noir-light:     #5A5A5A;
  --blanc:          #FFFFFF;

  /* Typographie */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lora', Georgia, serif;
  --ff-hand:    'Caveat', cursive;

  /* Layout */
  --nav-h: 70px;
  --max-width: 1100px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Animations */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(196, 112, 75, 0.08);
  --shadow-lg: 0 8px 30px rgba(196, 112, 75, 0.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  color: var(--noir);
  background: var(--beige);
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; -webkit-user-drag: none; user-drag: none; }
img { -webkit-touch-callout: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 220, 197, 0.4);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(251, 248, 244, 0.97);
  box-shadow: 0 2px 20px rgba(42, 42, 42, 0.06);
}
.nav__logo-link { display: flex; align-items: center; }
.nav__logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  mix-blend-mode: multiply;
}
.nav__links {
  display: none;
  gap: 1.8rem;
  align-items: center;
}
.nav__link {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noir-light);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--terracotta); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__cta svg {
  flex-shrink: 0;
}

/* Social icons in nav */
.nav__socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.8rem;
}
.nav__socials--mobile {
  margin-left: 0;
  margin-top: 1.2rem;
  justify-content: center;
  gap: 1.2rem;
}
.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--noir-light);
  transition: color 0.3s, background 0.3s;
}
.nav__social-link:hover {
  color: var(--terracotta);
  background: var(--rose);
}
.nav__socials--mobile .nav__social-link {
  width: 44px;
  height: 44px;
  background: var(--beige);
  border-radius: 50%;
}
.nav__socials--mobile .nav__social-link:hover {
  background: var(--rose);
  color: var(--terracotta);
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--noir);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(251, 248, 244, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav__mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-menu .nav__link {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}
.nav__mobile-menu .nav__cta {
  margin-left: 0;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--terracotta);
  color: white;
}
.btn--primary::before { background: var(--terracotta-dark); }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 112, 75, 0.25);
}

.btn--outline {
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
}
.btn--outline::before { background: var(--terracotta); }
.btn--outline:hover {
  color: white;
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}
.btn--large {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════ */
section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--noir);
  text-align: center;
}
.section-subtitle {
  font-family: var(--ff-hand);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--terracotta);
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation */
[data-stagger-item] {
  transition-delay: var(--stagger-delay, 0s);
}

/* ═══════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pastel-creme) 0%, var(--pastel-peach) 40%, var(--rose) 70%, var(--pastel-lavande) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg-placeholder svg {
  width: 200px;
  height: 200px;
  opacity: 0.3;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(247, 240, 232, 0.82) 0%,
    rgba(253, 220, 197, 0.55) 35%,
    rgba(247, 240, 232, 0.75) 65%,
    rgba(247, 240, 232, 0.9) 100%
  );
}
.hero__content {
  padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
  max-width: 700px;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  color: var(--noir);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 12px rgba(247, 240, 232, 0.9), 0 0 30px rgba(247, 240, 232, 0.7);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__subtitle {
  font-family: var(--ff-hand);
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--terracotta-dark);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(247, 240, 232, 0.95), 0 0 24px rgba(247, 240, 232, 0.8);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero__content .btn {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
}

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

/* ═══════════════════════════════════════════
   2. STORYTELLING
   ═══════════════════════════════════════════ */
.storytelling {
  background: linear-gradient(180deg, var(--rose-light) 0%, var(--pastel-creme) 100%);
  position: relative;
}
.storytelling::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pastel-peach), transparent);
}
.storytelling__container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.storytelling__photo {
  margin: 0 auto 2.5rem;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(42, 42, 42, 0.12);
}
.storytelling__img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.1);
}
.storytelling__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.story-card {
  background: var(--blanc);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pastel-peach);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  text-align: center;
}
.story-card:nth-child(1) { border-color: var(--pastel-peach); }
.story-card:nth-child(2) { border-color: var(--pastel-pink); }
.story-card:nth-child(3) { border-color: var(--pastel-sage); }
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196, 112, 75, 0.1);
}
.story-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
}
.story-card__icon svg {
  width: 100%;
  height: 100%;
}
.story-card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--noir);
}
.story-card__text {
  font-size: 0.95rem;
  color: var(--noir-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   3. TRAITEUR
   ═══════════════════════════════════════════ */
.traiteur {
  background: linear-gradient(180deg, var(--beige) 0%, var(--pastel-creme) 50%, var(--beige-light) 100%);
}
.traiteur__container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.traiteur__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
}
.traiteur__gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}
.traiteur__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.traiteur__gallery-item:hover img {
  transform: scale(1.05);
}
.traiteur__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.traiteur-card {
  background: var(--blanc);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pastel-peach);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.traiteur-card:nth-child(odd) { border-color: var(--pastel-abricot); }
.traiteur-card:nth-child(even) { border-color: var(--pastel-pink); }
.traiteur-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196, 112, 75, 0.1);
}
.traiteur-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.traiteur-card__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--noir);
}
.traiteur-card__price {
  font-family: var(--ff-hand);
  font-size: 1.2rem;
  color: var(--terracotta);
  font-weight: 600;
}
.traiteur-card__desc {
  font-size: 0.95rem;
  color: var(--noir-light);
  line-height: 1.7;
  flex: 1;
}
.traiteur-card .btn {
  align-self: flex-start;
}

/* ═══════════════════════════════════════════
   4. INSTAGRAM FEED
   ═══════════════════════════════════════════ */
.instagram-section {
  background: linear-gradient(180deg, var(--rose-light) 0%, var(--pastel-lavande) 50%, var(--rose-light) 100%);
  position: relative;
}
.instagram-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pastel-pink), transparent);
}
.instagram-section__container {
  max-width: var(--max-width);
  margin: 0 auto;
}
/* Embed Instagram */
.instagram-embed {
  width: 100%;
  display: flex;
  justify-content: center;
}
.instagram-embed iframe {
  background: var(--blanc);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.instagram-section__cta {
  text-align: center;
  margin-top: 2rem;
}
.instagram-section__cta .btn {
  display: inline-flex;
  align-items: center;
}

/* ═══════════════════════════════════════════
   4b. CARROUSEL PHOTOS
   ═══════════════════════════════════════════ */
.carousel-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--pastel-creme) 100%);
}
.carousel-section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel__track-container {
  overflow: hidden;
  flex: 1;
}
.carousel__track {
  display: flex;
  gap: 0.8rem;
  transition: transform 0.5s ease;
}
.carousel__slide {
  flex: 0 0 calc((100% - 1.6rem) / 3);
}
.carousel__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.carousel__btn {
  background: var(--blanc);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--noir);
}
.carousel__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.carousel__dot.active {
  background: var(--terracotta);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .carousel__track {
    gap: 0;
  }
  .carousel__slide {
    flex: 0 0 100%;
  }
  .carousel__slide img {
    height: 260px;
  }
  .carousel__btn {
    width: 36px;
    height: 36px;
  }
}

/* ═══════════════════════════════════════════
   5. FACEBOOK WIDGET
   ═══════════════════════════════════════════ */
.facebook-section {
  background: var(--beige);
}
.facebook-section__container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.facebook-section__widget {
  display: flex;
  justify-content: center;
}
.facebook-section__widget iframe {
  border-radius: var(--radius);
  max-width: 100%;
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════
   6. CONTACT
   ═══════════════════════════════════════════ */
.contact {
  background: linear-gradient(180deg, var(--pastel-creme) 0%, var(--rose-light) 50%, var(--pastel-peach) 100%);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pastel-abricot), transparent);
}
.contact__container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact__item strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.contact__item p {
  font-size: 0.9rem;
  color: var(--noir-light);
  line-height: 1.6;
}
.contact__item a {
  color: var(--terracotta);
  transition: color 0.3s;
}
.contact__item a:hover {
  color: var(--terracotta-dark);
}
.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: var(--blanc);
  border: 1px solid var(--pastel-peach);
  font-size: 0.85rem;
  color: var(--noir-light);
  transition: var(--transition);
}
.contact__social-link:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--pastel-creme);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 112, 75, 0.12);
}
.contact__social-link svg {
  width: 20px;
  height: 20px;
}
.contact__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.contact__photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--beige-dark);
  box-shadow: var(--shadow);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 1.5rem;
}
.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__brand {
  text-align: center;
  margin-bottom: 2.5rem;
}
.footer__logo {
  height: 50px;
  margin: 0 auto 0.8rem;
  filter: invert(1);
  mix-blend-mode: screen;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.footer__tagline {
  font-family: var(--ff-hand);
  font-size: 1.1rem;
  color: var(--terracotta-light);
}
.footer__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__heading {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
}
.footer__col p,
.footer__col a {
  font-size: 0.85rem;
  line-height: 1.8;
  display: block;
}
.footer__col a {
  transition: color 0.3s;
}
.footer__col a:hover {
  color: var(--terracotta-light);
}
.footer__link {
  display: block;
  font-size: 0.85rem;
  line-height: 2;
  transition: color 0.3s;
}
.footer__link:hover {
  color: var(--terracotta-light);
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer__social a:hover {
  color: var(--terracotta-light);
}
.footer__social svg {
  width: 20px;
  height: 20px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__nav-link {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.footer__nav-link:hover {
  color: var(--terracotta-light);
}
.footer__bottom {
  text-align: center;
  padding-top: 1rem;
}
.footer__copy {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  box-shadow: 0 4px 16px rgba(196, 112, 75, 0.25);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════
   PAGES LÉGALES
   ═══════════════════════════════════════════ */
.legal-page {
  padding-top: calc(var(--nav-h) + 3rem);
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 4rem;
}
.legal-page h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--noir);
}
.legal-page h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.legal-page p {
  margin-bottom: 1rem;
  color: var(--noir-light);
  line-height: 1.8;
}
.legal-page a {
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.legal-page a:hover { border-color: var(--terracotta); }
.legal-page ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-page li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--noir-light);
}
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-page .back-link:hover { color: var(--terracotta-dark); }

/* ═══════════════════════════════════════════
   LOADING STATE (Google Sheets)
   ═══════════════════════════════════════════ */
.loading-skeleton {
  background: linear-gradient(90deg, var(--pastel-peach) 25%, var(--pastel-creme) 50%, var(--pastel-peach) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
  min-height: 150px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════
   PHONE MODAL
   ═══════════════════════════════════════════ */
.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.phone-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.phone-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.5);
  backdrop-filter: blur(4px);
}
.phone-modal__content {
  position: relative;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--pastel-creme) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(196, 112, 75, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s var(--ease-out);
}
.phone-modal.is-open .phone-modal__content {
  transform: scale(1) translateY(0);
}
.phone-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.8rem;
  color: var(--noir-light);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.phone-modal__close:hover {
  color: var(--terracotta);
}
.phone-modal__label {
  font-family: var(--ff-hand);
  font-size: 1.2rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.phone-modal__number {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--noir);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.phone-modal__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
.phone-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}
.phone-modal__copied {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}
.phone-modal__copied.is-visible {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (640px+)
   ═══════════════════════════════════════════ */
@media (min-width: 640px) {
  .storytelling__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .traiteur__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .traiteur__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__info {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — DESKTOP (1024px+)
   ═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .nav__burger { display: none; }
  .nav__links { display: flex; }

  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — PETITS MOBILES (<380px)
   ═══════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .btn--large {
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */
@media print {
  .nav, .back-to-top { display: none !important; }
  body { background: white; }
  section { padding: 2rem 1rem; }
  .hero { min-height: auto; }
}
