/*
Theme Name: Boucherie d'Isle
Theme URI:
Author: Samir
Author URI:
Description: Thème premium sur mesure pour la Boucherie d'Isle — boucherie halal artisanale. Direction artistique cinématographique, photo-forward, typographie éditoriale.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boucherie-disle
Tags: custom-menu, featured-images, translation-ready, theme-options
*/

/* ==========================================================================
   TOKENS
   ========================================================================== */
:root {
  /* Bases */
  --bg:              #0B0B0B;
  --surface:         #141211;
  --surface-2:       #1C1916;
  --surface-3:       #24201C;

  /* Cream */
  --cream:           #F5F0E6;
  --cream-soft:      #FAF6EC;
  --cream-muted:     #E8DFCF;

  /* Accents */
  --oxblood:         #6B1A1A;
  --oxblood-deep:    #4A0F0F;
  --oxblood-bright:  #8E2727;
  --gold:            #B8935A;
  --gold-light:      #D4B98F;
  --gold-muted:      #8A6E42;

  /* Neutrals */
  --stone-950:       #0B0B0B;
  --stone-900:       #141211;
  --stone-800:       #1C1916;
  --stone-700:       #2A2622;
  --stone-600:       #3A342E;
  --stone-500:       #5A544C;
  --stone-400:       #8B8178;
  --stone-300:       #B8AE9F;
  --stone-200:       #E8DFCF;
  --stone-100:       #F5F0E6;
  --stone-50:        #FAF6EC;

  /* Text */
  --text-dark:       #F5F0E6;
  --text-dark-muted: #B8AE9F;
  --text-dark-soft:  #8B8178;
  --text-light:      #141211;
  --text-light-muted:#5A544C;
  --text-light-soft: #8B8178;

  /* Fonts */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-y:   clamp(4.5rem, 10vw, 9rem);
  --container:   1280px;
  --container-wide: 1440px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 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);
  color: var(--text-light);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}
button { font-family: inherit; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}
h4 {
  font-size: 1.15rem;
  font-weight: 500;
}
p {
  margin: 0 0 1em;
  line-height: 1.7;
}
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-light-muted);
  max-width: 58ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
}
.eyebrow.no-line { padding-left: 0; }
.eyebrow.no-line::before { display: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { max-width: var(--container-wide); }

.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;
}

section { padding: var(--section-y) 0; }

/* Dark sections */
.dark {
  background: var(--bg);
  color: var(--text-dark);
  position: relative;
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--cream); }
.dark .lead { color: var(--text-dark-muted); }
.dark p { color: var(--text-dark-muted); }

/* Subtle grain texture */
.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.dark > * { position: relative; z-index: 1; }

/* ==========================================================================
   BOUTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '→';
  display: inline-block;
  transition: transform .35s var(--ease);
  font-weight: 300;
}
.btn:hover::after { transform: translateX(4px); }

.btn-primary {
  background: var(--oxblood);
  color: var(--cream);
}
.btn-primary:hover { background: var(--oxblood-deep); color: var(--cream); }

.btn-gold {
  background: var(--gold);
  color: var(--stone-950);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border-color: currentColor;
}
.btn-ghost:hover { background: var(--text-light); color: var(--cream); }

.dark .btn-ghost,
.hero .btn-ghost,
.page-hero .btn-ghost {
  color: var(--cream);
  border-color: rgba(245,240,230,.45);
}
.dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover {
  background: var(--cream);
  color: var(--stone-950);
  border-color: var(--cream);
}

.btn-plain {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  gap: .5rem;
}
.btn-plain:hover { color: var(--gold); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ea952; color: #fff; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-transparent {
  background: linear-gradient(to bottom, rgba(11,11,11,.55), rgba(11,11,11,0));
}
.site-header.is-scrolled {
  background: rgba(11,11,11,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(245,240,230,.08);
}

/* Quand le menu mobile est ouvert, on désactive le backdrop-filter :
   sinon il piège le .site-nav (position:fixed) dans la stacking context du header,
   ce qui fait déborder le contenu de page sous le menu. */
body.menu-open .site-header,
body.menu-open .site-header.is-scrolled {
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.menu-open {
  overflow: hidden;
}
.header-inner {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 1.1rem clamp(1.5rem, 3vw, 3.25rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.site-logo      { grid-column: 1; justify-self: start; }
.site-nav       { grid-column: 2; justify-self: center; }
.menu-toggle    { grid-column: 3; justify-self: end; display: none; }
.header-actions { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 0.75rem; }
.header-social  { display: flex; gap: .9rem; align-items: center; }

.header-social {
  display: flex;
  gap: .9rem;
  align-items: center;
}
.header-social a {
  color: var(--cream);
  opacity: .85;
  transition: opacity .3s var(--ease), color .3s var(--ease);
  display: inline-flex;
  line-height: 0;
}
.header-social a:hover { opacity: 1; color: var(--gold-light); }
@media (max-width: 900px) {
  .header-social { display: none; }
  .menu-toggle { display: flex; }
  .header-actions { gap: 0.5rem; }
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  color: var(--cream);
  font-variation-settings: "SOFT" 30;
  flex-shrink: 0;
}
.site-logo-main { font-size: 1em; white-space: nowrap; }
.site-logo-main .logo-blanc { color: var(--cream); font-weight: 300; }
.site-logo-main .logo-rouge { color: var(--gold); font-style: italic; font-weight: 400; margin-left: .15em; }
.site-logo-sub {
  font-family: var(--font-body);
  font-size: .52rem;
  letter-spacing: .3em;
  color: var(--text-dark-soft);
  text-transform: uppercase;
  margin-top: .25rem;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .site-logo-sub { display: none; }
}

.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.65rem; align-items: center;
}
.site-nav a {
  color: var(--cream);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 0;
  position: relative;
  opacity: .85;
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a { opacity: 1; color: var(--gold-light); }
.site-nav a:hover::after,
.site-nav .current-menu-item > a::after { width: 100%; }

.site-nav .cta-nav a {
  background: var(--gold);
  color: var(--stone-950);
  padding: .7rem 1.25rem;
  opacity: 1;
}
.site-nav .cta-nav a::after { display: none; }
.site-nav .cta-nav a:hover { background: var(--gold-light); color: var(--stone-950); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  padding: .5rem;
  z-index: 101;
  position: relative;
}
.menu-toggle-bar {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  margin: 7px 0;
  transition: all .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    padding: 6rem 2rem 2rem;
    display: none;
    flex-direction: column;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }
  .site-nav li { width: 100%; border-bottom: 1px solid rgba(245,240,230,.08); }
  .site-nav a {
    display: block;
    padding: 1.35rem 0;
    font-size: 1rem;
    font-family: var(--font-display);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 300;
  }
  .site-nav .cta-nav {
    margin-top: 2rem;
    border-bottom: 0;
  }
  .site-nav .cta-nav a {
    padding: 1rem 1.5rem;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 6rem;
  color: var(--cream);
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s var(--ease);
  filter: brightness(.7) contrast(1.05);
}
.hero.is-ready .hero-bg img { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,11,.4) 0%, rgba(11,11,11,0) 30%, rgba(11,11,11,.85) 100%),
    linear-gradient(90deg, rgba(11,11,11,.6) 0%, rgba(11,11,11,0) 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: .95;
  margin-bottom: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: rgba(245,240,230,.85);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  bottom: 2.5rem; right: var(--gutter);
  z-index: 2;
  text-align: right;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-dark-soft);
  line-height: 2;
}
.hero-meta span { display: block; }
.hero-meta strong { color: var(--cream); font-weight: 500; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dark-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite var(--ease);
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.5); transform-origin: top; opacity: .5; }
  50%      { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}

@media (max-width: 600px) {
  .hero-meta { display: none; }
  .hero-scroll { display: none; }
}

/* ==========================================================================
   MANIFESTO (philosophy block)
   ========================================================================== */
.manifesto {
  background: var(--cream);
  padding: var(--section-y) 0;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--stone-900);
}
.manifesto-quote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  line-height: .5;
  color: var(--gold);
  margin-bottom: 1rem;
}
.manifesto-text p + p { margin-top: 1.25rem; }
.manifesto-sign {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone-500);
}
.manifesto-sign::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PILLARS (engagements)
   ========================================================================== */
.pillars {
  background: var(--bg);
  color: var(--cream);
  position: relative;
}
.pillars-head {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 720px;
  margin-inline: auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 3rem 2.25rem;
  border-right: 1px solid rgba(245,240,230,.08);
  position: relative;
  transition: background .4s var(--ease);
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: rgba(245,240,230,.02); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2rem;
  display: block;
  font-style: italic;
}
.pillar h3 {
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: 1.65rem;
}
.pillar p {
  color: var(--text-dark-muted);
  line-height: 1.7;
  font-size: .95rem;
  margin: 0;
}
.pillar-sep {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid rgba(245,240,230,.08); }
  .pillar:last-child { border-bottom: 0; }
}

/* ==========================================================================
   GAMMES (grille photo éditoriale)
   ========================================================================== */
.gammes {
  background: var(--cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.gammes-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.gammes-head > div { max-width: 620px; }
.gammes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 1fr;
}
.gamme-tile {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  background: var(--stone-900);
  color: var(--cream);
}

.gamme-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
  filter: brightness(.82);
}
.gamme-tile:hover img {
  transform: scale(1.06);
  filter: brightness(.7);
}
.gamme-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,.85) 0%, rgba(11,11,11,.15) 50%, rgba(11,11,11,0) 100%);
  z-index: 1;
}
.gamme-tile-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--cream);
}
.gamme-tile-meta {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.gamme-tile-meta::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}
.gamme-tile h3 {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
}
.gamme-tile-count {
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--text-dark-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s var(--ease);
}
.gamme-tile:hover .gamme-tile-count {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .gammes-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .gamme-tile-body { padding: 1.25rem; }
}
@media (max-width: 500px) {
  .gammes-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FEATURE BANNER (hygiène sur homepage)
   ========================================================================== */
.feature-banner {
  background: var(--bg);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
}
.feature-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.feature-banner-img {
  position: relative;
  overflow: hidden;
}
.feature-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
}
.feature-banner-body {
  padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.feature-banner h2 { color: var(--cream); }
.feature-banner p { color: var(--text-dark-muted); }
.feature-banner ul {
  list-style: none; padding: 0; margin: 2rem 0;
}
.feature-banner ul li {
  padding: 1rem 0;
  border-top: 1px solid rgba(245,240,230,.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  color: var(--cream);
}
.feature-banner ul li:last-child { border-bottom: 1px solid rgba(245,240,230,.08); }
.feature-banner ul li::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .feature-banner-grid { grid-template-columns: 1fr; }
  .feature-banner-img { min-height: 50vh; }
}

/* ==========================================================================
   VISIT (horaires + adresse)
   ========================================================================== */
.visit {
  background: var(--cream);
  padding: var(--section-y) 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

.visit h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
}
.horaires-table tr {
  border-top: 1px solid var(--cream-muted);
}
.horaires-table tr:last-child { border-bottom: 1px solid var(--cream-muted); }
.horaires-table td {
  padding: 1.1rem 0;
  font-size: 1rem;
}
.horaires-table td:first-child {
  font-weight: 500;
  color: var(--stone-900);
  width: 40%;
}
.horaires-table td:last-child {
  color: var(--stone-500);
  text-align: right;
  font-feature-settings: "tnum";
}
.horaires-table tr.today td {
  color: var(--oxblood);
  font-weight: 500;
}
.horaires-table tr.today td:last-child {
  color: var(--oxblood);
}
.horaires-table tr.today td:first-child::after {
  content: '— Aujourd\'hui';
  display: inline-block;
  margin-left: .75rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.address-block {
  padding-left: 0;
}
.address-block .eyebrow { margin-top: .5rem; }
.address-block address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--stone-900);
  margin: 0 0 1.5rem;
  white-space: pre-line;
}
.address-contact { margin: 1.5rem 0; }
.address-contact a {
  display: block;
  font-size: 1.05rem;
  color: var(--stone-900);
  padding: .4rem 0;
}
.address-contact a strong {
  font-family: var(--font-body);
  font-weight: 500;
  display: inline-block;
  width: 120px;
  color: var(--stone-400);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.address-contact a:hover { color: var(--oxblood); }

/* ==========================================================================
   PAGE HERO (pages internes)
   ========================================================================== */
.page-hero {
  background: var(--bg);
  color: var(--cream);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: .22;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,.7) 0%, rgba(11,11,11,.95) 100%);
  z-index: 1;
}
.page-hero > .container {
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-dark-soft);
  margin-bottom: 2rem;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  color: var(--cream);
  margin: 0 0 1.5rem;
  max-width: 14ch;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-hero .lead {
  color: var(--text-dark-muted);
  max-width: 58ch;
}

/* ==========================================================================
   HYGIÈNE — engagements + certifications
   ========================================================================== */
.engagements {
  background: var(--cream);
}
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-muted);
}
.engagement {
  --mx: 50%;
  --my: 50%;
  background: var(--cream);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease), transform .5s var(--ease), box-shadow .6s var(--ease);
  isolation: isolate;
}
.engagement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(184,147,90,.22), transparent 55%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.engagement:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -18px rgba(11,11,11,.18);
  z-index: 2;
}
.engagement:hover::before { opacity: 1; }
.engagement > * { position: relative; z-index: 1; }

.engagement-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  transition: color .4s var(--ease), letter-spacing .4s var(--ease);
}
.engagement:hover .engagement-num {
  color: var(--oxblood);
  letter-spacing: .01em;
}
.engagement-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  transition: width .5s var(--ease), background .4s var(--ease);
}
.engagement:hover .engagement-line {
  width: 4rem;
  background: var(--oxblood);
}
.engagement h3 {
  color: var(--stone-900);
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 1.5rem;
  transition: color .3s var(--ease);
  perspective: 900px;
}
.engagement:hover h3 { color: var(--oxblood-deep); }
.engagement p {
  color: var(--stone-500);
  margin: 0;
  font-size: .98rem;
  line-height: 1.7;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */

/* Numéro : scale + fade */
.engagement-reveal .engagement-num {
  opacity: 0;
  transform: scale(.85) translateY(8px);
  transition: opacity .8s var(--ease), transform .9s var(--ease),
              color .4s var(--ease), letter-spacing .4s var(--ease);
}
.engagement-reveal.is-visible .engagement-num {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Ligne : draw gauche-droite */
.engagement-reveal .engagement-line {
  width: 0;
  transition: width .8s cubic-bezier(.77,0,.175,1), background .4s var(--ease);
}
.engagement-reveal.is-visible .engagement-line {
  width: 2rem;
}

/* Titre : animation lettre par lettre via .char (JS inject) */
.engagement h3 .word {
  display: inline-block;
}
.engagement h3 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.7em) rotateX(-80deg);
  transform-origin: 50% 100%;
  transition: opacity .7s var(--ease), transform .9s var(--ease);
  will-change: transform, opacity;
}
.engagement-reveal.is-visible h3 .char {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Paragraphe : fade + slide */
.engagement-reveal p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.engagement-reveal.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DÉLAIS STAGGER (par carte) ===== */
.engagement-reveal .engagement-num  { transition-delay: .1s; }
.engagement-reveal .engagement-line { transition-delay: .75s; }
.engagement-reveal p                { transition-delay: 1.1s; }

.engagement-reveal.stagger-1 .engagement-num  { transition-delay: .25s; }
.engagement-reveal.stagger-1 .engagement-line { transition-delay: .9s; }
.engagement-reveal.stagger-1 p                { transition-delay: 1.25s; }

.engagement-reveal.stagger-2 .engagement-num  { transition-delay: .4s; }
.engagement-reveal.stagger-2 .engagement-line { transition-delay: 1.05s; }
.engagement-reveal.stagger-2 p                { transition-delay: 1.4s; }

.engagement-reveal.stagger-3 .engagement-num  { transition-delay: .55s; }
.engagement-reveal.stagger-3 .engagement-line { transition-delay: 1.2s; }
.engagement-reveal.stagger-3 p                { transition-delay: 1.55s; }

/* Respecter prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .engagement-reveal .engagement-num,
  .engagement-reveal .engagement-line,
  .engagement-reveal p,
  .engagement h3 .char {
    opacity: 1 !important;
    transform: none !important;
    width: auto;
  }
  .engagement-reveal .engagement-line { width: 2rem !important; }
}
@media (max-width: 700px) {
  .engagements-grid { grid-template-columns: 1fr; }
}

.certifications {
  background: var(--bg);
  color: var(--cream);
}
.cert-list {
  display: grid;
  gap: 0;
  margin-top: 3rem;
}
.cert-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(245,240,230,.1);
}
.cert-item:last-child { border-bottom: 1px solid rgba(245,240,230,.1); }
.cert-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
}
.cert-content h4 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 .5rem;
  letter-spacing: -0.01em;
}
.cert-content p {
  color: var(--text-dark-muted);
  margin: 0;
  font-size: .92rem;
}
.cert-status {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border: 1px solid;
  white-space: nowrap;
}
.cert-status.valid   { border-color: rgba(37,211,102,.4); color: #6fd797; }
.cert-status.pending { border-color: rgba(184,147,90,.4); color: var(--gold-light); }
@media (max-width: 700px) {
  .cert-item { grid-template-columns: 1fr; gap: .5rem; }
  .cert-status { justify-self: start; }
}

.protocoles-gallery {
  background: var(--cream);
}
.protocoles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.protocole-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.protocole-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  filter: grayscale(20%);
}
.protocole-img:hover img { transform: scale(1.05); filter: grayscale(0); }
.protocole-img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 1rem; left: 1rem;
  color: var(--cream);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
@media (max-width: 900px) { .protocoles-grid { grid-template-columns: 1fr 1fr; } }

.big-quote {
  background: var(--bg);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.big-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.big-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 2rem;
}
.big-quote blockquote::before { content: '"'; color: var(--gold); }
.big-quote blockquote::after  { content: '"'; color: var(--gold); }
.big-quote cite {
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}

/* ==========================================================================
   VIANDES — catalog premium
   ========================================================================== */
.catalog-section {
  padding: var(--section-y) 0;
}

.catalog-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--cream-muted);
}
.catalog-head .catalog-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.catalog-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}
.catalog-badge {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: .6rem 1rem;
  background: var(--stone-900);
  color: var(--gold-light);
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.produit {
  background: transparent;
  transition: transform .4s var(--ease);
}
.produit-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--stone-900);
  position: relative;
  margin-bottom: 1.25rem;
}
.produit-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.produit:hover .produit-img img { transform: scale(1.05); }
.produit-body { padding: 0 .25rem; }
.produit-origine {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: .5rem;
  font-weight: 500;
}
.produit h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin: 0 0 .6rem;
  color: var(--stone-900);
}
.produit-conseil {
  font-size: .92rem;
  color: var(--stone-500);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) { .produits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .produits-grid { grid-template-columns: 1fr; } }

.preparations-showcase {
  background: var(--bg);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.preparations-showcase .produit h3 { color: var(--cream); }
.preparations-showcase .produit-conseil { color: var(--text-dark-muted); }
.preparations-showcase .produit-origine { color: var(--gold-light); }
.preparations-showcase .catalog-head { border-bottom-color: rgba(245,240,230,.12); }
.preparations-showcase .catalog-head h2 { color: var(--cream); }

.preparations-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: 5rem;
}
.preparations-intro img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
@media (max-width: 900px) { .preparations-intro { grid-template-columns: 1fr; } }

.cta-strip {
  background: var(--cream-soft);
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  text-align: center;
  border-top: 1px solid var(--cream-muted);
}
.cta-strip h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.cta-strip p {
  max-width: 58ch;
  margin: 0 auto 2rem;
  color: var(--stone-500);
}
.cta-strip-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   À PROPOS
   ========================================================================== */
.about-intro {
  background: var(--cream);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) { .about-intro-grid { grid-template-columns: 1fr; } }
.about-portrait {
  position: relative;
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-text h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.about-text p + p { margin-top: 1.25rem; }

.values {
  background: var(--bg);
  color: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(245,240,230,.08);
}
.value:last-child { border-right: 0; }
.value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2rem;
  display: block;
}
.value h3 {
  color: var(--cream);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: .85rem;
}
.value p {
  color: var(--text-dark-muted);
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value { border-bottom: 1px solid rgba(245,240,230,.08); }
  .value:nth-child(2n) { border-right: 0; }
}
@media (max-width: 500px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: 0; }
}

/* ==========================================================================
   STATS (repères chiffrés)
   ========================================================================== */
.stats {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-muted);
  border-bottom: 1px solid var(--cream-muted);
}
.stat {
  padding: clamp(2rem, 4vw, 3.5rem) 1.5rem;
  text-align: center;
  border-right: 1px solid var(--cream-muted);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--stone-900);
  margin-bottom: .75rem;
  letter-spacing: -0.03em;
}
.stat-num em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--stone-500);
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--cream-muted); }
}

/* ==========================================================================
   TIMELINE (parcours)
   ========================================================================== */
.timeline {
  background: var(--cream);
}
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .timeline-grid { grid-template-columns: 1fr; } }

.timeline-list {
  position: relative;
  padding-left: 2.5rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 0; top: .8rem; bottom: 2rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--cream-muted) 90%, transparent);
}
.milestone {
  position: relative;
  padding-bottom: 2.5rem;
}
.milestone:last-child { padding-bottom: 0; }
.milestone::before {
  content: '';
  position: absolute;
  left: -2.8rem;
  top: .85rem;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--cream);
}
.milestone-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: .4rem;
  display: block;
  letter-spacing: -0.01em;
}
.milestone h3 {
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  color: var(--stone-900);
  font-weight: 400;
}
.milestone p {
  color: var(--stone-500);
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
}

/* ==========================================================================
   DIFFERENTIATORS (ce qui nous démarque)
   ========================================================================== */
.differentiators {
  background: var(--cream-soft);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } }
.diff {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.diff:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11,11,11,.08);
}
.diff-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
  font-weight: 300;
}
.diff h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--stone-900);
}
.diff p {
  margin: 0;
  color: var(--stone-500);
  font-size: .95rem;
  line-height: 1.65;
}

/* ==========================================================================
   ABOUT GALLERY
   ========================================================================== */
.about-gallery {
  background: var(--bg);
  padding: var(--section-y) 0;
  color: var(--cream);
}
.about-gallery .eyebrow { color: var(--gold); }
.about-gallery h2 { color: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: clamp(400px, 70vh, 680px);
  margin-top: 3rem;
}
.gallery-img {
  overflow: hidden;
  background: var(--stone-900);
  position: relative;
}
.gallery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.gallery-img:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-img.big { grid-row: span 2; }
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: auto;
  }
  .gallery-img.big { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .gallery-img:not(.big) { aspect-ratio: 4/3; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 2rem; }
.contact-info-list {
  list-style: none; padding: 0; margin: 0;
}
.contact-info-list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-muted);
}
.contact-info-list li:last-child { border-bottom: 1px solid var(--cream-muted); }
.contact-info-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: .35rem;
  display: block;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--stone-900);
  line-height: 1.4;
  white-space: pre-line;
}
.contact-info-value a:hover { color: var(--oxblood); }

.contact-actions {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-form {
  background: var(--bg);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.contact-form h2 {
  color: var(--cream);
  margin-bottom: .5rem;
}
.contact-form p.form-intro {
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
  font-size: .95rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-dark-soft);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,240,230,.2);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  transition: border-color .3s var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dark-soft); }
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-form .btn {
  width: 100%;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  margin-top: 1rem;
}

.form-message {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  border-left: 2px solid;
}
.form-message.success { background: rgba(37,211,102,.08); border-color: #25D366; color: #7FE4A5; }
.form-message.error   { background: rgba(160,32,32,.15); border-color: var(--oxblood-bright); color: #E89B9B; }

.map-wrapper {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--stone-900);
  filter: grayscale(30%) contrast(1.05);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

.event-box {
  background: var(--stone-900);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem);
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.event-box h3 {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 .75rem;
  font-weight: 300;
}
.event-box p { color: var(--text-dark-muted); margin: 0; max-width: 55ch; }
@media (max-width: 700px) { .event-box { grid-template-columns: 1fr; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg);
  color: var(--cream);
  padding: 5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  height: 1px;
  background: rgba(245,240,230,.1);
}
.footer-top {
  text-align: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,240,230,.08);
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.footer-brand em {
  font-style: italic;
  color: var(--gold);
}
.footer-tagline {
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-dark-soft);
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .85rem; }
.site-footer a { color: var(--text-dark-muted); font-size: .95rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer p { color: var(--text-dark-muted); font-size: .95rem; margin: 0; line-height: 1.7; white-space: pre-line; }

.footer-social {
  display: flex; gap: .75rem; margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,240,230,.15);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--stone-950);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245,240,230,.08);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dark-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom .footer-credit {
  color: var(--text-dark-soft);
}
.footer-bottom .footer-credit strong {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .12em;
}
@media (max-width: 600px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; left: 1.75rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35), 0 4px 12px rgba(0,0,0,.2);
  z-index: 90;
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #25D366;
  animation: bdPulse 2.4s infinite var(--ease);
  opacity: 0;
}
@keyframes bdPulse {
  0%   { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   REVEAL (scroll animations)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ==========================================================================
   UTILS
   ========================================================================== */
.text-center { text-align: center; }
.visually-hidden { position: absolute; left: -9999px; }

/* Generic page */
.page-default .entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  font-size: 1.05rem;
}
.page-default h2, .page-default h3 { margin-top: 2.5rem; }

/* ==========================================================================
   VIANDES D'EXCEPTION — cellier (grille pleine image)
   ========================================================================== */
.cellier-section { padding: var(--section-y) 0; }

.cellier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 700px) { .cellier-grid { grid-template-columns: 1fr; } }

.cellier-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--stone-900);
}
.cellier-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.cellier-card:hover img { transform: scale(1.04); }
.cellier-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0) 35%, rgba(11,11,11,.92) 100%);
  pointer-events: none;
}
.cellier-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 2;
}
.cellier-card-origin {
  display: block;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: .6rem;
}
.cellier-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  margin: 0 0 .55rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
}
.cellier-card p {
  color: rgba(245, 240, 230, .75);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0;
  max-width: 36ch;
}

/* Mode "à venir" — overlay transparent sur la grille */
.cellier-section.is-coming-soon { position: relative; }
.cellier-section.is-coming-soon .container { position: relative; }
.cellier-section.is-coming-soon .cellier-grid {
  filter: blur(2px) saturate(.8);
  pointer-events: none;
  user-select: none;
}
.cellier-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(11,11,11,.35) 0%, rgba(11,11,11,.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 2rem;
}
.cellier-overlay .eyebrow {
  color: var(--gold-light);
  text-shadow: 0 2px 14px rgba(0,0,0,.85);
  margin-bottom: .85rem;
}
.cellier-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: .95;
  text-shadow: 0 4px 32px rgba(0,0,0,.75);
}
.cellier-overlay h2 em {
  color: var(--gold);
  font-style: italic;
}

/* Hide scrollbar tweaks */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   THEME UPDATES — June 2026
   ========================================================= */

/* --- Footer: Mentions légales link --- */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.footer-legal {
    color: var(--text-dark-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal:hover {
    color: var(--gold-light);
}

/* --- Viandes d'Exception: Sur commande badge --- */
.cellier-badge-commande {
    display: inline-block;
    margin: 0.75rem 0 0;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--stone-950);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* --- Cellier card CTA button --- */
.cellier-card-actions {
    margin-top: 1.25rem;
}
.cellier-card-actions .btn {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
}

/* --- Honeypot: make absolutely sure it's invisible --- */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    left: -9999px !important;
}

/* --- Fix: engagement-num hidden before counter animation --- */
.engagement-num[data-ready="1"]:not([data-counted="1"]) {
    opacity: 0;
}

/* =========================================================
   HEADER ACTIONS
   ========================================================= */
.header-actions { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: .75rem; }
.bdi-header-cart { background: none; border: 1px solid rgba(184,147,90,.35); border-radius: 3rem; color: var(--cream); cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; position: relative; transition: background .2s, border-color .2s, color .2s; flex-shrink: 0; }
.bdi-header-cart:hover { background: var(--gold); border-color: var(--gold); color: var(--stone-950); }
.bdi-header-cart-badge { position: absolute; top: -5px; right: -5px; background: var(--oxblood-bright); color: #fff; font-size: .62rem; font-weight: 700; min-width: 17px; height: 17px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
@media(max-width:900px){ .header-social{display:none} .menu-toggle{display:flex} }
/* =========================================================
   SHOP PAGE
   ========================================================= */
.bdi-shop-hero { padding: calc(var(--section-y)*.7) 0 calc(var(--section-y)*.5); background: var(--bg); text-align: center; }
.bdi-shop-hero h1 { color: var(--cream); font-size: clamp(2.8rem,6vw,5rem); margin:.4rem 0 1rem; }
.bdi-shop-hero h1 em { color: var(--gold-light); font-style: italic; }
.bdi-shop-hero .lead { color: var(--text-dark-muted); max-width: 560px; margin: 0 auto; }
.bdi-filters { background: var(--surface); border-bottom: 1px solid var(--stone-700); position: sticky; top: 0; z-index: 40; }
.bdi-filter-tabs { display: flex; overflow-x: auto; scrollbar-width: none; padding: 0 var(--gutter); max-width: var(--container); margin: 0 auto; }
.bdi-filter-tabs::-webkit-scrollbar { display: none; }
.bdi-filter-btn { background: none; border: none; border-bottom: 2px solid transparent; color: var(--text-dark-muted); font-family: var(--font-body); font-size: .875rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; padding: 1rem 1.25rem; cursor: pointer; white-space: nowrap; transition: color .2s,border-color .2s; }
.bdi-filter-btn:hover { color: var(--text-dark); }
.bdi-filter-btn.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.bdi-products-grid .gamme-tile.bdi-hidden { display: none; }
.bdi-shop-grid-section { background: var(--bg); }
/* =========================================================
   CART FLOAT
   ========================================================= */
.bdi-cart-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; background: var(--gold); color: var(--stone-950); border: none; border-radius: 3rem; padding: .75rem 1.25rem .75rem 1rem; display: flex; align-items: center; gap: .6rem; cursor: pointer; font-family: var(--font-body); font-size: .875rem; font-weight: 600; box-shadow: 0 4px 24px rgba(0,0,0,.45); transition: background .2s,transform .2s var(--ease); }
.bdi-cart-float:hover { background: var(--gold-light); transform: translateY(-2px); }
.bdi-cart-badge { background: var(--oxblood-bright); color: #fff; font-size: .7rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.bdi-cart-float-label { display: none; }
@media(min-width:480px){ .bdi-cart-float-label{display:inline} }
/* =========================================================
   DRAWER
   ========================================================= */
.bdi-overlay { position: fixed; inset: 0; background: rgba(11,11,11,.6); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(2px); }
.bdi-overlay.bdi-vis { opacity: 1; pointer-events: all; }
.bdi-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px,100vw); background: var(--surface); border-left: 1px solid var(--stone-700); z-index: 400; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--ease); }
.bdi-drawer.bdi-open { transform: translateX(0); }
.bdi-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--stone-700); }
.bdi-drawer-header h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--text-dark); margin: 0; }
.bdi-drawer-close { background: none; border: none; color: var(--text-dark-muted); cursor: pointer; font-size: 1.5rem; line-height: 1; padding: 4px; transition: color .2s; }
.bdi-drawer-close:hover { color: var(--text-dark); }
.bdi-drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; scrollbar-width: thin; }
.bdi-cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; min-height: 200px; color: var(--stone-500); text-align: center; }
.bdi-cart-empty p { margin: 0; }
.bdi-cart-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.bdi-cart-item { display: grid; grid-template-columns: 56px 1fr auto; gap: .75rem; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--stone-700); }
.bdi-cart-item:last-child { border-bottom: none; }
.bdi-cart-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 4px; }
.bdi-item-name { font-size: .9rem; font-weight: 600; color: var(--text-dark); }
.bdi-item-price { font-size: .78rem; color: var(--gold-light); margin-top: 2px; }
.bdi-qty { display: flex; align-items: center; gap: 6px; }
.bdi-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--stone-600); background: none; color: var(--text-dark); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: border-color .15s,background .15s; }
.bdi-qty-btn:hover { border-color: var(--gold); background: var(--stone-700); }
.bdi-qty-num { font-size: .9rem; font-weight: 600; color: var(--text-dark); min-width: 20px; text-align: center; }
.bdi-item-rm { background: none; border: none; color: var(--stone-500); cursor: pointer; padding: 2px; margin-left: 4px; transition: color .15s; display: flex; }
.bdi-item-rm:hover { color: var(--oxblood-bright); }
.bdi-drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--stone-700); }
/* =========================================================
   MODAL
   ========================================================= */
.bdi-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.97); width: min(600px,calc(100vw - 2rem)); max-height: calc(100vh - 3rem); overflow-y: auto; background: var(--surface); border: 1px solid var(--stone-700); border-radius: 4px; z-index: 600; opacity: 0; pointer-events: none; transition: opacity .3s,transform .3s var(--ease); scrollbar-width: thin; }
.bdi-modal.bdi-open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.bdi-modal-inner { padding: 2rem; position: relative; }
.bdi-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--text-dark-muted); cursor: pointer; font-size: 1.6rem; line-height: 1; padding: 4px; transition: color .2s; }
.bdi-modal-close:hover { color: var(--text-dark); }
.bdi-recap { background: var(--surface-2); border: 1px solid var(--stone-700); border-radius: 4px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.bdi-recap-list { list-style: none; margin: 0; padding: 0; }
.bdi-recap-item { display: flex; justify-content: space-between; font-size: .875rem; color: var(--text-dark); padding: .25rem 0; }
.bdi-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media(max-width:480px){ .bdi-form-row{grid-template-columns:1fr} }
.bdi-form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.bdi-form-field label { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-dark-muted); }
.bdi-form-field input,.bdi-form-field textarea { background: var(--surface-2); border: 1px solid var(--stone-600); border-radius: 3px; color: var(--text-dark); font-family: var(--font-body); font-size: .95rem; padding: .6rem .85rem; transition: border-color .2s; width: 100%; }
.bdi-form-field input:focus,.bdi-form-field textarea:focus { outline: none; border-color: var(--gold); }
.bdi-form-field input::placeholder,.bdi-form-field textarea::placeholder { color: var(--stone-500); }
.bdi-form-field textarea { resize: vertical; min-height: 80px; }
.bdi-form-error { background: rgba(142,39,39,.15); border: 1px solid var(--oxblood-bright); color: #ffaaaa; border-radius: 3px; padding: .7rem 1rem; font-size: .875rem; margin-bottom: 1rem; }
.cellier-badge-commande { display: inline-block; margin: .75rem 0 0; padding: 4px 12px; background: var(--gold); color: var(--stone-950); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; }
.footer-legal { color: var(--text-dark-muted); font-size: .8rem; text-decoration: none; transition: color .2s; }
.footer-legal:hover { color: var(--gold-light); }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; left: -9999px !important; }
.bdi-toast { position: fixed; bottom: 5.5rem; left: 1.75rem; z-index: 500; background: var(--surface-2); border: 1px solid var(--stone-600); color: var(--text-dark); font-family: var(--font-body); font-size: .875rem; padding: .7rem 1.1rem; border-radius: 3px; box-shadow: 0 4px 20px rgba(0,0,0,.4); opacity: 1; transition: opacity .4s,transform .4s var(--ease); pointer-events: none; }
.bdi-toast.bdi-toast-hide { opacity: 0; transform: translateY(8px); }
