/* style.css — 1909 Malaucène Pizza — Concept "L'Aurore rose du Ventoux" */

/* ========== RESET & VARIABLES ========== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  /* Palette italienne — d'après le logo (rouge / vert / blanc / noir) */
  --rouge: #C4262E;
  --rouge-light: #E04B52;
  --rouge-dark: #8B1A1F;
  --rouge-glow: rgba(196, 38, 46, 0.45);
  --vert: #00824B;
  --vert-light: #2EAA77;
  --vert-dark: #00603A;
  --vert-glow: rgba(0, 130, 75, 0.35);
  /* Alias rose (compat) — pointent vers le rouge italien */
  --rose: var(--rouge);
  --rose-light: var(--rouge-light);
  --rose-dark: var(--rouge-dark);
  --rose-glow: var(--rouge-glow);
  --noir: #1A1412;
  --noir-light: #2A2220;
  --noir-mid: #3A3230;
  --creme: #F5F0E8;
  --creme-dark: #E0D8C8;
  --olive: #7A8B5E;
  --olive-light: #9AAB7E;

  --ff-display: 'Georgia', 'Times New Roman', serif;
  --ff-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 64px;
  --section-py: clamp(80px, 12vw, 160px);
  --container-w: min(90vw, 1200px);

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* Grain overlay removed — SVG feTurbulence caused heavy scroll lag */

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), height 0.3s var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  background: rgba(26, 20, 18, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  height: 56px;
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--rose);
  transition: transform 0.3s var(--ease-spring);
}
.nav__logo:hover { transform: scale(1.05); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 32px);
}

.nav__link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--rose); }
.nav__link:hover::after { width: 100%; }

.nav__social {
  display: flex;
  gap: 12px;
  margin-left: 8px;
}
.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.2);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-spring);
}
.nav__social a:hover {
  border-color: var(--rose);
  background: rgba(196, 84, 122, 0.15);
  transform: scale(1.1);
}
.nav__social svg { width: 16px; height: 16px; fill: var(--creme); }

/* Mobile nav toggle */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 9100;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--creme);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 18, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--creme);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.nav__mobile-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--rose);
}
.nav__mobile-menu a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav__mobile-menu a:hover { color: var(--rose); }

@media (max-width: 768px) {
  .nav__links, .nav__social { display: none; }
  .nav__burger { display: flex; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196, 84, 122, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 70%, rgba(196, 84, 122, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--noir) 0%, var(--noir-light) 100%);
}

.hero__glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 60vw, 700px);
  height: clamp(300px, 60vw, 700px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-glow) 0%, transparent 70%);
  filter: blur(50px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
  will-change: transform, filter;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  will-change: opacity;
}

.hero__year {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--creme);
  text-shadow:
    0 0 60px var(--rose-glow),
    0 0 120px rgba(196, 84, 122, 0.2);
  margin-bottom: 16px;
  will-change: transform;
}

.hero__name {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 3vw, 1.6rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 24px;
}

.hero__tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  max-width: 480px;
  margin: 0 auto 40px;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__ventoux {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: clamp(80px, 15vw, 200px);
  cursor: pointer;
}
.hero__ventoux svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__scroll-hint {
  position: absolute;
  bottom: clamp(100px, 18vw, 220px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

.hero__scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose-light);
  fill: none;
  stroke-width: 2;
}

/* Particles canvas removed — infinite rAF loop caused scroll lag */

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s;
}

.btn--primary {
  background: var(--rose);
  color: var(--creme);
  border: 2px solid var(--rose);
}
.btn--primary::before { background: var(--rose-dark); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--rose-glow); }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0) scale(0.97); }

.btn--outline {
  background: transparent;
  color: var(--creme);
  border: 2px solid rgba(245, 240, 232, 0.3);
}
.btn--outline:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 84, 122, 0.15);
}
.btn--outline:active { transform: translateY(0) scale(0.97); }

.btn span { position: relative; z-index: 1; }

/* ========== SECTIONS (general) ========== */
.section {
  padding: var(--section-py) 0;
  position: relative;
  contain: layout style;
}

.container {
  width: var(--container-w);
  margin: 0 auto;
}

.section__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rose);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section__text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.75);
  max-width: 600px;
}

/* Reveal animation */
.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[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }

/* ========== SECTION: PÂTE BIGA (signature) ========== */
.signature {
  background: var(--noir);
  overflow: hidden;
}

.signature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.signature__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--noir-light) 0%, var(--noir-mid) 100%);
}

.signature__stamp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.15;
  animation: stampRotate 20s linear infinite;
  will-change: transform;
}

@keyframes stampRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.signature__content {
  padding: 20px 0;
}

.signature__highlight {
  color: var(--rose);
  font-weight: 600;
}

.signature__detail {
  margin-top: 32px;
  padding: 24px;
  border-left: 3px solid var(--rose);
  background: rgba(196, 84, 122, 0.05);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  font-style: italic;
}

@media (max-width: 768px) {
  .signature__grid {
    grid-template-columns: 1fr;
  }
  .signature__visual {
    aspect-ratio: 16/10;
    max-height: 300px;
  }
}

/* ========== SECTION: CUISINE OUVERTE ========== */
.savoir-faire {
  background: var(--creme);
  color: var(--noir);
  position: relative;
}

.savoir-faire .section__label { color: var(--rose-dark); }
.savoir-faire .section__text { color: rgba(26, 20, 18, 0.7); }

.savoir-faire__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.savoir-faire__visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--creme-dark) 0%, #d8d0c0 100%);
  order: 2;
}

.savoir-faire__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  padding: 20px;
  border-radius: 12px;
  background: rgba(26, 20, 18, 0.04);
  border: 1px solid rgba(26, 20, 18, 0.08);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 20, 18, 0.08);
}

.feature-card__icon {
  margin-bottom: 10px;
  color: var(--rouge);
  display: inline-flex;
}
.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.feature-card__text {
  font-size: 0.8rem;
  color: rgba(26, 20, 18, 0.6);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .savoir-faire__grid {
    grid-template-columns: 1fr;
  }
  .savoir-faire__visual {
    order: 0;
    aspect-ratio: 16/10;
    max-height: 260px;
  }
  .savoir-faire__features {
    grid-template-columns: 1fr;
  }
}

/* ========== SECTION: LA CARTE ========== */
.carte {
  background: var(--noir);
  overflow: hidden;
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
}

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

.avis__header {
  text-align: center;
  margin-bottom: 48px;
}

.avis__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.avis__stars svg {
  width: 24px;
  height: 24px;
  fill: var(--rose);
}

.avis__score {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--creme);
}
.avis__count {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 4px;
}

.avis__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.avis__card {
  padding: 32px;
  border-radius: 16px;
  background: var(--noir-light);
  border: 1px solid rgba(245, 240, 232, 0.06);
  transition: transform 0.3s var(--ease-spring);
  display: flex;
  flex-direction: column;
}
.avis__card:hover { transform: translateY(-4px); }

.avis__card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.avis__card-stars svg { width: 16px; height: 16px; fill: var(--rose); }

.avis__card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 16px;
  font-style: italic;
}

.avis__card-author {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: auto;
}

.avis__todo {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(196, 84, 122, 0.06);
  font-size: 0.85rem;
  color: var(--rose-light);
}

@media (max-width: 768px) {
  .avis__carousel {
    grid-template-columns: 1fr;
  }
}

/* ========== SECTION: NOUS TROUVER ========== */
.infos {
  background: var(--creme);
  color: var(--noir);
}

.infos .section__label { color: var(--rose-dark); }

.infos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 48px;
}

.infos__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.infos__block-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--noir);
}

.infos__address {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 20, 18, 0.7);
  margin-bottom: 8px;
}

/* Phone block */
.infos__phone-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 20, 18, 0.1);
}

.infos__phone-number {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.infos__phone-number:hover {
  color: var(--rose);
}

.infos__phone-sub {
  font-size: 0.85rem;
  color: rgba(26, 20, 18, 0.5);
  font-style: italic;
  margin-bottom: 12px;
}

.btn--rose {
  background: var(--rose-dark);
  color: var(--creme);
  border: 2px solid var(--rose-dark);
}
.btn--rose:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 84, 122, 0.25);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Hours table */
.infos__hours-table {
  width: 100%;
  border-collapse: collapse;
}
.infos__hours-table tr {
  border-bottom: 1px solid rgba(26, 20, 18, 0.08);
}
.infos__hours-table td {
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(26, 20, 18, 0.7);
}
.infos__hours-table td:first-child {
  font-weight: 600;
  color: var(--noir);
  width: 45%;
}
.infos__hours-table .closed td {
  color: rgba(26, 20, 18, 0.35);
}

.btn--dark {
  background: var(--noir);
  color: var(--creme);
  border: 2px solid var(--noir);
}
.btn--dark:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 20, 18, 0.2);
}

/* Map */
.infos__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 20, 18, 0.1);
  background: var(--creme-dark);
}

.infos__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.infos__map-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--noir);
  color: var(--creme);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.infos__map-btn:hover { background: var(--rose-dark); }

@media (max-width: 900px) {
  .infos__grid {
    grid-template-columns: 1fr 1fr;
  }
  .infos__col:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .infos__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER (minimal) ========== */
.footer--minimal {
  background: var(--noir);
  padding: 18px 0 22px;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}
.footer__legal {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.32);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.6;
}
.footer__legal a {
  color: rgba(245, 240, 232, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}
.footer__legal a:hover { color: var(--rouge-light); }

/* ========== NAV CTA APPELER ========== */
.nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--rouge);
  color: var(--creme);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--rouge);
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 14px var(--rouge-glow);
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
}
.nav__cta:hover {
  background: var(--rouge-dark);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px var(--rouge-glow);
}
.nav__cta-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav__cta-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 38, 46, 0.55); }
  50% { box-shadow: 0 0 0 12px rgba(196, 38, 46, 0); }
}
@media (max-width: 768px) {
  .nav__cta { display: none; }
}

/* ========== PHONE MODAL (fullscreen wow) ========== */
.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 25000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 20, 18, 0.7);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  padding: 24px;
}
.phone-modal.open {
  opacity: 1;
  visibility: visible;
}

.phone-modal__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.phone-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.12);
  color: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s, transform 0.3s var(--ease-spring), border-color 0.3s;
}
.phone-modal__close:hover {
  background: var(--rouge);
  border-color: var(--rouge);
  transform: rotate(90deg);
}

.phone-modal__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100%;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition: transform 0.6s var(--ease-spring), opacity 0.5s var(--ease-out);
}
.phone-modal.open .phone-modal__content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.phone-modal__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--rouge-light);
  margin-bottom: 8px;
  font-weight: 700;
}
.phone-modal__sub {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(245, 240, 232, 0.65);
  font-style: italic;
  margin-bottom: 28px;
}

.phone-modal__number {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--creme);
  text-decoration: none;
  text-shadow:
    0 0 40px var(--rouge-glow),
    0 0 100px rgba(196, 38, 46, 0.35);
  margin-bottom: 36px;
  transition: transform 0.3s var(--ease-spring);
}
.phone-modal__number:hover { transform: scale(1.03); }

.phone-modal__digit {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.6);
  animation: phoneDigit 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.phone-modal.open .phone-modal__digit { animation-play-state: running; }
.phone-modal__digit:nth-child(1) { animation-delay: 0.20s; }
.phone-modal__digit:nth-child(2) { animation-delay: 0.27s; }
.phone-modal__digit:nth-child(4) { animation-delay: 0.36s; }
.phone-modal__digit:nth-child(5) { animation-delay: 0.43s; }
.phone-modal__digit:nth-child(7) { animation-delay: 0.52s; }
.phone-modal__digit:nth-child(8) { animation-delay: 0.59s; }
.phone-modal__digit:nth-child(10) { animation-delay: 0.68s; }
.phone-modal__digit:nth-child(11) { animation-delay: 0.75s; }
.phone-modal__digit:nth-child(13) { animation-delay: 0.84s; }
.phone-modal__digit:nth-child(14) { animation-delay: 0.91s; }
@keyframes phoneDigit {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.phone-modal__sep {
  display: inline-block;
  color: var(--rouge);
  margin: 0 0.18em;
  opacity: 0.65;
}

.phone-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.phone-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-spring), background 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid;
  font-family: inherit;
}
.phone-modal__btn--call {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--creme);
  box-shadow: 0 8px 30px var(--rouge-glow);
}
.phone-modal__btn--call:hover {
  background: var(--rouge-dark);
  border-color: var(--rouge-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px var(--rouge-glow);
}
.phone-modal__btn--copy {
  background: transparent;
  border-color: rgba(245, 240, 232, 0.25);
  color: var(--creme);
}
.phone-modal__btn--copy:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: var(--creme);
  transform: translateY(-3px);
}
.phone-modal__btn--copy.copied {
  background: var(--vert);
  border-color: var(--vert);
  color: var(--creme);
}

.phone-modal__hours {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .phone-modal__number { font-size: clamp(2rem, 13vw, 4rem); }
  .phone-modal__close { top: 16px; right: 16px; width: 40px; height: 40px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav__cta-pulse { animation: none; }
  .phone-modal__digit { animation: none; opacity: 1; transform: none; }
}

/* ========== EASTER EGG: CYCLIST ========== */
.easter-cyclist {
  position: fixed;
  bottom: 0;
  left: -60px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.easter-cyclist.active {
  opacity: 1;
  animation: cyclistClimb 4s ease-in-out forwards;
}

@keyframes cyclistClimb {
  0% { left: -60px; bottom: 10%; transform: rotate(0deg); }
  30% { left: 20%; bottom: 30%; transform: rotate(-5deg); }
  60% { left: 50%; bottom: 55%; transform: rotate(-10deg); }
  100% { left: 85%; bottom: 80%; transform: rotate(-15deg); opacity: 0; }
}

/* ========== VENTOUX LINE DRAW ========== */
.ventoux-line {
  position: relative;
  overflow: hidden;
}

.ventoux-line svg path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s var(--ease-out);
}
.ventoux-line.drawn svg path {
  stroke-dashoffset: 0;
}

/* ========== SECTION DIVIDERS ========== */
.divider-rose {
  width: 60px;
  height: 3px;
  background: var(--rose);
  border-radius: 3px;
  margin: 24px 0;
}

.savoir-faire .divider-rose,
.infos .divider-rose {
  background: var(--rose-dark);
}

/* ========== SEAL 1909 (floating) ========== */
.seal-float {
  position: absolute;
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  opacity: 0.06;
  pointer-events: none;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  min-height: 100vh;
  background: var(--noir);
}

.legal-page h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  color: var(--creme);
}

.legal-page h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--rose);
  margin: 32px 0 12px;
}

.legal-page p, .legal-page li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 12px;
}

.legal-page .todo {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(196, 84, 122, 0.15);
  border-radius: 4px;
  color: var(--rose-light);
  font-size: 0.85rem;
}

/* ========== 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;
  }
  .hero__glow { animation: none; opacity: 0.5; }
  .reveal { opacity: 1; transform: none; }
  .signature__stamp { animation: none; }
  html { scroll-behavior: auto; }
}

/* ========== FOCUS VISIBLE ========== */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb {
  background: var(--noir-mid);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--rose-dark); }

/* ========== SELECTION ========== */
::selection {
  background: var(--rose);
  color: var(--creme);
}

/* ========== REAL IMAGES INTEGRATION ========== */

/* Hero background image */
.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26, 20, 18, 0.7) 0%,
      rgba(26, 20, 18, 0.4) 40%,
      rgba(26, 20, 18, 0.6) 70%,
      rgba(26, 20, 18, 0.95) 100%);
}

/* Nav logo image */
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease-spring);
}
.nav.scrolled .nav__logo-img { height: 30px; }
.nav__logo:hover .nav__logo-img { transform: scale(1.05); }

/* Section images (real photos) */
.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.6s var(--ease-out);
}
.signature__visual:hover .section-img,
.savoir-faire__visual:hover .section-img {
  transform: scale(1.03);
}

/* ========== UPDATED CARTE: MENU COMPLET ========== */
.carte__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.carte__categories {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.carte__category {
  position: relative;
}

.carte__cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.carte__cat-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  white-space: nowrap;
}

.carte__cat-line {
  flex: 1;
  height: 1px;
  background: rgba(245, 240, 232, 0.12);
}

.carte__menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.carte__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.05);
  gap: 12px;
}

.carte__item-info { flex: 1; min-width: 0; }

.carte__item-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.carte__item-desc {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.5;
}

.carte__item-supp {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(196, 84, 122, 0.12);
  font-size: 0.7rem;
  color: var(--rose-light);
}

.carte__item-price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rose);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Carte photo column (asymmetric) */
.carte__with-photo {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.carte__photo {
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  aspect-ratio: 3/4;
}
.carte__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.carte__photo:hover img { transform: scale(1.03); }


.carte__promo-content { flex: 1; min-width: 200px; }

.carte__promo-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 8px;
}

.carte__promo-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--creme);
  margin-bottom: 8px;
}

.carte__promo-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.5;
}

.carte__promo-price {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--creme);
  line-height: 1;
}

@media (max-width: 900px) {
  .carte__with-photo {
    grid-template-columns: 1fr;
  }
  .carte__photo {
    position: relative;
    top: auto;
    aspect-ratio: 16/9;
    max-height: 300px;
  }
  .carte__menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== HOURS NOTE ========== */
.infos__hours-note {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(196, 84, 122, 0.06);
  font-size: 0.8rem;
  color: var(--rose-dark);
  line-height: 1.5;
  font-style: italic;
}

/* ========== MAP FALLBACK (offline) ========== */
.infos__map-container {
  position: relative;
  min-height: 350px;
}
.infos__map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}
.infos__map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  padding: 40px 24px;
  text-align: center;
  background:
    linear-gradient(135deg, var(--creme-dark) 0%, #d8d0c0 100%);
  border-radius: 0;
}
.infos__map-fallback-icon {
  margin-bottom: 16px;
  opacity: 0.6;
}
.infos__map-fallback-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 8px;
}
.infos__map-fallback-addr {
  font-size: 0.95rem;
  color: rgba(26, 20, 18, 0.6);
  line-height: 1.6;
}

/* ========== SIGNATURE BIGA STEPS ========== */
.signature__steps {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signature__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(196, 38, 46, 0.05);
  border-left: 3px solid var(--rouge);
}
.signature__step-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rouge);
  min-width: 56px;
  letter-spacing: 0.04em;
}
.signature__step-text {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.78);
  line-height: 1.5;
}

/* ========== BTN ROUGE / VERT ========== */
.btn--rouge {
  background: var(--rouge);
  color: var(--creme);
  border: 2px solid var(--rouge);
}
.btn--rouge:hover {
  background: var(--rouge-dark);
  border-color: var(--rouge-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--rouge-glow);
}
.btn--vert {
  background: var(--vert);
  color: var(--creme);
  border: 2px solid var(--vert);
}
.btn--vert:hover {
  background: var(--vert-dark);
  border-color: var(--vert-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--vert-glow);
}

/* ========== PIZZA DU MOMENT ========== */
.pizza-moment {
  position: relative;
  margin: 0 auto 36px;
  max-width: 920px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(196, 38, 46, 0.12) 0%, rgba(0, 130, 75, 0.08) 100%),
    var(--noir-light);
  border: 1px solid rgba(196, 38, 46, 0.25);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.pizza-moment::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vert) 0%, var(--vert) 33%, var(--creme) 33%, var(--creme) 66%, var(--rouge) 66%, var(--rouge) 100%);
  z-index: 3;
}

.pizza-moment__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.pizza-moment__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.pizza-moment:hover .pizza-moment__photo img { transform: scale(1.05); }

.pizza-moment__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--rouge);
  color: var(--creme);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.pizza-moment__badge svg { fill: var(--creme); }

.pizza-moment__body {
  padding: clamp(24px, 4vw, 40px) clamp(22px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pizza-moment__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--vert-light);
  margin-bottom: 10px;
}
.pizza-moment__title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
  color: var(--creme);
}
.pizza-moment__ingredients {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 14px;
  line-height: 1.5;
}
.pizza-moment__desc {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
  margin-bottom: 22px;
}
.pizza-moment__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pizza-moment { grid-template-columns: 1fr; }
  .pizza-moment__photo { aspect-ratio: 16/10; max-height: 320px; }
}

/* ========== CARTE — IFRAME PDF + BOISSONS ========== */
.carte__doc {
  margin: 56px auto 0;
  max-width: 920px;
  text-align: center;
}
.carte__doc + .carte__doc { margin-top: 40px; }

.carte__doc-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rouge-light);
  margin-bottom: 14px;
}

.carte__doc-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--creme);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  /* Hauteur généreuse pour bien voir un PDF A4 */
  aspect-ratio: 1191 / 1685;
  max-height: min(82vh, 1100px);
  width: 100%;
}
.carte__doc-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--creme);
}

/* Placeholder Vistaprint (URL non renseignée) */
.carte__doc-frame--placeholder iframe[src=""] { display: none; }
.carte__doc-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 28px;
  text-align: center;
  color: rgba(245, 240, 232, 0.55);
  background:
    repeating-linear-gradient(45deg, rgba(245,240,232,0.02) 0 22px, transparent 22px 44px),
    var(--noir-light);
}
.carte__doc-fallback p {
  font-size: 0.95rem;
  font-style: italic;
  max-width: 360px;
  line-height: 1.5;
  margin: 0;
}
.carte__doc-fallback-hint {
  font-size: 0.78rem;
  font-style: normal;
  opacity: 0.7;
  margin-top: 6px;
}
.carte__doc-fallback code {
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 0.78rem;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(245,240,232,0.08);
  color: var(--rouge-light);
}
.carte__doc-frame.is-loaded .carte__doc-fallback { display: none; }
.carte__doc-frame.is-loaded iframe { display: block; }

.carte__doc-dl {
  text-decoration: none;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .carte__doc-frame { max-height: 78vh; }
}

/* ========== MENTOR ========== */
.mentor {
  background: var(--noir);
  position: relative;
  overflow: hidden;
}
.mentor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert) 0%, var(--vert) 33%, var(--creme) 33%, var(--creme) 66%, var(--rouge) 66%, var(--rouge) 100%);
}
.mentor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.mentor__content { padding: 20px 0; }
.mentor__trophies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 28px;
}
.mentor__trophy {
  padding: 18px 12px;
  border-radius: 12px;
  background: var(--noir-light);
  border: 1px solid rgba(245, 240, 232, 0.06);
  text-align: center;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.mentor__trophy:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 38, 46, 0.4);
}
.mentor__trophy--featured {
  background: linear-gradient(135deg, var(--rouge-dark) 0%, var(--rouge) 100%);
  border-color: var(--rouge);
}
.mentor__trophy-year {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--creme);
  line-height: 1;
  margin-bottom: 6px;
}
.mentor__trophy--featured .mentor__trophy-year { color: var(--creme); }
.mentor__trophy-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 600;
}
.mentor__trophy--featured .mentor__trophy-title { color: rgba(245, 240, 232, 0.95); }
.mentor__trophy-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 4px;
}
.mentor__quote {
  margin-top: 8px;
  padding: 20px 24px;
  border-left: 3px solid var(--vert);
  background: rgba(0, 130, 75, 0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.6;
}
.mentor__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}
.mentor__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.mentor__visual:hover img { transform: scale(1.04); }
.mentor__badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: clamp(96px, 15vw, 130px);
  height: clamp(96px, 15vw, 130px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
  animation: stampRotate 25s linear infinite;
  will-change: transform;
}
.mentor__badge svg { width: 100%; height: 100%; }
@media (max-width: 768px) {
  .mentor__grid { grid-template-columns: 1fr; }
  .mentor__visual { aspect-ratio: 4/3; max-height: 360px; }
  .mentor__trophies { gap: 10px; }
}

/* ========== TERRASSE ========== */
.terrasse {
  background: var(--creme);
  color: var(--noir);
}
.terrasse .section__label { color: var(--rouge-dark); }
.terrasse .section__text { color: rgba(26, 20, 18, 0.7); }
.terrasse .divider-rose { background: var(--rouge); }
.terrasse__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.terrasse__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 28px;
}
.terrasse__stat {
  padding: 20px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(26, 20, 18, 0.08);
  text-align: center;
  transition: transform 0.3s var(--ease-spring);
}
.terrasse__stat:hover {
  transform: translateY(-3px);
  border-color: var(--vert);
}
.terrasse__stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--rouge);
  line-height: 1;
  margin-bottom: 6px;
}
.terrasse__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26, 20, 18, 0.6);
  font-weight: 600;
  line-height: 1.3;
}
.terrasse__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.terrasse__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: rgba(26, 20, 18, 0.75);
  border-bottom: 1px solid rgba(26, 20, 18, 0.06);
}
.terrasse__features li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  flex-shrink: 0;
  color: var(--rouge);
}
.terrasse__features li svg {
  width: 22px;
  height: 22px;
}
.terrasse__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 20, 18, 0.18);
}
.terrasse__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .terrasse__grid { grid-template-columns: 1fr; }
  .terrasse__visual { aspect-ratio: 4/3; max-height: 380px; }
}

/* ========== UPDATED FEATURE CARD ICON SIZE ========== */
/* Heart inline (avis customer review) */
.inline-heart {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  color: var(--rouge);
  display: inline-block;
  margin-left: 2px;
}

/* ========== TRICOLOR DIVIDER (utility) ========== */
.divider-tricolore {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--vert) 0%, var(--vert) 33%, var(--creme) 33%, var(--creme) 66%, var(--rouge) 66%, var(--rouge) 100%);
  border-radius: 2px;
}

/* ============================================ */
/* ============== WOW EFFECTS ================== */
/* ============================================ */

/* 1. Scroll progress bar — tricolore */
.wow-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
  pointer-events: none;
  background: rgba(245,240,232,0.04);
}
.wow-progress__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--vert) 0%, var(--creme) 50%, var(--rouge) 100%);
  box-shadow: 0 0 12px var(--rouge-glow);
  transition: width 0.08s linear;
}

/* 2. Hero digit drop-in */
.hero__digit {
  display: inline-block;
  opacity: 0;
  transform: translateY(-60px) scale(0.7) rotate(-12deg);
  animation: digitDrop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}
@keyframes digitDrop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* 3. Section title word stagger */
.word-stagger {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordRise 0.7s var(--ease-out) forwards;
  animation-delay: var(--wd, 0s);
  will-change: transform, opacity;
}
@keyframes wordRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section__title.reveal .word-stagger {
  /* Si le titre est dans .reveal, ne déclencher l'anim qu'une fois visible */
  animation-play-state: paused;
}
.section__title.reveal.visible .word-stagger {
  animation-play-state: running;
}

/* 4. Ripple click effect */
.btn { position: relative; }
.btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.45);
  transform: scale(0);
  animation: rippleExpand 0.65s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes rippleExpand {
  to {
    transform: scale(1);
    opacity: 0;
  }
}
.btn--primary .btn__ripple { background: rgba(245, 240, 232, 0.5); }
.btn--outline .btn__ripple { background: rgba(196, 38, 46, 0.35); }
.btn--rouge .btn__ripple { background: rgba(245, 240, 232, 0.5); }
.btn--dark .btn__ripple { background: rgba(245, 240, 232, 0.35); }

/* 5. Magnetic CTA — primary buttons get extra pop */
.btn--primary, [data-magnet] {
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s, background 0.3s;
}

/* 6. 3D tilt cards */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* 7. Marquee tricolore */
.marquee {
  position: relative;
  background: var(--noir);
  border-top: 2px solid var(--vert);
  border-bottom: 2px solid var(--rouge);
  padding: 14px 0;
  overflow: hidden;
  user-select: none;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marqueeSlide 38s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--creme);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__star {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rouge);
  box-shadow: 0 0 10px var(--rouge-glow);
  flex-shrink: 0;
}
.marquee__star--vert { background: var(--vert); box-shadow: 0 0 10px var(--vert-glow); }
.marquee__star--creme { background: var(--creme); box-shadow: 0 0 10px rgba(245,240,232,0.4); }
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* 8. Glow on hover for section images (signature, mentor, terrasse) */
.signature__visual,
.mentor__visual,
.terrasse__visual {
  transition: box-shadow 0.5s var(--ease-out);
}
.signature__visual:hover,
.mentor__visual:hover,
.terrasse__visual:hover {
  box-shadow:
    0 24px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(196, 38, 46, 0.3),
    0 0 60px rgba(196, 38, 46, 0.18);
}

/* 9. Avis cards — animated stars on hover */
.avis__card {
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
}
.avis__card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 38, 46, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(196, 38, 46, 0.1);
}
.avis__card-stars svg {
  transition: transform 0.3s var(--ease-spring);
}
.avis__card:hover .avis__card-stars svg:nth-child(1) { transform: rotate(-8deg) scale(1.15); transition-delay: 0s; }
.avis__card:hover .avis__card-stars svg:nth-child(2) { transform: rotate(-4deg) scale(1.15); transition-delay: 0.04s; }
.avis__card:hover .avis__card-stars svg:nth-child(3) { transform: scale(1.2); transition-delay: 0.08s; }
.avis__card:hover .avis__card-stars svg:nth-child(4) { transform: rotate(4deg) scale(1.15); transition-delay: 0.12s; }
.avis__card:hover .avis__card-stars svg:nth-child(5) { transform: rotate(8deg) scale(1.15); transition-delay: 0.16s; }

/* 10. Terrasse stats — counter glow */
.terrasse__stat {
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.terrasse__stat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--rouge-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.terrasse__stat:hover {
  transform: translateY(-6px);
  border-color: var(--rouge);
  box-shadow: 0 18px 40px rgba(196, 38, 46, 0.18);
}
.terrasse__stat:hover::after { opacity: 0.4; }
.terrasse__stat-num {
  text-shadow: 0 4px 18px rgba(196, 38, 46, 0.18);
}

/* 11. Mentor trophies — interactive */
.mentor__trophy {
  cursor: pointer;
}
.mentor__trophy::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 0%, rgba(245,240,232,0.06) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.mentor__trophy:hover::before { opacity: 1; }

/* 12. Pizza moment — pulse on the badge */
.pizza-moment__badge {
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 38, 46, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(196, 38, 46, 0); }
}

/* 13. Hero — subtle shimmer on hover (clip via individual digit not parent) */
.hero__digit {
  position: relative;
}

/* 14. Reduced motion safety net */
@media (prefers-reduced-motion: reduce) {
  .wow-progress { display: none; }
  .hero__digit, .word-stagger { animation: none !important; opacity: 1; transform: none; }
  .pizza-moment__badge { animation: none; }
  .marquee__track { animation: none; }
}

/* ========== GALERIE DÉFILANTE (photos marquee) ========== */
.gallery {
  background: var(--noir);
  padding: 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
  border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}
.gallery::before,
.gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--noir) 0%, transparent 100%);
}
.gallery::after {
  right: 0;
  background: linear-gradient(270deg, var(--noir) 0%, transparent 100%);
}

.gallery__track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 18px 0;
  animation: galleryScroll 80s linear infinite;
  will-change: transform;
}
.gallery:hover .gallery__track { animation-play-state: paused; }

.gallery__item {
  flex-shrink: 0;
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 4/5;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transition: filter 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.gallery__item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 36px rgba(196, 38, 46, 0.3), 0 0 0 1px rgba(196, 38, 46, 0.4);
  z-index: 3;
}
.gallery__item:hover img {
  filter: saturate(1.1) brightness(1.05);
  transform: scale(1.06);
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .gallery__item { width: 56vw; }
  .gallery__track { animation-duration: 60s; gap: 10px; padding: 14px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none; }
}

