/* =========================================================================
   LORY Events & Catering — Design System
   Charte graphique : Bleu Méditerranéen, Or Sable, Olive, Beige Pierre, Bleu Nuit
   ========================================================================= */

:root {
  /* Charte — couleurs officielles */
  --bleu-med: #3B6C9E;
  --bleu-med-dark: #2F5680;
  --or-sable: #B08A3E;
  --or-sable-soft: #C9A971;
  --vert-olive: #6F7742;
  --beige-pierre: #EFE7DA;
  --beige-pierre-warm: #E5DAC6;
  --bleu-nuit: #2D3B4F;

  /* UI */
  --white: #FFFFFF;
  --bg-page: #FAFAF7;
  --bg-soft: #F5F1E9;
  --line: rgba(45, 59, 79, 0.08);
  --line-gold: rgba(176, 138, 62, 0.35);
  --text-primary: #2D3B4F;
  --text-secondary: #5A6577;
  --text-muted: #9CA3AF;
  --shadow-soft: 0 4px 24px rgba(45, 59, 79, 0.07);
  --shadow-md: 0 10px 36px rgba(45, 59, 79, 0.12);
  --shadow-lg: 0 24px 64px rgba(45, 59, 79, 0.18);

  /* Typo */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hebrew: 'Heebo', 'Montserrat', sans-serif;

  /* Espace & rayons */
  --section-gap: clamp(72px, 9vw, 140px);
  --container: 1240px;
  --radius: 6px;
  --radius-lg: 18px;
  --radius-full: 999px;

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================================
   Reset & base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Focus visible — accessibilité */
:focus-visible {
  outline: 2px solid var(--or-sable);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--bleu-nuit);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* =========================================================================
   Typographie
   ========================================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--bleu-nuit);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin: 0 0 22px;
}
.h-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--or-sable);
}
.h-eyebrow.center::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--or-sable);
}
.h-display {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.h-display em {
  font-style: italic;
  color: var(--or-sable);
  font-weight: 400;
}
.h-section {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 500;
}
.h-card {
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 500;
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 62ch;
}
.hebrew {
  font-family: var(--font-hebrew);
  font-weight: 300;
  direction: rtl;
  unicode-bidi: isolate;
}

/* =========================================================================
   Layout
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
section { padding: var(--section-gap) 0; }
.section-divider {
  border: 0;
  height: 1px;
  background: var(--line-gold);
  max-width: 80px;
  margin: 22px 0;
}
.section-divider.center { margin: 22px auto; }

/* =========================================================================
   Boutons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--bleu-med);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bleu-med-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(59, 108, 158, 0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--bleu-nuit);
  border: 1px solid var(--bleu-nuit);
}
.btn-secondary:hover {
  background: var(--bleu-nuit);
  color: var(--white);
}
.btn-gold {
  background: transparent;
  color: var(--or-sable);
  border: 1px solid var(--or-sable);
}
.btn-gold:hover {
  background: var(--or-sable);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--bleu-nuit);
}
.btn-light:hover {
  background: var(--beige-pierre);
}
.btn-ghost {
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--bleu-nuit);
  border-radius: 0;
  border-bottom: 1px solid var(--bleu-nuit);
  min-height: auto;
}
.btn-ghost:hover { color: var(--or-sable); border-bottom-color: var(--or-sable); }
.btn .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================================
   Header / Navigation
   ========================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-light .nav-link,
.site-header.is-light .logo-text,
.site-header.is-light .nav-toggle span { color: var(--white); }
.site-header.is-light.is-scrolled .nav-link,
.site-header.is-light.is-scrolled .logo-text,
.site-header.is-light.is-scrolled .nav-toggle span { color: var(--bleu-nuit); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--bleu-nuit);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}
.logo-mark {
  width: 8px;
  height: 8px;
  background: var(--or-sable);
  border-radius: 50%;
  transform: translateY(-6px);
}
.logo-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-sable);
  font-weight: 500;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--or-sable);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  margin: -12px;
  z-index: 110;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--bleu-nuit);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-main {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 380px);
    background: var(--bg-page);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 36px 40px;
    gap: 28px;
    transform: translateX(110%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-main.is-open { transform: translateX(0); }
  .nav-link { font-size: 15px; color: var(--bleu-nuit) !important; }
  .nav-cta { margin: 12px 0 0; align-self: stretch; }
  .nav-cta .btn { width: 100%; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 100% 70% at 20% 20%, rgba(244, 232, 200, 0.55), transparent 65%),
    radial-gradient(ellipse 80% 60% at 80% 80%, rgba(176, 138, 62, 0.35), transparent 60%),
    linear-gradient(165deg, #6D94B6 0%, #8DA8C0 35%, #C7B68F 75%, #E9DCC3 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,42,56,0.18) 0%, rgba(31,42,56,0) 28%, rgba(31,42,56,0.22) 100%);
}

/* Hero with a real photo behind the gradient — adds class .has-photo on .hero-bg */
.hero-bg.has-photo {
  background-color: #1F2A38;
}
.hero-bg.has-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.55;
  filter: saturate(1.05);
}
.hero-bg.has-photo::after {
  background: linear-gradient(180deg, rgba(31,42,56,0.55) 0%, rgba(31,42,56,0.25) 30%, rgba(31,42,56,0.65) 100%);
}

/* Slideshow: stack N images, crossfade in sequence */
.hero-bg.is-slideshow > img {
  opacity: 0;
  animation: heroSlideFade 24s infinite cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-bg.is-slideshow > img:nth-child(1) { animation-delay: 0s; }
.hero-bg.is-slideshow > img:nth-child(2) { animation-delay: 6s; }
.hero-bg.is-slideshow > img:nth-child(3) { animation-delay: 12s; }
.hero-bg.is-slideshow > img:nth-child(4) { animation-delay: 18s; }
@keyframes heroSlideFade {
  0%   { opacity: 0; }
  6%   { opacity: 0.6; }
  22%  { opacity: 0.6; }
  28%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg.is-slideshow > img {
    animation: none;
    opacity: 0;
  }
  .hero-bg.is-slideshow > img:nth-child(1) { opacity: 0.55; }
}

/* Hero with the LORY logo as a watermark — white-bg illustration blended into the gradient */
.hero-bg.has-logo {
  background:
    radial-gradient(ellipse 110% 80% at 50% 50%, rgba(255, 248, 232, 0.85), transparent 70%),
    linear-gradient(170deg, #F4E9D2 0%, #E6D4B0 40%, #C4B58C 75%, #8DA8C0 100%);
}
.hero-bg.has-logo > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(420px, 58vw, 760px);
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.85;
  filter: contrast(1.02);
  pointer-events: none;
}
.hero-bg.has-logo::before {
  opacity: 0.35;
}
.hero-bg.has-logo::after {
  background: linear-gradient(180deg, rgba(244, 233, 210, 0.4) 0%, rgba(244, 233, 210, 0) 30%, rgba(196, 181, 140, 0.35) 100%);
}
/* On a luminous hero, switch hero text to warm dark for legibility */
.hero-bg.has-logo ~ .container .hero-eyebrow { color: var(--bleu-nuit); opacity: 0.7; }
.hero-bg.has-logo ~ .container h1 { color: var(--bleu-nuit); text-shadow: 0 1px 0 rgba(255,255,255,0.4); }
.hero-bg.has-logo ~ .container h1 em { color: var(--or-sable); }
.hero-bg.has-logo ~ .container .hero-sub { color: rgba(31, 42, 56, 0.78); }
.hero-bg.has-logo ~ .container .hero-hebrew { color: var(--bleu-med) !important; }
.hero ~ * .scroll-indicator span,
.hero-bg.has-logo ~ .scroll-indicator span { color: var(--bleu-nuit); opacity: 0.6; }

.hero-ornament {
  position: absolute;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
}
.hero-ornament.top-left { top: 5%; left: 4%; width: clamp(120px, 18vw, 240px); }
.hero-ornament.bottom-right { bottom: 5%; right: 4%; width: clamp(120px, 18vw, 240px); transform: rotate(180deg); }

.hero-inner {
  display: grid;
  gap: 30px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--or-sable-soft);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--or-sable-soft);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6.8vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  color: var(--or-sable-soft);
  font-weight: 400;
}
.hero-hebrew {
  font-family: var(--font-hebrew);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  color: var(--or-sable-soft);
  direction: rtl;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.86);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-actions .btn-primary { background: var(--or-sable); }
.hero-actions .btn-primary:hover { background: var(--or-sable-soft); box-shadow: 0 12px 24px rgba(176, 138, 62, 0.32); }
.hero-actions .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero-actions .btn-secondary:hover {
  background: var(--white);
  color: var(--bleu-nuit);
  border-color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2.6s ease-in-out infinite;
}
.scroll-indicator > span:first-child {
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.scroll-line {
  width: 2px;
  height: 70px;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.35) 30%, rgba(255,255,255,0.35) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.scroll-line::before {
  /* persistent thin golden track */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 113, 0.3) 50%, transparent 100%);
}
.scroll-line::after {
  /* travelling bright drop */
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 6px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, transparent, var(--or-sable) 60%, #fff);
  box-shadow: 0 0 10px rgba(201, 169, 113, 0.6);
  animation: scrollDot 2.2s cubic-bezier(0.55, 0, 0.4, 1) infinite;
}
@keyframes scrollDot {
  0%   { transform: translate(-50%, -120%); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate(-50%, 380%); opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator { animation: none; }
  .scroll-line::after { animation: none; opacity: 0.6; }
}

/* Page-header (sub-page hero) */
.page-header {
  position: relative;
  padding: 180px 0 90px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 70% 30%, rgba(176, 138, 62, 0.15), transparent 60%),
    linear-gradient(155deg, #2D3B4F 0%, #3B6C9E 100%);
}
.page-header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
}
.page-header .lede { color: rgba(255,255,255,0.85); max-width: 60ch; }
.page-header .h-eyebrow { color: var(--or-sable-soft); }
.page-header .h-eyebrow::before { background: var(--or-sable-soft); }
.breadcrumbs {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.breadcrumbs a:hover { color: var(--or-sable-soft); }
.breadcrumbs .sep { margin: 0 10px; }

/* =========================================================================
   Promesse — 3 colonnes
   ========================================================================= */
.promesse {
  background: var(--bg-page);
}
.promesse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 60px;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.promesse-item {
  padding: 56px 36px;
  text-align: center;
  position: relative;
}
.promesse-item + .promesse-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line-gold);
}
.promesse-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  color: var(--or-sable);
}
.promesse-item h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.promesse-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .promesse-grid { grid-template-columns: 1fr; }
  .promesse-item + .promesse-item::before {
    left: 20%; right: 20%; top: 0; bottom: auto;
    width: auto; height: 1px;
  }
  .promesse-item { padding: 44px 28px; }
}

/* =========================================================================
   Intro narrative
   ========================================================================= */
.intro {
  background: var(--bg-soft);
  text-align: center;
}
.intro-inner {
  max-width: 720px;
  margin: 0 auto;
}
.intro h2 {
  margin-bottom: 28px;
}
.intro-hebrew {
  font-family: var(--font-hebrew);
  font-size: 1.3rem;
  color: var(--or-sable);
  direction: rtl;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}
.intro p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.intro .h-eyebrow { justify-content: center; }

/* =========================================================================
   Formules / Cards
   ========================================================================= */
.formules-head {
  text-align: center;
  margin-bottom: 70px;
}
.formules-head .h-eyebrow { justify-content: center; }
.formules-head h2 { max-width: 18ch; margin: 0 auto 20px; }
.formules-head p { margin: 0 auto; }

.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.formule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid transparent;
  position: relative;
}
.formule-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}
.formule-media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.formule-media .placeholder-img { width: 100%; height: 100%; }
.formule-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.96);
  color: var(--bleu-nuit);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.formule-tag.gold { color: var(--or-sable); }
.formule-body {
  padding: 32px 30px 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.formule-body h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.formule-hebrew {
  font-family: var(--font-hebrew);
  font-size: 0.95rem;
  color: var(--or-sable);
  direction: rtl;
  margin-bottom: 16px;
}
.formule-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
.formule-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.formule-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.formule-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

@media (max-width: 960px) {
  .formules-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* =========================================================================
   Gallery (masonry-ish)
   ========================================================================= */
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 32px;
  flex-wrap: wrap;
}
.gallery-head .h-eyebrow { margin-bottom: 12px; }
.gallery-head h2 { max-width: 14ch; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item .placeholder-img { width: 100%; height: 100%; transition: transform .6s var(--ease); }
.gallery-item:hover .placeholder-img { transform: scale(1.05); }
.gallery-item .item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45,59,79,0.78) 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item:hover .item-overlay { opacity: 1; }
.gallery-item .item-name {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.gallery-item .item-cat {
  color: var(--or-sable-soft);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonials {
  background: var(--bleu-nuit);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(176,138,62,0.18), transparent 60%);
  z-index: 0;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .h-eyebrow { color: var(--or-sable-soft); justify-content: center; }
.testimonials .h-eyebrow::before { background: var(--or-sable-soft); }
.testimonials h2 { color: var(--white); text-align: center; margin-bottom: 60px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  position: relative;
}
.testimonial .stars {
  color: var(--or-sable-soft);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.94);
  margin: 0 0 26px;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--or-sable);
  color: var(--bleu-nuit);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}
.author-info { line-height: 1.3; }
.author-name { color: var(--white); font-weight: 500; font-size: 0.95rem; }
.author-event {
  color: var(--or-sable-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

/* =========================================================================
   CTA final
   ========================================================================= */
.cta-block {
  background: var(--bg-soft);
  text-align: center;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 {
  margin-bottom: 18px;
}
.cta-inner .hebrew {
  display: block;
  color: var(--or-sable);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.cta-inner p {
  color: var(--text-secondary);
  margin: 0 auto 40px;
  max-width: 56ch;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1FB957;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.32);
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo-text { color: var(--white); font-size: 32px; }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--or-sable-soft);
  font-size: 1.1rem;
  margin: 14px 0 8px;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  margin: 16px 0 0;
  max-width: 32ch;
  line-height: 1.7;
}
.footer-brand .hebrew {
  color: var(--or-sable-soft);
  font-size: 0.95rem;
  display: block;
  margin-top: 12px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}
.footer-col a:hover { color: var(--or-sable-soft); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--or-sable-soft); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--or-sable);
  border-color: var(--or-sable);
  color: var(--bleu-nuit);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-bottom .kosher {
  color: var(--or-sable-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* =========================================================================
   WhatsApp FAB
   ========================================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
  transition: transform .3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-fab svg { width: 28px; height: 28px; }

/* =========================================================================
   Placeholders élégants
   ========================================================================= */
.placeholder-img {
  background: var(--beige-pierre);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 14px,
      rgba(176, 138, 62, 0.06) 14px,
      rgba(176, 138, 62, 0.06) 15px
    );
}
.placeholder-img .ph-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--bleu-nuit);
  opacity: 0.55;
  padding: 16px;
}
.placeholder-img .ph-content svg {
  margin: 0 auto 8px;
  color: var(--or-sable);
  opacity: 0.75;
}
.placeholder-img .ph-content .ph-label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  opacity: 0.7;
}

/* Variants */
.placeholder-img.olive { background: #DCDFC8; }
.placeholder-img.olive::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 14px,
      rgba(111, 119, 66, 0.08) 14px,
      rgba(111, 119, 66, 0.08) 15px
    );
}
.placeholder-img.blue {
  background: linear-gradient(155deg, #2D3B4F, #3B6C9E);
}
.placeholder-img.blue::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 18px,
      rgba(176, 138, 62, 0.1) 18px,
      rgba(176, 138, 62, 0.1) 19px
    );
}
.placeholder-img.blue .ph-content { color: var(--or-sable-soft); opacity: 0.8; }
.placeholder-img.blue .ph-content svg { color: var(--or-sable-soft); }
.placeholder-img.blue .ph-content .ph-label { color: var(--or-sable-soft); }

/* Has real photo — overrides placeholder */
.placeholder-img.has-photo { background: var(--bleu-nuit); }
.placeholder-img.has-photo::before { content: none; }
.placeholder-img.has-photo .ph-content { display: none; }
.placeholder-img.has-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Logo image override — keeps the same .logo flex layout */
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: height .35s var(--ease);
}
.site-header .logo-img { height: 64px; }
.site-header.is-scrolled .logo-img { height: 52px; }
.footer-brand .logo-img {
  height: 96px;
  width: auto;
  border-radius: 8px;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Removed WhatsApp screenshots — using elegant text testimonials */

/* =========================================================================
   Event trust (testimonials text-only)
   ========================================================================= */
.event-trust { padding: 80px 0; }
.event-trust-head { text-align: center; margin-bottom: 50px; }
.event-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-trust-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--or-sable);
  border-radius: 4px 8px 8px 4px;
  padding: 36px 32px 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.event-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31, 42, 56, 0.08);
}
.event-trust-card::before {
  content: "«";
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--or-sable);
  opacity: 0.18;
  line-height: 1;
}
.event-trust-card blockquote {
  margin: 0;
  padding: 0;
  flex: 1;
}
.event-trust-card blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bleu-nuit);
  margin: 0;
}
.event-trust-card blockquote p strong {
  font-weight: 600;
  color: var(--or-sable);
  font-style: normal;
}
.event-trust-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.event-trust-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.event-trust-event {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .event-trust-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* Kosher badge in footer */
.kosher-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.kosher-badge img {
  height: 56px;
  width: auto;
  background: var(--white);
  padding: 4px 6px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.kosher-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.kosher-badge-text .k-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-sable-soft);
}
.kosher-badge-text .k-title {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
}

/* =========================================================================
   Box Deep-Dive (menu.html — Boxes panel expansion)
   ========================================================================= */
.box-deep {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.box-deep-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.box-deep-head .lede { margin-top: 18px; }

.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.box-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(31, 42, 56, 0.08);
  border-color: var(--line-gold);
}
.box-card.is-feature {
  border-color: var(--or-sable);
  box-shadow: 0 20px 40px rgba(176, 138, 62, 0.10);
}
.box-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--bleu-nuit);
  color: var(--or-sable-soft);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  font-weight: 500;
}
.box-card-media {
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--beige-pierre);
}
.box-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.box-card-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--bleu-nuit);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.box-card-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.box-card-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin: 0;
}
.box-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  margin: 0;
  line-height: 1.1;
}
.box-card-hebrew {
  font-family: var(--font-hebrew, 'Heebo', sans-serif);
  font-size: 0.95rem;
  color: var(--bleu-med);
  margin: 0;
  opacity: 0.85;
}

.box-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.box-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-primary);
}
.box-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--or-sable);
  border-radius: 50%;
  color: var(--or-sable);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  flex-shrink: 0;
}
.box-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.box-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.box-bullets li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--or-sable);
  font-size: 1.3rem;
  font-weight: 700;
}

.box-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.box-price small {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.box-price strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.box-price strong span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* OPTIONS */
.box-options {
  margin-top: 60px;
  padding: 34px 32px;
  background: var(--beige-pierre);
  border-radius: 6px;
  border: 1px solid var(--line-gold);
}
.box-options-title {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin: 0 0 22px;
  text-align: center;
}
.box-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.box-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.box-option svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--or-sable);
  margin-top: 2px;
}
.box-option strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  margin-bottom: 3px;
}
.box-option span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* HOW IT WORKS */
.box-how {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}
.box-how-head h2 { margin-top: 14px; }
.box-how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}
.box-step {
  position: relative;
  padding: 22px 22px 22px 22px;
  border-left: 1px solid var(--or-sable);
  background: linear-gradient(180deg, rgba(176,138,62,0.04), transparent);
}
.box-step-n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--or-sable);
  margin-bottom: 8px;
  font-weight: 500;
}
.box-step h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  margin: 0 0 8px;
}
.box-step p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.box-faq {
  margin-top: 80px;
}
.box-faq h2,
.box-faq h3.h-section {
  margin-bottom: 36px;
}
.box-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-width: 920px;
  margin: 0 auto;
}
.box-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  cursor: pointer;
}
.box-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  list-style: none;
  font-weight: 500;
  padding-right: 8px;
}
.box-faq-item summary::-webkit-details-marker { display: none; }
.box-faq-item summary::after {
  content: "+";
  color: var(--or-sable);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .25s var(--ease);
}
.box-faq-item[open] summary::after { content: "−"; }
.box-faq-item p {
  margin: 12px 0 4px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .box-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .box-options-grid { grid-template-columns: 1fr 1fr; }
  .box-how { grid-template-columns: 1fr; gap: 30px; }
  .box-how-grid { grid-template-columns: 1fr; }
  .box-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .box-options-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Event hub (events.html — grille des 4 types d'événement)
   ========================================================================= */
.event-hub { padding: 30px 0 80px; }
.event-hub-head { text-align: center; margin-bottom: 50px; }
.event-hub-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.event-hub-grid > :nth-child(1) { grid-row: 1 / span 2; }
.event-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.event-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--or-sable);
  box-shadow: 0 22px 50px rgba(31, 42, 56, 0.10);
}
.event-hub-card.is-feature {
  border-color: var(--or-sable);
  background: var(--beige-pierre);
}
.ehc-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.event-hub-card.is-feature .ehc-media { aspect-ratio: 5/6; }
.ehc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.event-hub-card:hover .ehc-media img { transform: scale(1.05); }
.ehc-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--bleu-nuit);
  color: var(--or-sable-soft);
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}
.ehc-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.event-hub-card.is-feature .ehc-body { padding: 32px 32px 32px; }
.ehc-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin: 0;
}
.ehc-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  margin: 0;
  line-height: 1.1;
}
.event-hub-card.is-feature h3 { font-size: 2rem; }
.ehc-body > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.event-hub-card.is-feature .ehc-body > p { font-size: 1rem; }
.ehc-cta {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ehc-cta .arrow { transition: transform .3s var(--ease); }
.event-hub-card:hover .ehc-cta .arrow { transform: translateX(6px); }

@media (max-width: 960px) {
  .event-hub-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .event-hub-grid > :nth-child(1) { grid-row: auto; grid-column: 1 / -1; }
  .event-hub-card.is-feature .ehc-media { aspect-ratio: 16/9; }
}
@media (max-width: 540px) {
  .event-hub-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Nav submenu (dropdown for Événements)
   ========================================================================= */
.has-submenu {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-link-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
}
.nav-link-parent.is-active { color: var(--or-sable); }
.nav-submenu a.is-active .nsm-title { color: var(--or-sable); }
.nav-caret {
  transition: transform .25s var(--ease);
  opacity: 0.7;
}
.has-submenu:hover .nav-caret,
.has-submenu.is-open .nav-caret { transform: rotate(180deg); }

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(31, 42, 56, 0.12);
  padding: 10px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 50;
  margin-top: 10px;
}
.has-submenu:hover .nav-submenu,
.has-submenu.is-open .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-submenu > a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 22px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background .15s var(--ease);
}
.nav-submenu > a:hover {
  background: var(--beige-pierre);
}
.nsm-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  letter-spacing: 0;
  text-transform: none;
}
.nsm-sub {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* On dark hero header (is-light): keep readable */
.site-header.is-light .nav-link-parent { color: var(--white); }
.site-header.is-light.is-scrolled .nav-link-parent { color: var(--bleu-nuit); }

/* Mobile: collapse submenu into list */
@media (max-width: 960px) {
  .has-submenu { display: block; width: 100%; }
  .nav-submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px;
    margin-top: 4px;
    min-width: 0;
    background: transparent;
  }
  .nav-submenu > a {
    padding: 8px 18px;
  }
  .nav-caret { display: none; }
}

/* =========================================================================
   Formats grid (events.html — Formats & capacités)
   ========================================================================= */
.formats-deep {
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.formats-head {
  text-align: center;
  margin-bottom: 50px;
}
.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer;
}
.format-card:hover {
  transform: translateY(-4px);
  border-color: var(--or-sable);
  box-shadow: 0 18px 40px rgba(31, 42, 56, 0.10);
}
.format-card.is-feature {
  border-color: var(--or-sable);
  background: var(--beige-pierre);
  box-shadow: 0 12px 30px rgba(176, 138, 62, 0.10);
}
.format-ribbon {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--bleu-nuit);
  color: var(--or-sable-soft);
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.format-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.format-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--or-sable);
  font-weight: 500;
  line-height: 1;
}
.format-pax {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.format-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  margin: 0 0 10px;
}
.format-card > p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.format-meta {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.format-meta small {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.format-meta strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.format-meta strong span {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.format-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--or-sable);
  font-family: var(--font-display);
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  transform: translateX(-6px);
}
.format-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 960px) {
  .formats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .formats-grid { grid-template-columns: 1fr; }
}

/* Make event-type articles (now <a>) look clickable */
.event-type {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.event-type::after {
  content: "Composer mon devis →";
  display: inline-block;
  margin-top: 16px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-sable);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.event-type:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   Order-mode landing (boutique — choix Formules / À la carte)
.order-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.order-mode-grid.is-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}
.order-mode-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.order-mode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(31, 42, 56, 0.12);
  border-color: var(--or-sable);
}
.omc-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.omc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.order-mode-card:hover .omc-media img { transform: scale(1.05); }
.omc-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bleu-nuit);
  color: var(--or-sable-soft);
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}
.omc-body {
  padding: 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.omc-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin: 0;
}
.omc-body h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  margin: 0;
  line-height: 1.05;
}
.omc-body > p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.omc-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.omc-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.omc-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--or-sable);
}
.omc-cta {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.omc-cta .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.order-mode-card:hover .omc-cta .arrow { transform: translateX(6px); }

@media (max-width: 900px) {
  .order-mode-grid { grid-template-columns: 1fr; }
  .omc-body { padding: 26px 26px; }
  .omc-body h2 { font-size: 1.6rem; }
}

/* =========================================================================
   Bespoke section (menu.html — sur mesure)
   ========================================================================= */
.bespoke-section { padding-top: 60px; border-top: 1px solid var(--line); }

.bespoke-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
}
.bespoke-quote h2 { margin-top: 16px; }
.bespoke-lede {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 28px 0 28px;
  max-width: 50ch;
}

.cheffe-quote {
  margin: 30px 0 20px;
  padding: 26px 28px 22px;
  background: var(--beige-pierre);
  border-left: 3px solid var(--or-sable);
  border-radius: 0 6px 6px 0;
  position: relative;
}
.cheffe-quote::before {
  content: "«";
  position: absolute;
  top: -8px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--or-sable);
  line-height: 1;
  opacity: 0.4;
}
.cheffe-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--bleu-nuit);
  margin: 0 0 14px;
}
.cheffe-quote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}
.cq-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.cq-meta {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.bespoke-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
}
.bespoke-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bespoke-media-cap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bcap-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--or-sable);
  font-weight: 500;
  line-height: 1;
}
.bcap-label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* SPECS GRID */
.bespoke-specs { margin-bottom: 100px; }
.bespoke-specs-head { text-align: center; margin-bottom: 50px; }
.bespoke-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bespoke-spec {
  padding: 30px 26px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.bespoke-spec:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}
.bespoke-spec svg {
  width: 36px;
  height: 36px;
  color: var(--or-sable);
  margin-bottom: 14px;
}
.bespoke-spec h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  margin: 0 0 8px;
}
.bespoke-spec p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* SIGNATURE */
.bespoke-signature { margin-bottom: 100px; }
.bespoke-signature-head { margin-bottom: 50px; }
.bespoke-signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bs-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bs-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.bs-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.bs-card:hover .bs-card-media img { transform: scale(1.05); }
.bs-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bleu-nuit);
  color: var(--or-sable-soft);
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.bs-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-card-eyebrow {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin: 0;
}
.bs-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--bleu-nuit);
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
}
.bs-card-body > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.bs-card-tags {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bs-card-tags li {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--beige-pierre);
  padding: 4px 10px;
  border-radius: 999px;
}

/* HOW IT WORKS */
.bespoke-how {
  background: var(--bleu-nuit);
  color: var(--white);
  padding: 70px 60px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.bespoke-how-head { text-align: center; margin-bottom: 50px; }
.bespoke-how-head h3 { color: var(--white); }
.bespoke-how-head .h-eyebrow { color: var(--or-sable-soft); }
.bespoke-how-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: bh;
  position: relative;
}
.bespoke-how-list::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,113,0.5), transparent);
  z-index: 0;
}
.bespoke-how-list li {
  position: relative;
  z-index: 1;
}
.bh-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--or-sable);
  background: var(--bleu-nuit);
  color: var(--or-sable);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.bespoke-how-list h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  margin: 0 0 8px;
}
.bespoke-how-list p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) {
  .bespoke-hero { grid-template-columns: 1fr; gap: 40px; margin-bottom: 70px; }
  .bespoke-specs-grid { grid-template-columns: 1fr 1fr; }
  .bespoke-signature-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .bespoke-how { padding: 50px 32px; }
  .bespoke-how-list { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .bespoke-how-list::before { display: none; }
}
@media (max-width: 540px) {
  .bespoke-specs-grid { grid-template-columns: 1fr; }
  .bespoke-how-list { grid-template-columns: 1fr; }
}

/* =========================================================================
   Menu Page
   ========================================================================= */
.menu-intro { padding-top: 60px; padding-bottom: 30px; text-align: center; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 40px 0 60px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.menu-tab {
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .3s var(--ease);
}
.menu-tab:hover { color: var(--bleu-nuit); }
.menu-tab.is-active {
  color: var(--bleu-nuit);
  border-bottom-color: var(--or-sable);
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeIn .5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.formule-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}
.formule-detail.flip { grid-template-columns: 1.1fr 1fr; }
.formule-detail.flip .formule-detail-media { order: 2; }
.formule-detail-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.formule-detail-media .placeholder-img { width: 100%; height: 100%; }
.formule-detail-body h2 {
  margin: 8px 0 8px;
}
.formule-detail-body .formule-hebrew { font-size: 1.05rem; margin-bottom: 22px; }
.formule-detail-body p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.8; }
.formule-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.formule-detail-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.formule-detail-list li::before {
  content: "✦";
  color: var(--or-sable);
  font-size: 10px;
  flex-shrink: 0;
}
.formule-detail-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.formule-detail-price .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.formule-detail-price .val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}

@media (max-width: 960px) {
  .formule-detail, .formule-detail.flip {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 60px;
  }
  .formule-detail.flip .formule-detail-media { order: 0; }
}

/* Personnalisé section */
.bespoke {
  background: var(--bleu-nuit);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px clamp(28px, 5vw, 72px);
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.bespoke::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(176,138,62,0.2), transparent 60%);
}
.bespoke .container { position: relative; }
.bespoke h2 { color: var(--white); margin-bottom: 18px; }
.bespoke .h-eyebrow { color: var(--or-sable-soft); }
.bespoke .h-eyebrow::before { background: var(--or-sable-soft); }
.bespoke p { color: rgba(255,255,255,0.82); max-width: 50ch; margin: 0 auto 30px; }

/* =========================================================================
   Events page
   ========================================================================= */
.event-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}
.event-hero-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.event-hero-media .placeholder-img { width: 100%; height: 100%; }
.event-hero h2 { margin: 10px 0 18px; }
.event-hero .formule-hebrew { font-size: 1.05rem; margin-bottom: 20px; }
.event-hero p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; }
.event-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.event-feature {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-primary);
}
.event-feature::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--or-sable);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .event-hero { grid-template-columns: 1fr; gap: 36px; }
}

.event-types {
  background: var(--bg-soft);
}
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-type {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.event-type:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
}
.event-type-icon {
  width: 44px;
  height: 44px;
  color: var(--or-sable);
  margin-bottom: 22px;
}
.event-type h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.event-type p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; margin: 0; }
@media (max-width: 960px) {
  .event-types-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* Processus 4 étapes */
.processus { text-align: center; }
.processus-head { margin-bottom: 70px; }
.processus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.processus-step {
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--or-sable);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.processus-step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 500;
}
.processus-step p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; line-height: 1.65; }
.processus-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--line-gold);
  z-index: 0;
}
.processus-step::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--bg-page);
  border: 1px solid var(--or-sable);
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 960px) {
  .processus-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .processus-grid::before { display: none; }
  .processus-step::before { display: none; }
}
@media (max-width: 540px) {
  .processus-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   About page
   ========================================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-media .placeholder-img { width: 100%; height: 100%; }
.story h2 { margin-bottom: 24px; }
.story p { color: var(--text-secondary); margin-bottom: 18px; line-height: 1.85; }
.story-signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--bleu-nuit);
  font-size: 1.05rem;
}
.story-signature .name {
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--or-sable);
  display: block;
  font-family: var(--font-body);
  margin-top: 6px;
}
@media (max-width: 960px) {
  .story { grid-template-columns: 1fr; gap: 36px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
  padding: 20px;
}
.value-icon {
  width: 38px;
  height: 38px;
  color: var(--or-sable);
  margin: 0 auto 18px;
}
.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 500;
}
.value-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

@media (max-width: 960px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

.kosher-banner {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: 50px 0;
  text-align: center;
}
.kosher-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.kosher-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid var(--or-sable);
  border-radius: var(--radius-full);
}
.kosher-badge svg { color: var(--or-sable); }
.kosher-badge .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  font-weight: 600;
}
.kosher-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bleu-nuit);
  max-width: 50ch;
}

/* Location */
.location {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.location-info h3 { font-size: 1.6rem; margin-bottom: 16px; }
.location-info p { color: var(--text-secondary); margin-bottom: 26px; }
.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.location-detail svg {
  color: var(--or-sable);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-detail .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.location-map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 960px) {
  .location { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================================
   Contact page
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  margin-top: 30px;
}
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-card {
  padding: 28px 28px 28px 28px;
  border-left: 1px solid var(--or-sable);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.contact-card .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or-sable);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.contact-card .val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.contact-card .sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 6px;
}
.contact-card a { color: var(--bleu-nuit); }
.contact-card a:hover { color: var(--or-sable); }

.hours-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.hours-row .day { color: var(--text-secondary); }
.hours-row .time { color: var(--bleu-nuit); font-weight: 500; }
.hours-row.closed .time { color: var(--text-muted); }
.hours-row.highlight { background: rgba(176,138,62,0.08); padding: 8px 12px; border-radius: var(--radius); border: none; }
.hours-row.highlight .day { color: var(--or-sable); font-weight: 600; }
.hours-row.highlight .time { color: var(--bleu-nuit); }

.contact-form {
  background: var(--white);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form .sub { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 28px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-secondary);
}
.field .req { color: var(--or-sable); }
.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--bleu-nuit);
  font-family: var(--font-body);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 48px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--or-sable);
  box-shadow: 0 0 0 4px rgba(176, 138, 62, 0.12);
}
.field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); line-height: 1.6; }
.field input:invalid:not(:placeholder-shown) { border-color: #c0392b; }
.field .err {
  font-size: 12px;
  color: #c0392b;
  display: none;
}
.field.has-error .err { display: block; }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  background: rgba(111, 119, 66, 0.08);
  border-left: 3px solid var(--vert-olive);
  padding: 20px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px;
}
.form-success.is-shown { display: block; }
.form-success strong { color: var(--vert-olive); display: block; margin-bottom: 4px; }
.form-success p { margin: 0; font-size: 0.92rem; color: var(--text-secondary); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-grid { grid-template-columns: 1fr; }
}

.social-block {
  background: var(--bg-soft);
  text-align: center;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--bleu-nuit);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}
.social-link:hover {
  border-color: var(--or-sable);
  color: var(--or-sable);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; }

/* =========================================================================
   BOUTIQUE — Vente en ligne
   ========================================================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}
.shop-main { min-width: 0; }
.shop-aside {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
}

/* Filter bar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.shop-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text-secondary);
  transition: all .25s var(--ease);
  cursor: pointer;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip:hover { border-color: var(--or-sable); color: var(--bleu-nuit); }
.chip.is-active {
  background: var(--bleu-nuit);
  color: var(--white);
  border-color: var(--bleu-nuit);
}
.chip .count {
  font-size: 10px;
  opacity: 0.6;
  font-weight: 600;
}
.shop-sort {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shop-sort select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 6px 8px;
  font-size: 12px;
  color: var(--bleu-nuit);
  font-weight: 500;
  cursor: pointer;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-gold);
}
.product-media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.product-media .placeholder-img { width: 100%; height: 100%; }
.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.badge {
  background: rgba(255,255,255,0.96);
  color: var(--bleu-nuit);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.badge.signature { background: var(--or-sable); color: var(--white); }
.badge.veg { background: rgba(111,119,66,0.16); color: var(--vert-olive); }
.badge.new { background: var(--bleu-med); color: var(--white); }

.product-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  line-height: 1.25;
  margin: 0;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  white-space: nowrap;
}
.product-hebrew {
  font-family: var(--font-hebrew);
  font-size: 0.88rem;
  color: var(--or-sable);
  direction: rtl;
  font-weight: 300;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.6;
  flex: 1;
}
.product-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.product-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.product-meta-item svg { color: var(--or-sable); }
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--bg-page);
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bleu-nuit);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: background .2s var(--ease);
}
.qty-btn:hover { background: var(--beige-pierre); }
.qty-btn:disabled { color: var(--text-muted); cursor: not-allowed; }
.qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--bleu-nuit);
}
.btn-add {
  flex: 1;
  padding: 11px 18px;
  background: var(--bleu-nuit);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  min-height: 40px;
  transition: background .2s var(--ease), transform .2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-add:hover { background: var(--bleu-med); }
.btn-add.is-added { background: var(--vert-olive); }
.btn-add svg { width: 14px; height: 14px; }

@media (max-width: 1180px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside {
    position: static;
    max-height: none;
    max-width: 540px;
    margin: 40px auto 0;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* CART */
.cart {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
}
.cart-head {
  padding: 22px 24px;
  background: var(--bleu-nuit);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-head h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--or-sable);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
}
.cart-empty {
  padding: 50px 28px;
  text-align: center;
  color: var(--text-muted);
}
.cart-empty svg { width: 40px; height: 40px; opacity: 0.4; margin: 0 auto 16px; color: var(--or-sable); }
.cart-empty p { margin: 0; font-size: 0.9rem; }
.cart-items {
  overflow-y: auto;
  padding: 8px 0;
  max-height: 360px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bleu-nuit);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 4px;
}
.cart-item-price {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.cart-item-controls .qty-control {
  background: var(--bg-page);
}
.cart-item-controls .qty-btn { width: 30px; height: 30px; font-size: 16px; }
.cart-item-subtotal {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.cart-item-remove {
  background: none;
  border: 0;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 6px;
}
.cart-item-remove:hover { color: #c0392b; }

.cart-options {
  padding: 18px 24px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-options .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.option-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.option-pill {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--bleu-nuit);
  cursor: pointer;
  text-align: center;
  transition: all .2s var(--ease);
}
.option-pill:hover { border-color: var(--or-sable); }
.option-pill.is-active {
  background: var(--bleu-nuit);
  color: var(--white);
  border-color: var(--bleu-nuit);
}
.cart-options input[type="date"] {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--bleu-nuit);
  width: 100%;
  min-height: 40px;
}
.cart-options input:focus {
  outline: none;
  border-color: var(--or-sable);
}

.cart-totals {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}
.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.totals-row.total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bleu-nuit);
  font-weight: 500;
}
.cart-checkout {
  padding: 20px 24px 24px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.btn-checkout {
  display: flex;
  width: 100%;
  background: #25D366;
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  transition: all .25s var(--ease);
}
.btn-checkout:hover {
  background: #1FB957;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.32);
}
.btn-checkout:disabled {
  background: var(--line);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cart-fineprint {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Mobile cart sheet */
.cart-mobile-trigger {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  background: var(--bleu-nuit);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-full);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.cart-mobile-trigger .lbl-count {
  background: var(--or-sable);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.cart-mobile-trigger .lbl-total {
  font-family: var(--font-display);
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .cart-mobile-trigger.is-shown { display: flex; }
  .shop-aside.is-mobile-open {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bleu-nuit);
    max-width: none;
    margin: 0;
    padding: 14px;
    overflow-y: auto;
  }
  .cart-mobile-close {
    display: flex !important;
  }
}
.cart-mobile-close {
  display: none;
  background: none;
  color: var(--white);
  font-size: 20px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

/* Catégorie section break */
.shop-cat-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--bleu-nuit);
  margin: 50px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-gold);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.shop-cat-title:first-of-type { margin-top: 0; }
.shop-cat-title .cat-hebrew {
  font-family: var(--font-hebrew);
  font-size: 1rem;
  color: var(--or-sable);
  font-weight: 300;
  direction: rtl;
}

/* Shop banner */
.shop-banner {
  background: var(--bleu-nuit);
  color: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.shop-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(176,138,62,0.2), transparent 60%);
}
.shop-banner > * { position: relative; }
.shop-banner svg { color: var(--or-sable); flex-shrink: 0; }
.shop-banner .b-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.shop-banner .b-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* =========================================================================
   Reveal animations
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

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

/* =========================================================================
   Menu page — Midi / Séoudas / Suppléments / Sub-events
   ========================================================================= */

/* Midi formules */
.midi-formules {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0 22px;
}
.midi-formule {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.midi-formule:hover {
  border-color: var(--or-sable-soft);
  transform: translateY(-2px);
}
.midi-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--or-sable);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.midi-formule h4 {
  font-size: 17px;
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 500;
}
.midi-formule p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.midi-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vert-olive);
  background: rgba(111, 119, 66, 0.08);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.midi-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 24px;
}
.midi-channels strong {
  color: var(--bleu-nuit);
  font-weight: 600;
}
@media (max-width: 540px) {
  .midi-formule {
    grid-template-columns: auto 1fr;
    gap: 12px 14px;
  }
  .midi-tag { grid-column: 1 / -1; justify-self: start; }
}

/* Box grid 2-col variant */
.box-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .box-grid-2 { grid-template-columns: 1fr !important; }
}

/* Hatane offer banner */
.hatane-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(176, 138, 62, 0.10), rgba(201, 169, 113, 0.06));
  border: 1px solid var(--line-gold);
  border-left: 4px solid var(--or-sable);
  border-radius: var(--radius);
  margin: 40px 0 56px;
}
.hatane-offer-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or-sable);
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-gold);
  white-space: nowrap;
}
.hatane-offer p {
  margin: 0;
  font-size: 14.5px;
  color: var(--bleu-nuit);
  flex: 1 1 320px;
}

/* Séoudas */
.seouda-head,
.suppl-head,
.events-sub-head {
  text-align: center;
  margin: 64px 0 32px;
}
.seouda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .seouda-grid { grid-template-columns: 1fr; }
}
.seouda-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.seouda-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.seouda-card.is-feature {
  border-color: var(--or-sable-soft);
  background: linear-gradient(180deg, var(--white), #FBF7EF);
}
.seouda-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--or-sable);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(176, 138, 62, 0.35);
}
.seouda-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin-bottom: 8px;
}
.seouda-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--bleu-nuit);
}
.seouda-card-head p[lang="he"] {
  font-family: var(--font-hebrew);
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}
.seouda-prices {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.seouda-price {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.seouda-price small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.seouda-price strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--bleu-nuit);
  letter-spacing: -0.02em;
}
.seouda-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.seouda-list li {
  padding-left: 18px;
  position: relative;
}
.seouda-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -4px;
  color: var(--or-sable);
  font-size: 22px;
  font-weight: 700;
}
.seouda-list strong {
  color: var(--bleu-nuit);
  font-weight: 600;
}

/* Suppléments */
.suppl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .suppl-grid { grid-template-columns: 1fr; }
}
.suppl-col {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.suppl-col h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--bleu-nuit);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.suppl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.suppl-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.suppl-price {
  font-weight: 600;
  color: var(--or-sable);
  font-family: var(--font-body);
  white-space: nowrap;
}

/* Sub-events */
.events-sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) { .events-sub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .events-sub-grid { grid-template-columns: 1fr; } }
.events-sub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
}
.events-sub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.events-sub-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.events-sub-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.events-sub-card:hover .events-sub-media img { transform: scale(1.05); }
.events-sub-body { padding: 20px 22px 22px; }
.events-sub-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or-sable);
  margin: 0 0 6px;
}
.events-sub-body h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--bleu-nuit);
  line-height: 1.25;
}
.events-sub-body p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.5;
}
.events-sub-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--or-sable);
  letter-spacing: 0.02em;
  transition: gap .2s var(--ease);
}
.events-sub-card:hover .events-sub-cta { color: var(--or-sable); }

/* =========================================================================
   Shop catalog — extras (sub-title under category, sauce select)
   ========================================================================= */
.shop-cat-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: -8px 0 18px;
  font-family: var(--font-body);
}
.product-sauce {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 10px;
}
.product-sauce > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.product-sauce select {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--bleu-nuit);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' stroke='%232D3B4F' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .2s var(--ease);
}
.product-sauce select:focus {
  border-color: var(--or-sable);
  outline: none;
}

/* =========================================================================
   Nav cart badge (header)
   ========================================================================= */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  color: var(--bleu-nuit);
  transition: background .2s var(--ease), color .2s var(--ease);
  margin-left: 4px;
}
.nav-cart:hover { background: var(--beige-pierre); color: var(--bleu-nuit); }
.nav-cart::after { display: none; }
.nav-cart svg { width: 20px; height: 20px; }
.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--or-sable);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: scale(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
  box-shadow: 0 2px 6px rgba(176, 138, 62, 0.4);
}
.nav-cart-count.is-shown { transform: scale(1); }
.nav-cart-count.is-bump { animation: cart-bump .4s var(--ease); }
@keyframes cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.site-header.is-light:not(.is-scrolled) .nav-cart { color: var(--white); }
.site-header.is-light:not(.is-scrolled) .nav-cart:hover { background: rgba(255,255,255,0.14); color: var(--white); }
@media (max-width: 960px) {
  .nav-cart {
    width: auto;
    height: auto;
    padding: 12px 0;
    border-radius: 0;
    justify-content: flex-start;
    gap: 12px;
    color: var(--bleu-nuit) !important;
    background: transparent !important;
  }
  .nav-cart::before {
    content: "Mon panier";
    font-size: 15px;
    font-weight: 500;
  }
  .nav-cart svg { order: -1; }
  .nav-cart-count {
    position: static;
    transform: scale(1);
    margin-left: auto;
  }
}

/* =========================================================================
   Utilities
   ========================================================================= */
.center { text-align: center; }
.muted { color: var(--text-muted); }
.gold { color: var(--or-sable); }
.olive { color: var(--vert-olive); }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
