/* ═══════════════════════════════════════════════════════
   LA FERME DU GRAILLOU — STYLESHEET v2
   Design: Premium terroir, animations fluides, full-responsive
   Palette: Bordeaux #7B1517 | Or #C4965A | Crème #FAF7F2
═══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────
   1. VARIABLES
────────────────────────────────────────────────────── */
:root {
  /* Couleurs */
  --rouge:        #7B1517;
  --rouge-dk:     #5A0F10;
  --rouge-lt:     #9B2527;
  --or:           #C4965A;
  --or-lt:        #D4A96A;
  --or-pale:      #EDD9B5;
  --creme:        #FAF7F2;
  --creme-dk:     #F0E5D4;
  --texte:        #2A2A2A;
  --texte-lt:     #5C5C5C;
  --noir:         #1A1A1A;
  --blanc:        #FFFFFF;
  --gris:         #F4EEE5;

  /* Typographie */
  --f-head:   'Playfair Display', Georgia, serif;
  --f-body:   'Lato', 'Helvetica Neue', Arial, sans-serif;
  --f-script: 'Dancing Script', cursive;

  /* Espacement */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;

  /* Design */
  --radius:    10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow:    0 6px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 56px rgba(0,0,0,.18);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);

  --max-w: 1200px;
  --section-py: 96px;
}

/* ──────────────────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

body.menu-open { overflow: hidden; }

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

strong { font-weight: 700; color: var(--rouge); }
em { font-style: italic; }
p { margin-bottom: .8rem; }
p:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────────────────────
   3. SCROLL PROGRESS BAR
────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────
   4. ANIMATIONS AU SCROLL (état initial – GSAP prend le relais)
────────────────────────────────────────────────────── */
[data-animate] {
  /* Masqué par défaut ; GSAP anime vers opacity:1 via ScrollTrigger */
  opacity: 0;
}

/* ──────────────────────────────────────────────────────
   5. TYPOGRAPHIE FLUIDE
────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.15; color: var(--texte); }

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}
.section-title--light { color: var(--creme); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--or-lt); }

.lead-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--texte-lt);
}

.intro-text {
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: var(--texte-lt);
  max-width: 620px;
  margin: 0 auto;
}
.intro-text--light { color: rgba(250,247,242,.75); }

/* ──────────────────────────────────────────────────────
   6. LAYOUT UTILITAIRES
────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.container--narrow { max-width: 820px; }

.section { padding: var(--section-py) 0; }

.section-header-centered {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.d-none-sm { display: inline; }

/* ──────────────────────────────────────────────────────
   7. BOUTONS
────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .2s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0);    box-shadow: none; }

.btn-primary { background: var(--rouge); color: var(--blanc); border-color: var(--rouge); }
.btn-primary:hover { background: var(--rouge-dk); border-color: var(--rouge-dk); }

.btn-ghost { background: transparent; color: var(--blanc); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--blanc); }

.btn-secondary { background: var(--blanc); color: var(--rouge); border-color: var(--blanc); }
.btn-secondary:hover { background: var(--creme); border-color: var(--creme); }
.btn-outline-light { background: transparent; color: var(--blanc); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--blanc); }

/* ──────────────────────────────────────────────────────
   8. TAGS & PILLS
────────────────────────────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.tag {
  display: inline-block;
  background: var(--creme-dk);
  border: 1px solid var(--or-pale);
  color: var(--rouge);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
}

/* ──────────────────────────────────────────────────────
   9. IMAGES
────────────────────────────────────────────────────── */
.img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.img-frame:hover img { transform: scale(1.04); }

.img-frame--tall img { aspect-ratio: 4/5; }

figcaption {
  font-size: .78rem;
  color: var(--texte-lt);
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}

/* ──────────────────────────────────────────────────────
   10. NAVIGATION
────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 8px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(26,26,26,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height .3s var(--ease);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.site-header.is-scrolled .nav-logo img { height: 42px; }

/* Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 9px 14px;
  border-radius: 100px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 14px; right: 14px;
  height: 2px;
  background: var(--or);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.nav-link:hover, .nav-link.is-active { color: var(--blanc); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--rouge) !important;
  color: var(--blanc) !important;
  margin-left: 8px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--rouge-dk) !important; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 8px 5px;
  background: transparent;
  border: none;
  z-index: 901;
}

.burger-line {
  display: block;
  width: 100%; height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

.nav-toggle.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 899;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  animation: hero-zoom 14s ease-out forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,26,26,.85) 0%, rgba(26,26,26,.1) 50%),
    linear-gradient(165deg, rgba(12,12,12,.5) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--blanc);
  padding: 130px 24px 90px;
  max-width: 720px;
  width: 100%;
}

/* Stagger animation hero – géré par GSAP */
.hero-anim {
  opacity: 0; /* état initial ; GSAP anime via timeline */
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--or-lt);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1.02;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  margin-bottom: 12px;
  color: var(--blanc);
}

.hero-script {
  font-family: var(--f-script);
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  color: var(--blanc);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
  margin-bottom: 14px;
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll cue – bobbing et fade-in gérés par GSAP */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0; /* état initial ; GSAP anime */
}

.scroll-mouse {
  display: block;
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  position: relative;
  margin: 0 auto;
  transition: border-color .2s;
}

.scroll-mouse:hover { border-color: rgba(255,255,255,.9); }

.scroll-mouse span {
  display: block;
  width: 4px; height: 8px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  animation: mouse-scroll 2s ease-in-out infinite;
}

@keyframes mouse-scroll {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ──────────────────────────────────────────────────────
   12. STATS BAND
────────────────────────────────────────────────────── */
.stats-band {
  background: var(--rouge);
  padding: 48px 0;
  overflow: hidden;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 48px;
  color: var(--blanc);
}

.stat-item > :first-child {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--f-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--or-lt);
}

.stat-label {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}

.stat-sep {
  width: 1px; height: 56px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────
   13. SPLIT LAYOUT (Histoire, Boutique)
────────────────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.split-layout--dark { direction: rtl; }
.split-layout--dark > * { direction: ltr; }

.section-histoire { background: var(--creme); }
.section-boutique { background: var(--gris); }

/* ──────────────────────────────────────────────────────
   14. SECTION TROUPEAU
────────────────────────────────────────────────────── */
.section-troupeau {
  background: var(--noir);
  position: relative;
  overflow: hidden;
}

.section-troupeau::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(123,21,23,.25) 0%, transparent 65%);
  pointer-events: none;
}

.section-troupeau .container { position: relative; z-index: 1; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  border-color: rgba(196,150,90,.3);
}

.feature-card-img {
  height: 210px;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.feature-card:hover .feature-card-img img { transform: scale(1.06); }

.feature-card-body {
  padding: 24px 24px 28px;
}

.feature-num {
  display: block;
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--or);
  line-height: 1;
  margin-bottom: 6px;
}

.feature-card-body h3 {
  font-size: 1.15rem;
  color: var(--creme);
  margin-bottom: 10px;
}

.feature-card-body p {
  font-size: .88rem;
  color: rgba(250,247,242,.65);
  margin: 0;
}

.feature-card-body strong { color: var(--or-lt); }

/* Panorama */
.pano-banner {
  position: relative;
  height: clamp(280px, 35vw, 420px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pano-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.pano-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,.8) 0%, rgba(26,26,26,.15) 65%);
}

.pano-quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 36px 48px;
  z-index: 1;
}

.pano-quote p {
  font-family: var(--f-head);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--blanc);
  max-width: 580px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  margin: 0;
}

/* ──────────────────────────────────────────────────────
   15. SECTION PRODUITS
────────────────────────────────────────────────────── */
.section-produits { background: var(--creme-dk); }

.produit-bloc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.produit-bloc:last-of-type { margin-bottom: 0; }

.produit-bloc--reverse .produit-img { order: 2; }
.produit-bloc--reverse .produit-content { order: 1; }

.produit-category {
  display: inline-block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}

.produit-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--rouge-dk);
  line-height: 1.15;
  margin-bottom: 18px;
}

.produit-content > p {
  color: var(--texte-lt);
  margin-bottom: 24px;
}

.produit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.produit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  line-height: 1.5;
}

.pl-dot {
  display: block;
  width: 8px; height: 8px;
  background: var(--or);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* CTA banner */
.produits-cta-banner {
  margin-top: clamp(48px, 7vw, 80px);
  margin-bottom: clamp(48px, 7vw, 80px);
  background: var(--rouge);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.produits-cta-banner p {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.9);
  margin: 0;
  max-width: 500px;
}

.produits-cta-banner strong { color: var(--or-lt); }

.produits-cta-banner .btn-primary {
  background: var(--blanc);
  color: var(--rouge);
  border-color: var(--blanc);
  flex-shrink: 0;
}
.produits-cta-banner .btn-primary:hover { background: var(--creme); border-color: var(--creme); }

/* ──────────────────────────────────────────────────────
   16. SECTION TRANSHUMANCE
────────────────────────────────────────────────────── */
.section-transhumance {
  background: linear-gradient(135deg, #1a0809 0%, #2d1111 50%, #1a0a0b 100%);
  position: relative;
  overflow: hidden;
}

.section-transhumance::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/opt/IMG-20250520-WA0040-1024.webp') center/cover no-repeat;
  opacity: .08;
  pointer-events: none;
}

.section-transhumance .container { position: relative; z-index: 1; }

/* Duo d'images */
.img-duo {
  position: relative;
  height: 500px;
  flex-shrink: 0;
}

.img-duo-main {
  position: absolute;
  top: 0; right: 0;
  width: 83%;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-duo-sec {
  position: absolute;
  bottom: 0; left: 0;
  width: 54%;
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--rouge);
}

.img-duo-main img,
.img-duo-sec img { width: 100%; height: 100%; object-fit: cover; }

.section-transhumance .split-text p { color: rgba(250,247,242,.8); }

/* ──────────────────────────────────────────────────────
   17. SECTION VALEURS
────────────────────────────────────────────────────── */
.section-valeurs { background: var(--gris); }

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.valeurs-grid--3 { grid-template-columns: repeat(3, 1fr); }

.valeur-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 36px 24px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.valeur-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--or);
}

.valeur-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
}

.valeur-icon svg { width: 100%; height: 100%; }

.valeur-card h3 {
  font-size: 1.1rem;
  color: var(--rouge);
  margin-bottom: 12px;
}

.valeur-card p { font-size: .88rem; color: var(--texte-lt); margin: 0; }

/* ──────────────────────────────────────────────────────
   18. SECTION BOUTIQUE
────────────────────────────────────────────────────── */
.boutique-infos {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 32px;
}

.boutique-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.boutique-icon {
  width: 22px; height: 22px;
  fill: var(--rouge);
  flex-shrink: 0;
  margin-top: 1px;
}

.boutique-row div { display: flex; flex-direction: column; gap: 2px; }

.boutique-row strong {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rouge);
  font-weight: 700;
}

.boutique-row span, .boutique-row a {
  font-size: .92rem;
  color: var(--texte-lt);
}
.boutique-row a:hover { color: var(--rouge); text-decoration: underline; }

/* ──────────────────────────────────────────────────────
   19. SECTION FAQ
────────────────────────────────────────────────────── */
.section-faq { background: var(--creme); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--blanc);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--f-head);
  font-size: clamp(.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--texte);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color .2s;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-item[open] .faq-q { color: var(--rouge); }

.faq-chevron {
  width: 20px; height: 20px;
  stroke: var(--or);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  padding: 0 24px 22px;
  font-size: .93rem;
  color: var(--texte-lt);
  line-height: 1.75;
  border-top: 1px solid var(--creme-dk);
  padding-top: 16px;
}

.faq-a p { margin-bottom: .6rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 4px; }
.faq-a a { color: var(--rouge); text-decoration: underline; }

/* ──────────────────────────────────────────────────────
   20. SECTION GALERIE – BENTO GRID
────────────────────────────────────────────────────── */
.section-galerie { background: var(--noir); padding-bottom: 0; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 10px;
  padding: 10px;
  margin-top: 8px;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .3s;
  filter: brightness(.85);
}

.bento-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}

.bento-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  color: var(--blanc);
  font-size: .78rem;
  font-style: normal;
  padding: 24px 14px 12px;
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  text-align: left;
}

.bento-item:hover figcaption { transform: none; }

/* Positions bento */
.bento-a { grid-column: span 5; grid-row: span 2; }
.bento-b { grid-column: span 4; grid-row: span 1; }
.bento-c { grid-column: span 3; grid-row: span 1; }
.bento-d { grid-column: span 3; grid-row: span 1; }
.bento-e { grid-column: span 4; grid-row: span 1; }

/* ──────────────────────────────────────────────────────
   21. SECTION CONTACT
────────────────────────────────────────────────────── */
.section-contact { background: var(--rouge-dk); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-infos h3 {
  font-size: 1.25rem;
  color: var(--or-lt);
  margin-bottom: 28px;
}

.contact-address { display: flex; flex-direction: column; gap: 22px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(250,247,242,.8);
  font-size: .92rem;
  line-height: 1.6;
}

.contact-ico { width: 22px; height: 22px; color: var(--or); flex-shrink: 0; margin-top: 2px; }

.contact-item div { display: flex; flex-direction: column; gap: 2px; }

.contact-item strong {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--or-lt);
  font-weight: 700;
}

.contact-link { color: rgba(250,247,242,.8); transition: color .2s; }
.contact-link:hover { color: var(--or-lt); text-decoration: underline; }

.contact-social { margin-top: 32px; }

.contact-social-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,.5);
  margin-bottom: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(250,247,242,.8);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s, color .2s, border-color .2s;
}
.social-btn:hover { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); }

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map iframe {
  width: 100%; height: 400px;
  border: none; display: block;
}

.map-link {
  display: block;
  background: rgba(255,255,255,.04);
  color: rgba(250,247,242,.5);
  text-align: center;
  padding: 12px;
  font-size: .78rem;
  transition: background .2s, color .2s;
}
.map-link:hover { background: rgba(255,255,255,.08); color: var(--or-lt); }

/* ──────────────────────────────────────────────────────
   22. FOOTER
────────────────────────────────────────────────────── */
.site-footer {
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px clamp(16px, 4vw, 40px) 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
}

.footer-brand img { margin-bottom: 14px; }

.footer-script {
  font-family: var(--f-script);
  font-size: 1.4rem;
  color: var(--or-lt);
  margin-bottom: 6px;
}

.footer-sub { font-size: .8rem; color: rgba(250,247,242,.4); margin: 0; }

.footer-nav-title {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 18px;
}

.footer-nav ul,
.footer-produits ul { display: flex; flex-direction: column; gap: 9px; }

.footer-nav a {
  font-size: .86rem;
  color: rgba(250,247,242,.55);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--or-lt); }

.footer-produits li {
  font-size: .86rem;
  color: rgba(250,247,242,.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px clamp(16px, 4vw, 40px);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: .76rem;
  color: rgba(250,247,242,.3);
  margin-bottom: 4px;
}

/* ──────────────────────────────────────────────────────
   23. RESPONSIVE — TABLETTE PAYSAGE (≤ 1100px)
────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-py: 80px; }

  .valeurs-grid { grid-template-columns: repeat(2, 1fr); }

  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .bento-a { grid-column: span 4; grid-row: span 2; }
  .bento-b { grid-column: span 2; grid-row: span 1; }
  .bento-c { grid-column: span 2; grid-row: span 1; }
  .bento-d { grid-column: span 3; grid-row: span 1; }
  .bento-e { grid-column: span 3; grid-row: span 1; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-produits { grid-column: 1 / -1; }

  .stat-item { padding: 16px 32px; }
}

/* ──────────────────────────────────────────────────────
   24. RESPONSIVE — TABLETTE PORTRAIT (≤ 900px)
────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-py: 56px; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(440px, 100vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(26,26,26,.985);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 132px clamp(32px, 8vw, 52px) 64px;
    gap: 10px;
    transition: right .42s var(--ease);
    z-index: 900;
    border-left: 1px solid rgba(255,255,255,.06);
  }

  .nav-menu.is-open { right: 0; }
  .nav-overlay { display: block; }

  .nav-menu li { width: 100%; }

  .nav-link {
    display: block;
    font-size: 1.24rem;
    letter-spacing: .015em;
    padding: 22px 4px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.09);
    transition: color .2s, padding-left .2s;
  }
  .nav-link:hover,
  .nav-link:focus-visible { padding-left: 12px; }

  .nav-cta {
    margin-top: 40px;
    padding: 20px 24px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    border-radius: 999px;
  }
  .nav-cta:hover,
  .nav-cta:focus-visible { padding-left: 24px; }

  .split-layout,
  .split-layout--dark {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .split-layout--dark .produit-bloc--reverse > * { order: unset; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-grid .feature-card:last-child { grid-column: span 2; }

  .produit-bloc,
  .produit-bloc--reverse { grid-template-columns: 1fr; gap: 32px; }
  .produit-bloc--reverse .produit-img { order: unset; }
  .produit-bloc--reverse .produit-content { order: unset; }

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

  .img-duo { height: 380px; }
  .img-duo-main { width: 88%; height: 300px; }
  .img-duo-sec { width: 52%; height: 170px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { height: 300px; }

  .valeurs-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-inner { flex-wrap: wrap; gap: 0; justify-content: center; }
  .stats-band { padding: 36px 0; }
  .stat-sep { width: 1px; height: 40px; margin: 0 4px; }
  .stat-item { padding: 14px 28px; min-width: 160px; }
}

/* ──────────────────────────────────────────────────────
   25. RESPONSIVE — MOBILE (≤ 600px)
────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-py: 44px; }

  .d-none-sm { display: none; }

  .hero-content { padding: 110px 20px 80px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-card:last-child { grid-column: span 1; }

  .valeurs-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .valeur-card { padding: 24px 18px; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e {
    grid-column: span 1;
    grid-row: span 1;
    height: 180px;
  }
  /* full → pair → pair */
  .bento-a { grid-column: span 2; height: 220px; }

  .produits-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .produits-cta-banner .btn { align-self: center; }

  .pano-quote { padding: 24px; }
  .pano-quote p { font-size: .95rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-produits { grid-column: span 1; }

  .img-duo { height: 300px; }
  .img-duo-main { width: 90%; height: 240px; }
  .img-duo-sec { width: 58%; height: 140px; }

  .faq-q { padding: 16px 20px; }
  .faq-a { padding: 14px 20px 18px; }

  .contact-map iframe { height: 260px; }

  /* Stats band : grille 2×2 sur mobile, sans séparateurs ni fond
     translucide pour éviter toute bande visible. */
  .stats-band { padding: 28px 0; }
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: transparent;
    padding: 0;
    max-width: 100%;
  }
  .stat-sep { display: none; }
  .stat-item {
    padding: 22px 12px;
    background: transparent;
    min-width: unset;
    flex: unset;
  }

  /* Split layout : réduire le gap */
  .split-layout,
  .split-layout--dark { gap: 28px; }

  /* CTAs en bas de page */
  .hero-ctas { flex-direction: column; align-items: center; gap: 14px; }
  .hero-ctas .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Horaires table */
  .horaires-table td:first-child { width: 90px; font-size: 0.88rem; }
  .horaires-table td { padding: 6px 2px; font-size: 0.88rem; }

  /* Page hero taille */
  .page-hero { height: clamp(260px, 55vw, 340px); }

  /* Breadcrumb compact */
  .breadcrumb-inner { font-size: 0.76rem; }

  /* Section header centré */
  .section-header-centered { margin-bottom: 32px; }
}

/* ──────────────────────────────────────────────────────
   26. RESPONSIVE — PETIT MOBILE (≤ 400px)
────────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .bento-a, .bento-e { height: 180px; }
  .bento-grid { gap: 6px; padding: 6px; }
  .stat-item { padding: 10px 12px; min-width: calc(50% - 1px); }
  .valeurs-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   27. ACCESSIBILITÉ
────────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--or);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-animate], .hero-anim, .page-hero-eyebrow, .page-hero-title, .page-hero-sub, .hero-scroll-cue {
    opacity: 1 !important; transform: none !important;
  }
  .hero-img { animation: none; transform: none; }
}

/* ──────────────────────────────────────────────────────
   28. PAGE HERO (sous-pages)
────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(380px, 48vw, 520px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: hero-zoom 14s ease-out forwards;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(12, 12, 12, 0.50) 0%,
    rgba(26, 26, 26, 0.74) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--blanc);
  padding: 0 var(--sp-lg);
  max-width: 860px;
}
.page-hero-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: var(--sp-sm);
  opacity: 0;
  animation: hero-in .8s var(--ease-out) .3s forwards;
}
.page-hero-title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blanc);
  margin: 0 0 var(--sp-sm);
  opacity: 0;
  animation: hero-in .9s var(--ease-out) .5s forwards;
}
.page-hero-sub {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.82);
  margin: 0;
  opacity: 0;
  animation: hero-in .9s var(--ease-out) .7s forwards;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--creme-dk);
  padding: 12px 0;
  border-bottom: 1px solid var(--or-pale);
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--texte-lt);
}
.breadcrumb-inner a {
  color: var(--rouge);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--or); font-size: 0.7rem; }

/* ──────────────────────────────────────────────────────
   29. FORMULAIRE DE CONTACT
────────────────────────────────────────────────────── */
.contact-form-section {
  background: var(--creme);
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--texte-lt);
}
.form-input,
.form-textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--texte);
  background: var(--blanc);
  border: 1.5px solid var(--creme-dk);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  outline: none;
  box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(123,21,23,.12);
}
.form-textarea {
  resize: vertical;
  min-height: 150px;
}
.form-submit {
  margin-top: var(--sp-sm);
}
.form-note {
  font-size: 0.82rem;
  color: var(--texte-lt);
  margin-top: var(--sp-sm);
  text-align: center;
}

/* Horaires tableau */
.horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: var(--sp-sm);
}
.horaires-table tr {
  border-bottom: 1px solid var(--creme-dk);
}
.horaires-table tr:last-child { border-bottom: none; }
.horaires-table td {
  padding: 8px 4px;
  color: var(--texte);
}
.horaires-table td:first-child {
  font-weight: 700;
  color: var(--rouge);
  width: 120px;
}
.horaires-table td:last-child {
  text-align: right;
  color: var(--texte-lt);
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .page-hero { height: clamp(280px, 60vw, 380px); }
  .page-hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}

/* ──────────────────────────────────────────────────────
   30. PRINT
────────────────────────────────────────────────────── */
@media print {
  .site-header, .hero-scroll-cue, .nav-toggle, .scroll-progress { display: none; }
  .hero { min-height: auto; page-break-after: always; }
  .section { page-break-inside: avoid; }
}
