:root {
  /* Vert myrte — inspiration maquis corse (myrtus communis) */
  --sauge-900: #253a28;
  --sauge-700: #3d5a40;
  --sauge-500: #6d8a6d;
  --sauge-300: #9ab19a;
  --sauge-100: #d4dfd1;
  --sauge-50: #eef2ec;
  --creme-200: #ede1c5;
  --creme-100: #f5eddd;
  --creme-50: #faf6ec;
  --or-700: #a68843;
  --or-500: #c9a961;
  --or-400: #d4b77a;
  --olive-700: #5a5c29;
  --olive-500: #7c7d3b;
  --encre-900: #221f1b;
  --encre-700: #3d3a34;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--creme-50);
  color: var(--encre-900);
}

h1, h2, h3, .font-serif {
  font-family: "Playfair Display", "Georgia", serif;
  color: var(--sauge-900);
}

.font-script {
  font-family: "Great Vibes", "Dancing Script", cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.font-display {
  font-family: "Great Vibes", "Dancing Script", cursive;
  letter-spacing: 0.01em;
  line-height: 1;
}

/* --- Texture crème discrète --- */
.bg-cream-texture {
  background-color: var(--creme-50);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(122, 145, 116, 0.08) 0, transparent 45%);
}

/* ============================================================
   ANIMATIONS CRÉATIVES
   ============================================================ */

/* --- Logo hero : chaque lettre tombe du ciel et rebondit --- */
.logo-drop {
  display: inline-flex;
  gap: 0;
  perspective: 800px;
}
.logo-drop .letter {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, -120vh, 0) rotate(-25deg);
  animation: letter-drop 1.4s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
  animation-delay: calc(0.3s + var(--i, 0) * 0.085s);
  will-change: transform, opacity;
  transform-origin: 50% 50%;
}
.logo-drop .letter.space { width: 0.35em; }

@keyframes letter-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, -120vh, 0) rotate(-25deg) scale(0.6);
    filter: blur(6px);
  }
  55% {
    opacity: 1;
    transform: translate3d(0, 8vh, 0) rotate(3deg) scale(1.02);
    filter: blur(0);
  }
  70% {
    transform: translate3d(0, -2vh, 0) rotate(-1.2deg) scale(0.99);
  }
  85% {
    transform: translate3d(0, 1.5vh, 0) rotate(0.5deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    filter: blur(0);
  }
}

/* Halo doré qui pulse doucement sous le logo après atterrissage */
.logo-drop-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.logo-drop-wrap::after {
  content: "";
  position: absolute;
  inset: 10% -8% -4%;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 183, 122, 0.45), transparent 65%);
  filter: blur(28px);
  opacity: 0;
  z-index: -1;
  animation: halo-pulse 3.5s ease-in-out infinite 1.8s;
}
@keyframes halo-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.95); }
  50% { opacity: 0.75; transform: scale(1.08); }
}

/* --- Shimmer doré sur les titres en script --- */
.script-shimmer {
  background: linear-gradient(
    90deg,
    var(--or-500) 0%,
    var(--or-400) 25%,
    #f8e7b8 50%,
    var(--or-400) 75%,
    var(--or-500) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Feature icon : dessin au trait + rebond --- */
.feature-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(250, 246, 236, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  transition: transform 400ms cubic-bezier(0.22, 1.4, 0.36, 1),
              border-color 300ms ease,
              background 300ms ease;
}
.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect,
.feature-icon svg line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: draw 1.4s ease-out forwards;
  animation-delay: calc(var(--delay, 0ms) + 400ms);
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}
.features-row .reveal:hover .feature-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(212, 183, 122, 0.15);
  border-color: var(--or-400);
}

/* --- Chips menu : cascade pop-in --- */
.menu-chip {
  opacity: 0;
  transform: translateY(14px) scale(0.85);
  animation: chip-pop 600ms cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms + 200ms);
  transition: transform 250ms ease, background 250ms ease, color 250ms ease;
}
.menu-chip:hover {
  transform: translateY(-3px) scale(1.06);
  background: var(--or-400);
  color: var(--encre-900);
}
@keyframes chip-pop {
  0%   { opacity: 0; transform: translateY(14px) scale(0.85); }
  60%  { opacity: 1; transform: translateY(-3px) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Boutons or : shine sweep au hover --- */
.btn-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0; left: -140%;
  width: 60%; height: 100%;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 80%
  );
  transition: left 700ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}
.btn-gold:hover::before { left: 140%; }

/* --- Étoiles qui scintillent (Avis Google) --- */
.review-stars {
  display: inline-block;
}
.review-stars-animated span,
.review-stars-animated {
  animation: twinkle 2.4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(251, 188, 4, 0)); }
  50%      { filter: drop-shadow(0 0 8px rgba(251, 188, 4, 0.8)); }
}

/* --- Logo nav : léger tilt au hover --- */
header .font-script {
  transition: transform 500ms cubic-bezier(0.22, 1.4, 0.36, 1), text-shadow 500ms ease;
  transform-origin: left center;
  display: inline-block;
}
header a:hover .font-script {
  transform: rotate(-4deg) scale(1.05);
  text-shadow: 0 6px 18px rgba(212, 183, 122, 0.5);
}

/* --- Dish card : légère rotation 3D au hover --- */
.dish-card {
  transform-style: preserve-3d;
}
.dish-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
}

/* --- Partner cards : tilt discret au hover --- */
.partner-card {
  transform: perspective(600px) rotateX(0) rotateY(0);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
}
.partner-card:hover {
  transform: perspective(600px) rotateX(3deg) rotateY(-3deg) translateY(-4px);
}

/* --- Scroll indicator : même que tu avais, on renforce un peu --- */
.scroll-indicator { animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* --- Reduce motion : neutralise toutes ces animations --- */
@media (prefers-reduced-motion: reduce) {
  .logo-drop .letter,
  .menu-chip,
  .feature-icon svg * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
  .logo-drop-wrap::after,
  .script-shimmer,
  .review-stars-animated,
  .scroll-indicator,
  .marquee-track,
  .rotating-badge,
  .blob,
  .emoji-wiggle,
  .pizza-spin { animation: none !important; }
}

/* ============================================================
   MODERN / FUN
   ============================================================ */

/* --- Marquee ticker (bande défilante) --- */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--encre-900);
  color: var(--creme-50);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(212, 183, 122, 0.25);
  border-bottom: 1px solid rgba(212, 183, 122, 0.25);
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  padding-right: 3rem;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee-item .sep {
  color: var(--or-500);
  font-size: 1.6rem;
  animation: spin 8s linear infinite;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Rotating circular badge (texte dynamique via SVG textPath) --- */
.rotating-badge {
  position: absolute;
  width: 160px;
  height: 160px;
  animation: rotate 18s linear infinite;
  pointer-events: none;
}
.rotating-badge svg { overflow: visible; }
.rotating-badge text {
  fill: var(--or-400);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  font-weight: 600;
  text-transform: uppercase;
}
.rotating-badge .core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--or-400);
  font-size: 2rem;
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* --- Mesh gradient blobs (derrière le hero) --- */
.blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.55;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: blob-float 18s ease-in-out infinite;
  will-change: transform;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #d4b77a 0%, transparent 70%);
  top: -100px; left: -120px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6d8a6d 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: -6s;
}
.blob-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #c9a961 0%, transparent 70%);
  top: 40%; left: 55%;
  animation-delay: -12s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.15); }
  66%      { transform: translate(-50px, 30px) scale(0.9); }
}

/* --- Noise grain texture (overlay subtil) --- */
.grain {
  position: relative;
}
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

/* --- Emoji wiggle on hover --- */
.emoji-wiggle {
  display: inline-block;
  transition: transform 300ms ease;
  transform-origin: 50% 75%;
}
.emoji-wiggle:hover,
.features-row .reveal:hover .emoji-wiggle {
  animation: wiggle 500ms ease-in-out;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  15%      { transform: rotate(-15deg) scale(1.2); }
  30%      { transform: rotate(12deg) scale(1.2); }
  45%      { transform: rotate(-8deg) scale(1.15); }
  60%      { transform: rotate(6deg) scale(1.1); }
  75%      { transform: rotate(-3deg) scale(1.05); }
}

/* --- Pizza spinner (petit accent fun section pizzas) --- */
.pizza-spin {
  display: inline-block;
  animation: spin 14s linear infinite;
  filter: drop-shadow(0 8px 20px rgba(201, 169, 97, 0.4));
}

/* --- Magnetic button (léger snap vers le curseur) --- */
.magnetic { transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }

/* --- Sticker "NOUVEAU" (petit badge pop) --- */
.new-sticker {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--or-500);
  color: var(--encre-900);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(201, 169, 97, 0.7);
  animation: bob 2.4s ease-in-out infinite, pulse-ring 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-4px) rotate(6deg); }
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 6px 16px -4px rgba(201, 169, 97, 0.7), 0 0 0 0 rgba(201, 169, 97, 0.6); }
  50%      { box-shadow: 0 6px 16px -4px rgba(201, 169, 97, 0.7), 0 0 0 12px rgba(201, 169, 97, 0); }
}

/* --- Hero ken-burns --- */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  will-change: transform;
  animation: kenburns 24s ease-in-out infinite alternate;
  filter: brightness(0.8) contrast(1.05);
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 31, 27, 0.55) 0%,
    rgba(63, 81, 64, 0.5) 45%,
    rgba(201, 169, 97, 0.35) 100%
  );
}

/* --- Atténuer la brillance de toutes les photos --- */
.aspect-\[4\/5\] img,
.signature-card img,
section img:not(.no-dim) {
  filter: brightness(0.82) contrast(1.08) saturate(0.85);
}

/* --- Scroll reveals --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll indicator --- */
.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* --- Wave divider --- */
.wave-divider {
  display: block;
  width: 100%;
  height: 80px;
}
.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- Dish cards --- */
.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px -15px rgba(63, 81, 64, 0.25);
  transition: transform 500ms ease, box-shadow 500ms ease;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -20px rgba(63, 81, 64, 0.35);
}
.dish-card .dish-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dish-card:hover .dish-image {
  transform: scale(1.08);
}
.dish-card .dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(34, 31, 27, 0.85) 100%);
  pointer-events: none;
}

/* --- Hours badge --- */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hours-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
}
.hours-badge.is-open {
  background: rgba(122, 145, 116, 0.22);
  color: #d2e0b8;
  border: 1px solid rgba(212, 183, 122, 0.45);
}
.hours-badge.is-open .dot {
  animation: pulse 2s ease-in-out infinite;
}
.hours-badge.is-closed {
  background: rgba(201, 169, 97, 0.15);
  color: var(--or-400);
  border: 1px solid rgba(201, 169, 97, 0.35);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 183, 122, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(212, 183, 122, 0); }
}

/* Variante claire sur fond clair */
.hours-badge.on-light.is-open {
  background: rgba(90, 112, 88, 0.1);
  color: var(--sauge-700);
  border-color: rgba(90, 112, 88, 0.3);
}
.hours-badge.on-light.is-closed {
  background: rgba(201, 169, 97, 0.15);
  color: var(--or-700);
  border-color: rgba(201, 169, 97, 0.35);
}

/* --- Features row (déclaration déplacée plus haut avec l'animation) --- */
.features-row {
  background: var(--sauge-700);
  color: var(--creme-50);
}

/* --- Gallery masonry --- */


/* --- Testimonials --- */
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 32px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px -15px rgba(63, 81, 64, 0.2);
  border: 1px solid rgba(63, 81, 64, 0.06);
}
@media (min-width: 768px) {
  .testimonial-card { flex-basis: 45%; }
}
@media (min-width: 1024px) {
  .testimonial-card { flex-basis: 31%; }
}
.testimonial-stars {
  color: var(--or-500);
  letter-spacing: 2px;
}

/* --- Nav (sticky with scroll state) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 350ms ease, backdrop-filter 350ms ease,
              box-shadow 350ms ease;
}
.site-header.is-transparent {
  background: linear-gradient(180deg, rgba(34, 31, 27, 0.55), transparent);
}
.site-header.is-solid {
  background: rgba(63, 81, 64, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.3);
}

body.nav-solid .site-header {
  background: rgba(63, 81, 64, 0.97);
  backdrop-filter: blur(12px);
}

.nav-link {
  position: relative;
  transition: color 200ms ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--or-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease;
}
.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

/* --- Mobile nav --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: linear-gradient(135deg, var(--sauge-900), var(--sauge-700));
  padding: 6rem 2rem 2rem;
}
.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu a {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

/* --- Buttons --- */
.btn-primary {
  background: var(--encre-900);
  color: var(--creme-50);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--sauge-900);
  box-shadow: 0 12px 28px -10px rgba(63, 81, 64, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--or-500), var(--or-400));
  color: var(--encre-900);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 20px -8px rgba(201, 169, 97, 0.6);
  transition: transform 250ms ease, box-shadow 250ms ease;
  display: inline-block;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(201, 169, 97, 0.8);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  padding: 0.82rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 250ms ease, border-color 250ms ease;
  display: inline-block;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

/* --- Forms --- */
.field-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(63, 81, 64, 0.18);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  color: var(--encre-900);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.field-input:focus {
  outline: none;
  border-color: var(--sauge-500);
  box-shadow: 0 0 0 3px rgba(122, 145, 116, 0.25);
  background: #fff;
}
.field-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sauge-700);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 20px 60px -20px rgba(63, 81, 64, 0.35);
}

/* --- Menu category chips --- */
.menu-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--sauge-100);
  color: var(--sauge-900);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- CTA background image (Une table vous attend) --- */
.cta-bg-img {
  filter: blur(2px) brightness(0.75);
  transform: scale(1.05);
  object-position: center 30%;
}

/* --- Pizza cards (section accueil) --- */
.pizza-card {
  background: white;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(63, 81, 64, 0.12);
}
.pizza-card--special {
  background: var(--sauge-900);
  border-color: var(--or-500);
}
.pizza-card--special .pizza-card-name {
  color: var(--creme-50);
}
.pizza-card--special .pizza-card-price {
  color: var(--or-400);
}
.pizza-card--special .pizza-card-desc {
  color: var(--creme-100);
  opacity: 0.85;
}
.pizza-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.pizza-card-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sauge-900);
  line-height: 1.2;
}
.pizza-card-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--or-600);
  white-space: nowrap;
}
.pizza-card-desc {
  font-size: 0.92rem;
  color: var(--encre-600);
  line-height: 1.5;
}

/* --- Partners row (Ty Corsa, OPPO et filles) --- */
.partner-card {
  background: var(--creme-100);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -18px rgba(63, 81, 64, 0.35);
}

/* --- Avis Google card --- */
.review-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(63, 81, 64, 0.12);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--encre-700);
  box-shadow: 0 4px 14px -6px rgba(63, 81, 64, 0.15);
}
.review-stars {
  color: #fbbc04;
  letter-spacing: 1px;
}

/* --- Accessibility / reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-indicator::after { animation: none; }
  .hours-badge.is-open .dot { animation: none; }
}

/* --- Misc utilities --- */
.text-shadow-hero {
  text-shadow: 0 2px 20px rgba(34, 31, 27, 0.6);
}

/* ============================================================
   PREMIUM POLISH (micro-interactions haut de gamme)
   ============================================================ */

/* --- Scroll progress bar (filet or en haut) --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--or-500), var(--or-400));
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(212, 183, 122, 0.55);
  transition: width 80ms linear;
}

/* --- Custom cursor ring (desktop only, ADDITIVE : le natif reste) --- */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid var(--or-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 200ms, width 260ms cubic-bezier(0.22, 1.4, 0.36, 1),
              height 260ms cubic-bezier(0.22, 1.4, 0.36, 1),
              border-color 200ms, background 200ms;
  will-change: transform;
}
.cursor-ring.is-ready { opacity: 1; }
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  border-color: var(--or-500);
  background: rgba(201, 169, 97, 0.12);
}
@media (hover: none), (pointer: coarse) {
  .cursor-ring { display: none; }
}

/* --- Glassmorphic nav (quand scrollé) --- */
.site-header.is-solid {
  background: rgba(250, 246, 236, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(212, 183, 122, 0.18);
  box-shadow: 0 4px 20px -10px rgba(34, 31, 27, 0.1);
}

/* --- Split-word reveal (H2 par mot, stagger) --- */
.split-words { overflow: visible; }
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  padding: 0 0.02em;
}
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 900ms ease;
  transition-delay: calc(var(--wi, 0) * 70ms);
  will-change: transform;
}
.split-words.is-revealed .split-word > span {
  transform: translateY(0);
  opacity: 1;
}

/* --- Ripple au clic (boutons or & ghost) --- */
.btn-gold, .btn-ghost { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  animation: ripple-out 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  mix-blend-mode: screen;
}
.btn-ghost .ripple {
  background: radial-gradient(circle, rgba(212,183,122,0.45) 0%, rgba(212,183,122,0) 70%);
}
@keyframes ripple-out {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* --- Scramble placeholder : monospace même largeur pendant l'anim --- */
.scramble {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* --- Reduce motion : coupe les nouvelles anims --- */
@media (prefers-reduced-motion: reduce) {
  .cursor-ring { display: none !important; }
  .scroll-progress { display: none !important; }
  .split-word > span { transform: none !important; opacity: 1 !important; }
  .ripple { display: none !important; }
}

/* --- Hide scrollbar on horizontal scroll areas (mobile nav menu) --- */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
