/* ============================================
   CHEZ PATRICIA — CSS Principal
   Palette : olive, crème, charbon, rouge
   ============================================ */

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

:root {
  --olive: #5B6B4A;
  --olive-dark: #4A5A3B;
  --olive-light: #7A8B6A;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --charcoal: #2A2A28;
  --charcoal-light: #4A4A48;
  --rouge: #B71C1C;
  --rouge-light: #D32F2F;
  --white: #FEFCF9;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Texture grain subtile sur le body */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* --- Respect prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .parallax-layer { transform: none !important; }
  .scroll-reveal { opacity: 1 !important; transform: none !important; }
}

/* --- Typographie --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { max-width: 65ch; }

a {
  color: var(--olive);
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth);
}

a:hover { color: var(--rouge); }

/* --- Utilitaires --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 6rem 0;
}

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Scroll Reveal --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background-color 0.5s var(--transition-smooth),
              padding 0.5s var(--transition-smooth),
              box-shadow 0.5s var(--transition-smooth);
}

.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--olive-light), var(--olive), var(--olive-light), transparent);
  transition: width 0.6s var(--transition-smooth);
}

.nav.scrolled {
  background-color: rgba(245, 240, 232, 0.95);
  padding: 0.55rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav.scrolled::after {
  width: 90%;
  max-width: 1200px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 14px;
  border: 1px solid rgba(91, 107, 74, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08),
              0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: transform 0.4s var(--transition-smooth),
              box-shadow 0.4s ease,
              height 0.4s var(--transition-smooth),
              padding 0.4s var(--transition-smooth);
}

.nav.scrolled .nav-logo-img {
  height: 40px;
  padding: 4px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
              0 0 0 1px rgba(91, 107, 74, 0.08) inset;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
              0 0 0 1px rgba(91, 107, 74, 0.15) inset;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links li:not(:last-child)::after {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s;
}

.nav.scrolled .nav-links li:not(:last-child)::after {
  background: rgba(91, 107, 74, 0.25);
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  transition: color 0.3s var(--transition-smooth),
              background-color 0.3s var(--transition-smooth);
}

.nav.scrolled .nav-links a { color: var(--charcoal-light); }

.nav-links a:hover {
  color: var(--rouge);
  background-color: rgba(183, 28, 28, 0.06);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--rouge-light), var(--rouge));
  transition: width 0.35s var(--transition-smooth);
}

.nav-links a:hover::after { width: 60%; }

.nav-links a.active {
  color: var(--rouge);
}

.nav.scrolled .nav-links a.active {
  color: var(--rouge);
  background-color: rgba(183, 28, 28, 0.05);
}

.nav-links a.active::after {
  width: 60%;
}

.nav-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s var(--transition-smooth);
}

.nav.scrolled .nav-social a {
  color: var(--charcoal-light);
  border-color: rgba(42, 42, 40, 0.1);
}

.nav-social a:hover {
  color: var(--rouge);
  background-color: rgba(183,28,28,0.08);
  border-color: rgba(183,28,28,0.2);
  transform: translateY(-1px);
}

/* Nav right (social + CTA) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Séparateur visuel entre social et CTA */
.nav-right::before {
  content: '';
  display: none;
}

.nav-social + .btn-nav-cta {
  margin-left: 0.3rem;
}

/* CTA dans la nav */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--rouge);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--transition-smooth),
              background-color 0.3s,
              box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(183, 28, 28, 0.25),
              0 0 0 0 rgba(183, 28, 28, 0);
}

.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-nav-cta:hover::before {
  left: 100%;
}

.btn-nav-cta:hover {
  background: var(--rouge-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.35),
              0 0 0 2px rgba(183, 28, 28, 0.1);
}

.btn-nav-cta .btn-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--transition-smooth);
}

.btn-nav-cta:hover .btn-icon {
  transform: rotate(-10deg) scale(1.1);
}

.nav.scrolled .btn-nav-cta {
  background: var(--rouge);
  color: var(--cream);
}

/* CTA mobile (dans nav-mobile overlay) */
.btn-nav-cta-mobile {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* CTA mobile dans le header (visible à côté du burger) */
.nav-cta-mobile {
  display: none;
}

.btn-nav-cta-header-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--rouge);
  color: var(--cream);
  box-shadow: 0 2px 10px rgba(183, 28, 28, 0.3);
  transition: transform 0.3s var(--transition-smooth),
              background-color 0.3s,
              box-shadow 0.3s;
  white-space: nowrap;
}

.btn-nav-cta-header-mobile .btn-icon {
  width: 14px;
  height: 14px;
}

.btn-nav-cta-header-mobile:hover {
  background: var(--rouge-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-burger:hover {
  transform: scale(1.05);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--transition-smooth),
              opacity 0.3s,
              width 0.3s var(--transition-smooth);
}

.nav-burger span:nth-child(2) {
  width: 16px;
}

.nav.scrolled .nav-burger span { background: var(--charcoal); }

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

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: linear-gradient(160deg, rgba(42, 42, 40, 0.98), rgba(30, 30, 28, 0.99));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition-smooth);
}

.nav-mobile::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 107, 74, 0.08), transparent 70%);
  pointer-events: none;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-link,
.nav-mobile .btn-nav-cta-mobile,
.nav-mobile .btn-facebook-mobile {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--transition-smooth),
              transform 0.4s var(--transition-smooth),
              color 0.3s;
}

.nav-mobile.open .nav-mobile-link,
.nav-mobile.open .btn-nav-cta-mobile,
.nav-mobile.open .btn-facebook-mobile {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open .nav-mobile-link:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.open .nav-mobile-link:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.open .nav-mobile-link:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.open .nav-mobile-link:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile.open .nav-mobile-link:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile.open .nav-mobile-link:nth-child(6) { transition-delay: 0.3s; }
.nav-mobile.open .btn-nav-cta-mobile { transition-delay: 0.38s; }
.nav-mobile.open .btn-facebook-mobile { transition-delay: 0.44s; }

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  transition: color 0.3s, letter-spacing 0.3s;
  padding: 0.4rem 0;
}

.nav-mobile a:hover {
  color: var(--rouge);
  letter-spacing: 0.04em;
}

.nav-mobile-link {
  position: relative;
}

.nav-mobile-link::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(245, 240, 232, 0.1);
  margin: 0 auto;
}

/* Facebook CTA dans menu mobile */
.btn-facebook-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  margin-top: 0.8rem;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid rgba(245, 240, 232, 0.3);
  border-radius: 50px;
  color: var(--cream) !important;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s var(--transition-smooth);
}

.btn-facebook-mobile .btn-icon {
  width: 18px;
  height: 18px;
}

.btn-facebook-mobile:hover {
  border-color: #1877F2;
  background: rgba(24, 119, 242, 0.15);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -30px;
  background-image: url('../assets/logo4.png');
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform-origin: center;
  will-change: transform;
  filter: blur(12px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,8,0.65) 0%,
    rgba(10,10,8,0.5) 50%,
    rgba(10,10,8,0.75) 100%
  );
}

/* Particules lumineuses subtiles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(245, 240, 232, 0.3);
  border-radius: 50%;
  animation: particle-float 8s infinite ease-in-out;
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  50% { transform: translateY(-120px) translateX(30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-bird-deco {
  display: inline-block;
  width: 50px;
  height: 35px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero-logo {
  display: block;
  margin: 0 auto 2rem;
  height: 150px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 12px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--rouge-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s var(--transition-bounce),
              box-shadow 0.3s var(--transition-smooth),
              background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 4px 15px rgba(91, 107, 74, 0.3);
}

.btn-primary:hover {
  background: var(--olive-dark);
  box-shadow: 0 6px 25px rgba(91, 107, 74, 0.4);
  color: var(--cream);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 240, 232, 0.5);
}

.btn-secondary:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--cream);
  color: var(--cream);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-bounce 2s infinite ease-in-out;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   OVERLAY CTA (Appeler / Itinéraire)
   ============================================ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 42, 40, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--transition-smooth);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.overlay-content {
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--transition-bounce);
}

.overlay.active .overlay-content {
  transform: scale(1) translateY(0);
}

.overlay-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--olive-light);
}

.overlay-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 1rem;
  font-weight: 400;
}

.overlay-phone {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.overlay-address {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.overlay-city {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 2rem;
}

.overlay-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-overlay {
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-call {
  background: var(--olive);
  color: var(--cream);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call:hover { background: var(--olive-dark); color: var(--cream); }

.btn-copy {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 240, 232, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-copy:hover { background: rgba(245, 240, 232, 0.1); border-color: rgba(245, 240, 232, 0.5); }

.btn-copy.copied {
  background: var(--rouge);
  border-color: var(--rouge);
}

.btn-maps {
  background: var(--olive);
  color: var(--cream);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-maps:hover { background: var(--olive-dark); color: var(--cream); }

.btn-close-overlay {
  background: transparent;
  color: rgba(245, 240, 232, 0.6);
  border: 2px solid rgba(245, 240, 232, 0.3);
}

.btn-close-overlay:hover {
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.6);
}

.overlay-close-x {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: rgba(245, 240, 232, 0.5);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.overlay-close-x:hover { color: var(--cream); transform: rotate(90deg); }

/* ============================================
   FIL SIGNATURE (ligne + oiseaux)
   ============================================ */
.wire-section {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
}

.wire-line {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--olive-light), var(--olive), var(--olive-light), transparent);
  opacity: 0.2;
}

.wire-bird {
  position: absolute;
  top: calc(50% - 18px);
  width: 40px;
  height: 30px;
  opacity: 0;
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.wire-bird.visible {
  opacity: 0.35;
}

/* ============================================
   SECTION MENU
   ============================================ */
.menu-section {
  background: var(--white);
  position: relative;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-header-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 0.6rem;
}

.menu-header-subtitle svg {
  width: 28px;
  height: 20px;
  color: var(--olive);
  opacity: 0.6;
}

.menu-header h2 {
  margin-bottom: 0.5rem;
}

.menu-header p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  margin: 0 auto;
}

.menu-header-line {
  width: 60px;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--olive), transparent);
  opacity: 0.4;
  border-radius: 2px;
}

/* Switch base tomate / crème */
.menu-switch {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.menu-switch-inner {
  display: flex;
  background: var(--cream);
  border-radius: 50px;
  padding: 4px;
  position: relative;
}

.menu-switch-btn {
  padding: 0.7rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  color: var(--charcoal-light);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.menu-switch-btn.active { color: var(--cream); }

.menu-switch-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: var(--olive);
  border-radius: 50px;
  transition: transform 0.4s var(--transition-smooth);
}

.menu-switch-inner.creme .menu-switch-slider {
  transform: translateX(100%);
}

/* Grille des pizzas */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pizza-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  cursor: default;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(91, 107, 74, 0.06);
}

.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pizza-card-bird {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 24px;
  opacity: 0.12;
  transition: opacity 0.4s, transform 0.4s var(--transition-bounce);
}

.pizza-card:hover .pizza-card-bird {
  opacity: 0.35;
  transform: translateY(-3px) rotate(-5deg);
}

.pizza-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.pizza-card-base {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  z-index: 1;
}

.base-tomate {
  background: rgba(183, 28, 28, 0.1);
  color: var(--rouge);
}

.base-creme {
  background: rgba(91, 107, 74, 0.1);
  color: var(--olive);
}

.base-speciale {
  background: rgba(218, 165, 32, 0.12);
  color: #9A7B2D;
}

.pizza-card-ingredients {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.5;
  flex: 1;
}

.pizza-card-ingredients em {
  display: block;
  margin-top: 0.3rem;
  font-style: italic;
  color: var(--olive);
  font-size: 0.85rem;
}

.pizza-card-price {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olive);
  padding-top: 0.8rem;
  border-top: 1px solid rgba(91, 107, 74, 0.08);
}

/* ============================================
   SECTION SUR PLACE / À EMPORTER
   ============================================ */
.services-section {
  background: var(--cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--olive);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 0 0.5rem;
}

.service-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  margin: 0 auto;
}

/* ============================================
   SECTION VOLIÈRE (mini expérience)
   ============================================ */
.voliere-section {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.voliere-section h2 { color: var(--cream); }

.voliere-subtitle {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.voliere-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.egg-container {
  position: relative;
  width: 120px;
  height: 160px;
  cursor: pointer;
  transition: transform 0.3s var(--transition-bounce);
}

.egg-container:hover {
  transform: scale(1.05);
}

.egg-svg {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s, transform 0.5s;
}

.egg-container.hatching .egg-svg {
  animation: egg-shake 0.5s ease-in-out;
}

.egg-container.hatched .egg-svg {
  opacity: 0;
  transform: scale(0.5);
}

@keyframes egg-shake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-5deg); }
  80% { transform: rotate(5deg); }
}

.egg-label {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.voliere-result {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
  text-align: center;
}

.voliere-result.visible {
  opacity: 1;
  transform: translateY(0);
}

.voliere-result-bird {
  width: 70px;
  height: 50px;
  margin: 0 auto 1rem;
  animation: bird-land 0.6s var(--transition-bounce);
}

@keyframes bird-land {
  0% { transform: translateY(-30px) scale(0.5); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.voliere-result-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.voliere-result-pizza {
  font-size: 1rem;
  color: var(--rouge-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.voliere-result-desc {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
}

.voliere-retry {
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid rgba(245, 240, 232, 0.3);
  background: transparent;
  color: rgba(245, 240, 232, 0.7);
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.voliere-retry:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* ============================================
   SECTION AVIS
   ============================================ */
.avis-section {
  background: var(--white);
}

.avis-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem 0 2rem;
}

.avis-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.avis-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.avis-star {
  width: 18px;
  height: 18px;
  color: var(--rouge);
}

.avis-text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
  flex: 1;
}

.avis-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-top: auto;
}

.avis-quote {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--olive);
  opacity: 0.1;
  line-height: 1;
}

/* ============================================
   SECTION STORYTELLING (Détail Local)
   ============================================ */
.local-section {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.local-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.local-img {
  border-radius: 16px;
  overflow: hidden;
}

.local-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 3/4;
}

.local-inner {
  position: relative;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

.local-section h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.local-section p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 1rem;
}

.local-signature {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--rouge-light);
  margin-top: 2rem;
  opacity: 0.9;
}

.local-cornes-deco {
  width: 40px;
  height: 32px;
  margin: 1.5rem auto 0;
  opacity: 0.25;
}

/* ============================================
   SECTION MAP / ACCÈS
   ============================================ */
.map-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

/* --- En-tête décoratif centré --- */
.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-header-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
  margin-bottom: 0.4rem;
}

.map-header-bird {
  width: 28px;
  height: 20px;
  color: var(--olive);
  opacity: 0.6;
}

.map-header h2 {
  margin-bottom: 1rem;
}

.map-header-line {
  width: 60px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--olive), transparent);
  opacity: 0.4;
}

/* --- Grille principale --- */
.map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* --- Colonne carte --- */
.map-iframe-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-iframe-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  width: 100%;
  height: 280px;
  position: relative;
}

.map-iframe-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--olive);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.map-badge svg {
  color: var(--olive);
  opacity: 0.7;
}

/* --- Colonne informations (cartes en ligne) --- */
.map-info-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* --- Carte individuelle --- */
.map-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(91, 107, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.map-card-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(91, 107, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.map-card:hover .map-card-icon-wrap {
  background: rgba(91, 107, 74, 0.18);
}

.map-card-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--olive);
}

.map-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

/* --- Contenu des cartes --- */
.map-card-body {
  padding-left: 0;
}

.map-card-row {
  margin-bottom: 0.75rem;
}

.map-card-row:last-child {
  margin-bottom: 0;
}

.map-card-row strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--olive);
  margin-bottom: 0.2rem;
}

.map-card-row span {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.map-card-row a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: color 0.3s, border-color 0.3s;
}

.map-card-row a:hover {
  color: var(--olive);
  border-color: var(--olive);
}

/* --- CTA dans carte --- */
.map-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  background: rgba(91, 107, 74, 0.08);
  border: 1.5px solid rgba(91, 107, 74, 0.18);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.map-card-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.map-card-cta:hover {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
  transform: translateY(-1px);
}

.map-card-cta:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

/* --- Horaires (schedule) --- */
.map-card-schedule {
  margin-bottom: 0.75rem;
}

.map-schedule-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.map-schedule-days {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  min-width: 130px;
  flex-shrink: 0;
}

.map-schedule-sep {
  flex: 1;
  height: 1px;
  min-width: 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--olive) 0px,
    var(--olive) 2px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.3;
  align-self: center;
}

.map-schedule-hours {
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--charcoal);
}

.map-card-closed {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rouge);
  opacity: 0.8;
}

.map-card-closed svg {
  color: var(--rouge);
}

/* --- Infos pratiques (items dans carte) --- */
.map-card .map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.map-card .map-info-item:last-child {
  margin-bottom: 0;
}

.map-card .map-info-icon {
  width: 20px;
  height: 20px;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.map-card .map-info-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.map-card .map-info-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--olive);
  margin-bottom: 0.15rem;
}

.map-card .map-info-text span {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

/* --- Bouton Itinéraire (dans card infos pratiques) --- */
.map-btn-itineraire {
  margin-top: 0.75rem;
  text-decoration: none;
}

@keyframes map-pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.map-btn-itineraire:hover svg {
  animation: map-pin-bounce 0.6s infinite;
}

/* ============================================
   FOOTER
   ============================================ */

/* Decorative wire separator */
.footer-wire {
  position: relative;
  height: 40px;
  background: var(--charcoal);
}

.footer-wire-line {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,240,232,0.15), rgba(245,240,232,0.25), rgba(245,240,232,0.15), transparent);
}

.footer-wire-bird {
  position: absolute;
  top: calc(50% - 12px);
  width: 36px;
  height: 26px;
  opacity: 0.35;
}

/* Main footer */
.footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.6);
  padding: 0 0 2rem;
  position: relative;
}

/* 4-column grid */
.footer-grid {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 4rem 0 3rem;
}

.footer-info-row {
  display: flex;
  flex: 1;
  gap: 1.2rem;
}

.footer-info-box {
  flex: 1;
  padding: 1.2rem;
  background: rgba(245, 240, 232, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-col-brand {
  flex-shrink: 0;
  min-width: 220px;
}

.footer-info-box .footer-col-title {
  margin-bottom: 1rem;
}

/* Column headings */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--olive-light);
  border-radius: 2px;
  transition: width 0.4s var(--transition-smooth);
}

.footer-col:hover .footer-col-title::after {
  width: 50px;
}

/* Brand column */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity 0.3s var(--transition-smooth);
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 4px 12px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.15);
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.3s var(--transition-smooth),
              background-color 0.3s var(--transition-smooth),
              border-color 0.3s var(--transition-smooth),
              transform 0.3s var(--transition-bounce);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  color: var(--cream);
  background-color: var(--olive);
  border-color: var(--olive);
  transform: translateY(-3px);
}

.footer-social-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Navigation column */
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  transition: color 0.3s var(--transition-smooth),
              padding-left 0.3s var(--transition-smooth);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--cream);
  padding-left: 6px;
}

/* Contact column */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--olive-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-phone {
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
}

.footer-phone:hover {
  color: var(--cream);
}

/* Hours section */
.footer-hours {
  font-size: 0.9rem;
}

.footer-hours-days {
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-hours-label {
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-hours-time {
  color: rgba(245, 240, 232, 0.75);
  font-weight: 500;
}

.footer-hours-closed {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--rouge-light);
  opacity: 0.7;
  font-style: italic;
}

.footer-hours-terrace {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.55);
}

.footer-hours-terrace svg {
  width: 15px;
  height: 15px;
  color: var(--olive-light);
  flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  font-size: 0.8rem;
}

.footer-copyright {
  color: rgba(245, 240, 232, 0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: rgba(245, 240, 232, 0.7);
}

/* Easter egg bouton cornes */
.easter-egg-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  opacity: 0.2;
  transition: opacity 0.3s, transform 0.4s var(--transition-bounce);
  color: rgba(245, 240, 232, 0.4);
}

.easter-egg-btn:hover {
  opacity: 0.6;
  transform: scale(1.15);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--olive);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s var(--transition-smooth),
              visibility 0.4s,
              transform 0.4s var(--transition-smooth),
              background-color 0.3s,
              box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(91, 107, 74, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--olive-dark);
  box-shadow: 0 6px 25px rgba(91, 107, 74, 0.5);
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(0);
}

/* Easter egg popup */
.easter-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--olive);
  color: var(--cream);
  padding: 1.2rem 2rem;
  border-radius: 16px;
  text-align: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--transition-smooth), transform 0.5s var(--transition-bounce);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.easter-popup.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.easter-popup-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.easter-popup-text {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ============================================
   WOW MOMENT : Section séparateur SVG morph
   ============================================ */
.wow-separator {
  position: relative;
  height: 300px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wow-svg-container {
  position: relative;
  width: 250px;
  height: 250px;
}

.wow-pizza-path, .wow-bird-path {
  position: absolute;
  inset: 0;
  transition: opacity 0.8s var(--transition-smooth);
}

.wow-pizza-path { opacity: 1; }
.wow-bird-path { opacity: 0; }

.wow-separator.morphed .wow-pizza-path { opacity: 0; }
.wow-separator.morphed .wow-bird-path { opacity: 1; }

/* ============================================
   PAGES LÉGALES
   ============================================ */
.legal-page {
  padding-top: 120px;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--olive);
}

.legal-page p, .legal-page li {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--olive);
  font-weight: 500;
}

.legal-back:hover { color: var(--rouge); }

/* Legal nav always solid */
.nav-legal .nav-logo { color: var(--charcoal) !important; }
.nav-legal .nav-links a { color: var(--charcoal-light) !important; }

/* Smooth grid transition for menu switch */
.pizza-grid {
  animation: gridFadeIn 0.4s ease;
}

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

/* ============================================
   PLAT DU JOUR
   ============================================ */
.platdujour-section {
  background: var(--cream);
}

.platdujour-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.platdujour-grid .platdujour-card {
  flex: 0 0 calc((100% - 3rem) / 4);
}

.platdujour-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.platdujour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.platdujour-card strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--olive);
}

.platdujour-card span {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.platdujour-note {
  text-align: center;
  max-width: 100%;
  margin: 2rem auto 0;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--olive);
  background: rgba(111,78,55,0.08);
  border-left: 3px solid var(--olive);
  border-right: 3px solid var(--olive);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.platdujour-special {
  border-color: var(--rouge);
  background: linear-gradient(135deg, var(--white) 0%, rgba(183, 28, 28, 0.04) 100%);
}

.platdujour-special strong {
  color: var(--rouge);
}

/* ============================================
   CARTE - CATEGORY FILTERS
   ============================================ */
.carte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.carte-grid.carte-transitioning {
  opacity: 0.3;
  transform: translateY(6px);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.menu-cat-btn {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--olive-light);
  border-radius: 25px;
  background: transparent;
  color: var(--charcoal-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
}

.menu-cat-btn:hover {
  border-color: var(--olive);
  color: var(--olive);
}

.menu-cat-btn.active {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}

/* Mise en avant */
.carte-mise-en-avant {
  border: 2px solid var(--rouge) !important;
  position: relative;
}

.badge-vedette {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--rouge);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.base-sandwich {
  background: rgba(183, 28, 28, 0.1);
  color: var(--rouge);
}

/* Loading & note */
.carte-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.carte-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  font-style: italic;
  opacity: 0.8;
  max-width: 100%;
  text-align: center;
}

/* Séparateur "Également à la carte" */
.carte-separator {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0 0.5rem;
}

.carte-separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive-light), transparent);
  opacity: 0.3;
}

.carte-separator-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Mise en avant items non-pizza */
.carte-highlight {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border: 1.5px solid rgba(91, 107, 74, 0.15);
}

.carte-highlight .pizza-card-name {
  font-size: 1.4rem;
  color: var(--olive-dark);
}

/* Pagination carrousel carte */
.carte-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carte-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  color: var(--olive);
}

.carte-page-btn:hover:not(:disabled) {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}

.carte-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.carte-page-btn svg {
  width: 18px;
  height: 18px;
}

.carte-page-info {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-light);
  min-width: 50px;
  text-align: center;
}

.carte-highlight .pizza-card-price {
  color: var(--olive-dark);
  font-size: 1.2rem;
}

.carte-price-info {
  font-style: italic;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  opacity: 0.7;
}

/* ============================================
   PHOTO CAROUSEL
   ============================================ */
.carousel-section {
  background: var(--charcoal);
  color: var(--cream);
}

.carousel-section h2 {
  color: var(--cream);
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: clip;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.75);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 1rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: var(--white);
}

/* ============================================
   FACEBOOK WIDGET
   ============================================ */
.facebook-section {
  background: var(--cream);
}

.facebook-widget {
  text-align: center;
}

.facebook-tuto {
  max-width: 600px;
  margin: 2rem auto 0;
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

.facebook-tuto summary {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--olive);
  font-size: 0.9rem;
}

.facebook-tuto summary:hover {
  color: var(--rouge);
}

.facebook-tuto-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--charcoal-light);
}

.facebook-tuto-content code {
  background: var(--cream-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ============================================
   LOCAL REGION (Autour de Tulette)
   ============================================ */
.local-region {
  margin-top: 3rem;
}

.local-region-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  text-align: center;
  margin-bottom: 2rem;
}

.local-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.local-region-card {
  background: rgba(245, 240, 232, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 240, 232, 0.1);
  transition: transform 0.3s var(--transition-smooth), background 0.3s;
  display: flex;
  flex-direction: column;
}

.local-region-card:hover {
  transform: translateY(-3px);
  background: rgba(245, 240, 232, 0.12);
}

.local-region-icon {
  width: 28px;
  height: 28px;
  color: var(--rouge-light);
  margin-bottom: 0.6rem;
}

.local-region-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.local-region-card p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.5;
}

/* Map extra info — styles now handled by .map-card .map-info-item */

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-cta-mobile { display: flex; align-items: center; margin-left: auto; margin-right: 0.8rem; }

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

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

  .local-inner {
    text-align: center;
  }

  .local-img img {
    aspect-ratio: 16/9;
  }

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

  .map-info-col {
    grid-template-columns: 1fr;
  }

  .map-iframe-wrapper {
    aspect-ratio: 16/9;
  }

  .map-header {
    margin-bottom: 2rem;
  }

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

  .platdujour-grid .platdujour-card {
    flex: 0 0 calc((100% - 2rem) / 3);
  }

  .local-region-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ---- Footer tablette ---- */
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }

  .footer-col-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  }

  .footer-col-brand .footer-logo-link {
    margin-bottom: 0;
  }

  .footer-col-brand .footer-tagline {
    margin-bottom: 0.5rem;
  }

  .footer-info-row {
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
  }

  .footer-info-box:first-child {
    flex: 0 0 100%;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    text-align: center;
  }

  .footer-info-box:first-child .footer-col-title {
    text-align: center;
  }

  .footer-info-box:first-child .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 1.2rem;
  }

  .footer-nav a:hover {
    padding-left: 0;
  }

  .footer-info-box:not(:first-child) {
    padding: 1rem;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 1rem;
  }

  .footer-wire-bird {
    display: none;
  }

  .carousel-slide img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .section-padding {
    padding: 4rem 0;
  }

  .hero-logo {
    height: 100px;
    max-width: 260px;
    padding: 8px 16px;
    border-radius: 14px;
    margin-bottom: 1.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .overlay-phone {
    font-size: 2rem;
  }

  .wow-separator {
    height: 200px;
  }

  .wow-svg-container {
    width: 160px;
    height: 160px;
  }

  .platdujour-grid {
    gap: 0.6rem;
  }

  .platdujour-grid .platdujour-card {
    flex: 0 0 calc((100% - 0.6rem) / 2);
  }

  .platdujour-card {
    padding: 0.8rem 0.6rem;
  }

  .local-region-grid {
    grid-template-columns: 1fr;
  }

  .carousel-slide img {
    height: 220px;
  }

  .menu-categories {
    gap: 0.4rem;
  }

  .menu-cat-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  /* Map section responsive 600px */
  .map-card {
    padding: 1.2rem;
  }

  .map-card-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .map-card-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .map-schedule-row {
    flex-wrap: wrap;
  }

  .map-schedule-sep {
    display: none;
  }

  .map-schedule-days {
    min-width: auto;
    width: 100%;
  }

  /* ---- Footer phone ---- */
  .footer-grid {
    gap: 1.5rem;
    padding: 2rem 0 1.5rem;
  }

  .footer-col-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  }

  .footer-col-brand .footer-tagline {
    font-size: 0.85rem;
    margin-bottom: 0;
  }

  .footer-col-brand .footer-social-link {
    width: 36px;
    height: 36px;
  }

  .footer-logo-img {
    height: 40px;
    padding: 4px 10px;
  }

  .footer-info-row {
    flex-wrap: wrap;
    gap: 1rem 0.8rem;
  }

  .footer-info-box:first-child {
    flex: 0 0 100%;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    text-align: center;
  }

  .footer-info-box:first-child .footer-col-title {
    text-align: center;
  }

  .footer-info-box:first-child .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-info-box:not(:first-child) {
    padding: 0.9rem;
  }

  .footer-info-box:not(:first-child) .footer-col-title {
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.4rem;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 1rem;
  }

  .footer-nav a {
    font-size: 0.85rem;
  }

  .footer-nav a:hover {
    padding-left: 0;
  }

  .footer-contact {
    gap: 0.5rem;
  }

  .footer-contact li {
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .footer-contact li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .footer-hours {
    font-size: 0.8rem;
  }

  .footer-hours-days {
    font-size: 0.8rem;
  }

  .footer-hours-row {
    font-size: 0.78rem;
  }

  .footer-hours-closed {
    font-size: 0.75rem;
  }

  .footer-hours-terrace {
    font-size: 0.75rem;
  }

  .footer-hours-terrace svg {
    width: 13px;
    height: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding-top: 1.2rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-legal {
    gap: 1rem;
    justify-content: center;
  }

  .back-to-top {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
  }
}
