/* =============================================================================
   MAISON BRUN — design-system.css
   Système de design issu des maquettes HTML (claude.ai/design).
   Companion du style.css (tokens WordPress) — ne pas modifier les tokens WP.
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Montserrat:wght@300;400;500&display=swap');

/* ── Tokens design (sur-couche pour les templates refontés) ── */
:root {
  --d-noir:   #000000;
  --d-creme:  #F6ECDA;
  --d-cuivre: #BC7942;
  --d-taupe:  #C9B698;
  --d-white:  #FFFFFF;
  --d-max-w:  1200px;
  --d-font-display: 'Belleza', 'Georgia', serif;
  --d-font-body:    'Montserrat', 'Helvetica Neue', sans-serif;
}

/* ── Reset ciblé aux templates refontés ── */
.mb-page *, .mb-page *::before, .mb-page *::after {
  box-sizing: border-box;
}
.mb-page {
  font-family: var(--d-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mb-page h1, .mb-page h2, .mb-page h3, .mb-page h4 {
  font-family: var(--d-font-display);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.mb-page p { margin: 0; }
.mb-page a { text-decoration: none; }
.mb-page img { display: block; max-width: 100%; }
.mb-page ul, .mb-page ol { list-style: none; margin: 0; padding: 0; }

/* ── Accent cuivre (span.cu) ── */
.cu { color: var(--d-cuivre); font-weight: 500; }

/* =============================================================================
   NAVIGATION
   ============================================================================= */

nav.mb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  transition: background 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
}
nav.mb-nav.mb-nav--solid,
nav.mb-nav.scrolled {
  background: var(--d-noir);
  border-bottom-color: rgba(188,121,66,0.18);
}

.mb-nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.mb-nav__logo img {
  height: 44px;
  opacity: 0.9;
}
.mb-nav__logo-text {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-white);
  line-height: 1.3;
}
.mb-nav__logo-text span {
  display: block;
  color: var(--d-taupe);
  font-size: 10px;
}

.mb-nav__links {
  display: flex;
  gap: 36px;
}
.mb-nav__links a {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}
.mb-nav__links a:hover,
.mb-nav__links a.active {
  color: var(--d-cuivre);
  border-bottom-color: var(--d-cuivre);
  text-decoration: none;
}

.mb-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--d-taupe);
}
.mb-nav__hamburger svg { display: block; }

.mb-nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid rgba(188,121,66,0.15);
  z-index: 199;
  flex-direction: column;
}
.mb-nav__mobile.open { display: flex; }
.mb-nav__mobile a {
  display: block;
  padding: 18px clamp(24px, 5vw, 64px);
  font-family: var(--d-font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(188,121,66,0.08);
  transition: color 200ms ease;
}
.mb-nav__mobile a:hover,
.mb-nav__mobile a.active {
  color: var(--d-cuivre);
}

@media (max-width: 900px) {
  .mb-nav__links { display: none; }
  .mb-nav__hamburger { display: block; }
}

/* =============================================================================
   FOOTER
   ============================================================================= */

footer.mb-footer {
  background: #050403;
  border-top: 1px solid rgba(188,121,66,0.14);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 64px) 0;
  font-family: var(--d-font-body);
}
.mb-footer__grid {
  max-width: var(--d-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(188,121,66,0.1);
}
.mb-footer__brand img {
  height: 52px;
  opacity: 0.55;
  margin-bottom: 20px;
  display: block;
}
.mb-footer__brand p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(201,182,152,0.45);
  max-width: 280px;
}
.mb-footer__col h4 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 24px;
}
.mb-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mb-footer__nav a {
  font-weight: 300;
  font-size: 14px;
  color: rgba(201,182,152,0.55);
  transition: color 200ms ease;
}
.mb-footer__nav a:hover { color: var(--d-white); }

.mb-footer__contact { display: flex; flex-direction: column; gap: 16px; }
.mb-footer__contact-line { display: flex; flex-direction: column; gap: 4px; }
.mb-footer__contact-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.35);
}
.mb-footer__contact a {
  font-weight: 300;
  font-size: 14px;
  color: rgba(201,182,152,0.55);
  transition: color 200ms ease;
}
.mb-footer__contact a:hover { color: var(--d-white); }

.mb-footer__bottom {
  max-width: var(--d-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.mb-footer__copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(201,182,152,0.3);
}
.mb-footer__legal { display: flex; gap: 24px; }
.mb-footer__legal a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(201,182,152,0.28);
  transition: color 200ms ease;
}
.mb-footer__legal a:hover { color: rgba(201,182,152,0.6); }

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

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 100ms; }
.fd2 { transition-delay: 200ms; }
.fd3 { transition-delay: 300ms; }
.fd4 { transition-delay: 400ms; }

.stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 120ms; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .stagger > * { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* =============================================================================
   BOUTONS PARTAGÉS
   ============================================================================= */

.btn-cuivre-outline {
  display: inline-block;
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1px solid var(--d-cuivre);
  color: var(--d-cuivre);
  text-decoration: none;
  transition: opacity 200ms ease;
}
.btn-cuivre-outline:hover { opacity: 0.65; color: var(--d-cuivre); text-decoration: none; }

.btn-cuivre-solid {
  display: inline-block;
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--d-cuivre);
  color: var(--d-creme);
  border: 1px solid var(--d-cuivre);
  text-decoration: none;
  transition: opacity 200ms ease;
}
.btn-cuivre-solid:hover { opacity: 0.8; text-decoration: none; color: var(--d-creme); }

.btn-creme-outline {
  display: inline-block;
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: transparent;
  color: var(--d-creme);
  border: 1px solid rgba(246,236,218,0.45);
  text-decoration: none;
  transition: opacity 200ms ease, border-color 200ms ease;
}
.btn-creme-outline:hover { opacity: 0.7; color: var(--d-creme); text-decoration: none; }

.btn-noir {
  display: inline-block;
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 40px;
  background: var(--d-noir);
  color: var(--d-creme);
  border: 1px solid var(--d-noir);
  text-decoration: none;
  transition: opacity 200ms ease;
}
.btn-noir:hover { opacity: 0.75; color: var(--d-creme); text-decoration: none; }

/* ── Trait cuivre décoratif ── */
.rule-cuivre {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 56px;
}
.rule-cuivre::before, .rule-cuivre::after {
  content: '';
  width: 80px;
  height: 1px;
  background: rgba(188,121,66,0.35);
}
.rule-cuivre img { height: 80px; opacity: 0.55; }

/* ── Scroll indicator ── */
.scroll-cue {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue span {
  font-family: var(--d-font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.35);
}
.scroll-cue__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(188,121,66,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── Photo treatments ── */
.real-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.94) contrast(1.08) brightness(0.97);
}
.real-photo.warm {
  filter: saturate(0.88) contrast(1.12) brightness(0.96) sepia(0.14) hue-rotate(-6deg);
}
.real-photo.terroir {
  filter: saturate(0.78) contrast(1.16) brightness(0.92) sepia(0.22) hue-rotate(-8deg);
}
.has-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 30%, rgba(13,10,6,0.42) 100%);
  z-index: 2;
  pointer-events: none;
}

/* =============================================================================
   ACCUEIL — front-page
   ============================================================================= */

/* Hero */
section.hero-accueil {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-accueil .hero-bg {
  position: absolute; inset: 0;
  background: url('../photos/photo-01-hero.jpeg') center center / cover no-repeat;
}
.hero-accueil .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 75%, rgba(188,121,66,0.06) 0%, transparent 65%);
}
.hero-accueil .hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
}
.hero-accueil .hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 100px clamp(24px, 8vw, 120px) 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-accueil .hero-logo {
  height: clamp(100px, 14vw, 180px);
  opacity: 0.88;
  margin-bottom: 48px;
  display: block;
  width: auto;
}
.hero-accueil h1 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.97;
  letter-spacing: -0.015em;
  color: var(--d-creme);
  margin-bottom: 28px;
  text-align: center;
}
.hero-accueil .hero-h2 {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.7;
  color: rgba(246,236,218,0.6);
  letter-spacing: 0.08em;
  max-width: 600px;
  margin-bottom: 48px;
  text-align: center;
}
.hero-accueil .hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Trois piliers */
section.trois-piliers {
  background: var(--d-creme);
  color: var(--d-noir);
  overflow: hidden;
}
.trois-piliers .inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.pilier {
  padding: clamp(56px, 7vw, 100px) clamp(32px, 4vw, 72px);
  border-right: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: background 300ms ease;
}
.pilier:last-child { border-right: none; }
.pilier:hover { background: #ede3cf; }
.pilier .pilier-chiffre {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--d-cuivre);
  margin-bottom: 28px;
  max-width: none;
}
.pilier-rule {
  width: 32px;
  height: 1px;
  background: rgba(0,0,0,0.18);
  margin-bottom: 18px;
}
.pilier p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: #4a3c2c;
  max-width: 220px;
}
@media (max-width: 900px) {
  .trois-piliers .inner { grid-template-columns: 1fr 1fr; }
  .pilier:nth-child(2) { border-right: none; }
  .pilier:nth-child(1), .pilier:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.1); }
}
@media (max-width: 480px) {
  .trois-piliers .inner { grid-template-columns: 1fr; }
  .pilier { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .pilier:last-child { border-bottom: none; }
}

/* Teaser circuit */
section.teaser-circuit {
  background: var(--d-noir);
  color: var(--d-white);
}
.teaser-circuit .grid-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
}
.teaser-text-col {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.teaser-text-col .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 28px;
}
.teaser-text-col h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  color: var(--d-white);
  margin-bottom: 28px;
}
.teaser-text-col p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--d-taupe);
  margin-bottom: 48px;
  max-width: 480px;
}
.teaser-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #0f0c07;
}
@media (max-width: 900px) {
  .teaser-circuit .grid-split { grid-template-columns: 1fr; }
  .teaser-photo { min-height: 320px; }
}

/* Aperçu produits */
section.apercu-produits {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}
.apercu-produits .inner { max-width: var(--d-max-w); margin: 0 auto; }
.apercu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.apercu-header .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 12px;
  display: block;
}
.apercu-header h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  color: var(--d-noir);
}
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.1);
  margin-bottom: 56px;
}
.cat-card {
  display: block;
  text-decoration: none;
  background: var(--d-creme);
  transition: opacity 200ms ease;
  overflow: hidden;
}
.cat-card:hover { opacity: 0.82; }
.cat-photo {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
  background: #1a1410;
}
.cat-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #130e08 0%, #241a0f 55%, #0d0906 100%);
}
.cat-name {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.1;
  color: var(--d-noir);
  padding: 20px 24px 24px;
}
.apercu-produits .btn-wrap { text-align: center; }
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* Prochain marché */
section.prochain-marche {
  background: var(--d-noir);
  color: var(--d-white);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}
.prochain-marche .inner { max-width: var(--d-max-w); margin: 0 auto; }
.prochain-marche .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 24px;
  display: block;
}
.prochain-marche h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  color: var(--d-white);
  margin-bottom: clamp(48px, 6vw, 64px);
}
.marches-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(188,121,66,0.18);
  margin-bottom: 64px;
}
.marche-item {
  padding: 36px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(188,121,66,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.marche-item:first-child { padding-left: 0; }
.marche-item:last-child { border-right: none; }
.marche-item a { text-decoration: none; }
.marche-ville {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
  color: var(--d-white);
  margin-bottom: 6px;
}
.marche-meta {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.45);
  margin-bottom: 12px;
}
.marche-horaire {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--d-taupe);
  font-style: italic;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .marches-row { grid-template-columns: 1fr; }
  .marche-item { border-right: none; border-bottom: 1px solid rgba(188,121,66,0.1); }
  .marche-item:last-child { border-bottom: none; }
  .marche-item:first-child { padding-left: clamp(20px, 3vw, 48px); }
}

/* Encart 100 jours */
section.encart-100j {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}
.encart-100j .inner {
  max-width: var(--d-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.encart-100j .big-number {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--d-cuivre);
  white-space: nowrap;
}
.encart-100j .number-label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-top: 8px;
  display: block;
}
.encart-100j .text-col .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 20px;
  display: block;
}
.encart-100j .text-col h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--d-noir);
  margin-bottom: 20px;
}
.encart-100j .text-col p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: #4a3c2c;
}
@media (max-width: 768px) {
  .encart-100j .inner { grid-template-columns: 1fr; }
}

/* FAQ */
section.mb-faq {
  background: var(--d-noir);
  color: var(--d-white);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}
.mb-faq .inner { max-width: var(--d-max-w); margin: 0 auto; }
.mb-faq .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 20px;
  display: block;
}
.mb-faq h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  color: var(--d-white);
  margin-bottom: clamp(48px, 6vw, 72px);
}
.mb-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(188,121,66,0.2);
}
.mb-faq details {
  border-bottom: 1px solid rgba(188,121,66,0.12);
  padding: 28px 0;
}
.mb-faq details:last-child { border-bottom: none; }
.mb-faq summary {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--d-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.mb-faq summary::-webkit-details-marker { display: none; }
.mb-faq summary .faq-icon {
  color: var(--d-cuivre);
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.mb-faq details[open] summary .faq-icon { transform: rotate(45deg); }
.mb-faq details p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--d-taupe);
  margin-top: 16px;
  max-width: 680px;
}

/* =============================================================================
   HISTOIRE — page-histoire
   ============================================================================= */

section.hero-maison {
  background: var(--d-noir);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px clamp(24px, 5vw, 64px) 120px;
}
.hero-maison .inner { max-width: var(--d-max-w); margin: 0 auto; }
.hero-maison .eyebrow {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-maison .eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--d-cuivre);
}
.hero-maison h1 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(52px, 6.5vw, 100px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--d-white);
  max-width: 900px;
  margin-bottom: 48px;
}
.hero-maison .subtitle {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--d-taupe);
  max-width: 560px;
  letter-spacing: 0.02em;
}

section.histoire-ferme {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 64px);
}
.histoire-ferme .grid-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  max-width: var(--d-max-w);
  margin: 0 auto;
}
.histoire-ferme .text-col .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 32px;
  display: block;
}
.histoire-ferme h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  color: var(--d-noir);
  margin-bottom: 36px;
}
.histoire-ferme p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: #3a2e22;
  margin-bottom: 20px;
}
.histoire-ferme p:last-child { margin-bottom: 0; }
.histoire-ferme .photo-col {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (max-width: 900px) {
  .histoire-ferme .grid-split { grid-template-columns: 1fr; }
  .histoire-ferme .photo-col { order: -1; }
}

section.patrimoine {
  background: var(--d-noir);
  color: var(--d-white);
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 50vw, 540px);
  display: flex;
  align-items: center;
}
.patrimoine-photo {
  position: absolute; inset: 0; z-index: 0;
}
.patrimoine-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) saturate(0.6) contrast(1.18) brightness(0.7) sepia(0.18);
}
.patrimoine-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,10,6,0.85) 0%, rgba(13,10,6,0.65) 50%, rgba(13,10,6,0.4) 100%);
}
.patrimoine-inner {
  position: relative; z-index: 1;
  max-width: var(--d-max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
.patrimoine-eyebrow {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 18px;
  display: block;
}
.patrimoine-h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  color: var(--d-creme);
  letter-spacing: -0.01em;
}
.patrimoine-text p {
  font-family: var(--d-font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: rgba(245,236,217,0.78);
  margin-bottom: 14px;
}
.patrimoine-text p:last-child { margin-bottom: 0; }
.patrimoine-stats {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,182,152,0.22);
}
.patrimoine-stat .num {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1;
  color: var(--d-cuivre);
  display: block;
  white-space: nowrap;
}
.patrimoine-stat .lbl {
  font-family: var(--d-font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,236,217,0.58);
  margin-top: 8px;
  display: block;
}
@media (max-width: 768px) {
  .patrimoine-inner { grid-template-columns: 1fr; }
  .patrimoine-photo::after { background: linear-gradient(180deg, rgba(13,10,6,0.55) 0%, rgba(13,10,6,0.85) 100%); }
}

section.porteurs {
  background: var(--d-noir);
  color: var(--d-white);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 64px);
}
.porteurs .inner-wrap { max-width: var(--d-max-w); margin: 0 auto; }
.porteurs .section-label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 24px;
  display: block;
}
.porteurs h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--d-white);
  max-width: 640px;
  margin-bottom: 80px;
}
.porteurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
.porteur-bloc {
  border-top: 1px solid rgba(188,121,66,0.25);
  padding-top: 40px;
}
.porteur-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: #111;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.porteur-nom {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.1;
  color: var(--d-white);
  margin-bottom: 10px;
}
.porteur-role {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 24px;
  display: block;
}
.porteur-texte {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--d-taupe);
}
@media (max-width: 768px) {
  .porteurs-grid { grid-template-columns: 1fr; }
}

section.valeurs {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 64px);
}
.valeurs .inner-wrap { max-width: var(--d-max-w); margin: 0 auto; }
.valeurs .section-label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.valeurs .section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(188,121,66,0.3);
}
.valeurs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.valeur-item {
  padding: 0 clamp(24px, 3vw, 48px);
  border-left: 1px solid rgba(0,0,0,0.12);
}
.valeur-item:first-child { padding-left: 0; border-left: none; }
.valeur-item h3 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  color: var(--d-noir);
  margin-bottom: 24px;
}
.valeur-item p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #4a3c2c;
}
@media (max-width: 768px) {
  .valeurs-grid { grid-template-columns: 1fr; gap: 48px; }
  .valeur-item { padding-left: 0 !important; border-left: none !important; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 32px; }
  .valeur-item:first-child { border-top: none; padding-top: 0; }
}

section.cta-circuit {
  background: var(--d-noir);
  color: var(--d-white);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.cta-circuit .inner-wrap { max-width: 700px; margin: 0 auto; }
.cta-circuit h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.1;
  color: var(--d-white);
  margin-bottom: 48px;
}

/* =============================================================================
   PRODUITS — page-produits
   ============================================================================= */

section.hero-produits {
  background: var(--d-noir);
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(24px, 5vw, 64px) 80px;
}
.hero-produits .inner { max-width: var(--d-max-w); margin: 0 auto; }
.hero-produits .eyebrow {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-produits .eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--d-cuivre);
}
.hero-produits h1 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--d-white);
  margin-bottom: 36px;
}
.hero-produits .subtitle {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--d-taupe);
  max-width: 500px;
  letter-spacing: 0.02em;
}

.categorie {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}
.categorie.noir { background: var(--d-noir); color: var(--d-white); }
.categorie.creme { background: var(--d-creme); color: var(--d-noir); }
.categorie-inner { max-width: var(--d-max-w); margin: 0 auto; }
.cat-label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 20px;
  display: block;
}
.categorie h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.categorie.noir h2 { color: var(--d-white); }
.categorie.creme h2 { color: var(--d-noir); }
.cat-intro {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.categorie.noir .cat-intro { color: var(--d-taupe); }
.categorie.creme .cat-intro { color: #4a3c2c; }

.produit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid;
}
.categorie.noir .produit-grid { border-color: rgba(188,121,66,0.18); }
.categorie.creme .produit-grid { border-color: rgba(0,0,0,0.12); }

.produit-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.categorie.noir .produit-card { background: #080604; }
.categorie.creme .produit-card { background: #ede3d0; }

.produit-photo {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.produit-photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(188,121,66,0.07) 0%, transparent 70%);
}
.has-photo .produit-photo::after {
  background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 35%, rgba(13,10,6,0.32) 100%);
  z-index: 2;
}
.produit-info {
  padding: 20px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.produit-nom {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.15;
}
.categorie.noir .produit-nom { color: var(--d-white); }
.categorie.creme .produit-nom { color: var(--d-noir); }
.produit-prix {
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--d-cuivre);
  white-space: nowrap;
  flex-shrink: 0;
}

section.encart-poids {
  background: var(--d-noir);
  color: var(--d-white);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(188,121,66,0.15);
}
.encart-poids .inner { max-width: 680px; margin: 0 auto; }
.encart-poids .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 20px;
  display: block;
}
.encart-poids h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  color: var(--d-white);
  margin-bottom: 24px;
}
.encart-poids p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--d-taupe);
  margin-bottom: 16px;
}
.encart-poids p:last-child { margin-bottom: 0; }

section.cta-reservation {
  background: var(--d-cuivre);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.cta-reservation .inner-wrap { max-width: 680px; margin: 0 auto; }
.cta-reservation h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--d-creme);
  margin-bottom: 24px;
}
.cta-reservation p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(246,236,218,0.75);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

/* =============================================================================
   MARCHÉS — pages dédiées
   ============================================================================= */

section.hero-marche {
  background: var(--d-noir);
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(24px, 5vw, 64px) 80px;
}
.hero-marche .inner { max-width: var(--d-max-w); margin: 0 auto; }
.breadcrumb {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.4);
  margin-bottom: 28px;
  display: block;
}
.breadcrumb a { color: var(--d-cuivre); text-decoration: none; }
.hero-marche .eyebrow {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-marche .eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--d-cuivre); }
.hero-marche h1 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--d-white);
  margin-bottom: 20px;
}
.hero-marche h2 {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--d-taupe);
  max-width: 560px;
  margin-bottom: 40px;
}
.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(188,121,66,0.35);
  color: var(--d-taupe);
}
.badge strong { color: var(--d-white); font-weight: 400; }

section.infos-pratiques {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 64px);
}
.infos-pratiques .inner {
  max-width: var(--d-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.info-bloc h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1;
  color: var(--d-noir);
  margin-bottom: 32px;
}
.info-list { list-style: none; border-top: 1px solid rgba(0,0,0,0.1); }
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 16px;
}
.info-key {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.info-val {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 15px;
  color: #3a2e22;
  text-align: right;
  line-height: 1.5;
}
.info-val strong { color: var(--d-noir); font-weight: 400; display: block; }
.maps-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  text-decoration: none;
  border-bottom: 1px solid rgba(188,121,66,0.4);
  padding-bottom: 2px;
  transition: opacity 200ms ease;
}
.maps-link:hover { opacity: 0.65; color: var(--d-cuivre); text-decoration: none; }
.ph-map {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1a1410;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-map::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg,#130e08,#22180c 55%,#0d0906); }
.ph-map-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--d-cuivre);
  color: var(--d-cuivre);
  text-decoration: none;
  transition: opacity 200ms ease;
}
.ph-map-btn:hover { opacity: 0.7; color: var(--d-cuivre); text-decoration: none; }
@media (max-width: 768px) {
  .infos-pratiques .inner { grid-template-columns: 1fr; }
}

section.description-marche {
  background: var(--d-noir);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 64px);
}
.description-marche .inner { max-width: 760px; margin: 0 auto; }
.description-marche .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 24px;
  display: block;
}
.description-marche p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--d-taupe);
  margin-bottom: 24px;
}
.description-marche p:last-child { margin-bottom: 0; }
/* Spécificité 0,2,0 pour battre .description-marche p (0,1,1) */
.description-marche .note-absence {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(201,182,152,0.45);
  border-top: 1px solid rgba(188,121,66,0.15);
  padding-top: 20px;
  margin-top: 36px;
}
.description-marche .note-saisonniere {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(201,182,152,0.6);
  border-top: 1px solid rgba(188,121,66,0.15);
  padding-top: 20px;
  margin-top: 36px;
  margin-bottom: 0;
}

section.stand-produits {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 64px);
}
.stand-produits .inner { max-width: var(--d-max-w); margin: 0 auto; }
.stand-produits .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 20px;
  display: block;
}
.stand-produits h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1;
  color: var(--d-noir);
  margin-bottom: 40px;
}
.produits-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 36px;
}
.strip-item { background: var(--d-creme); padding: 24px 20px; }
.strip-nom {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--d-noir);
  margin-bottom: 6px;
}
.strip-prix {
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--d-cuivre);
}
.produits-lien {
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  text-decoration: none;
  border-bottom: 1px solid rgba(188,121,66,0.4);
  padding-bottom: 2px;
  transition: opacity 200ms ease;
}
.produits-lien:hover { opacity: 0.65; color: var(--d-cuivre); text-decoration: none; }
@media (max-width: 600px) {
  .produits-strip { grid-template-columns: 1fr 1fr; }
}

section.cta-resa {
  background: var(--d-cuivre);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.cta-resa .inner { max-width: 600px; margin: 0 auto; }
.cta-resa img { height: 64px; opacity: 0.45; filter: brightness(10); margin-bottom: 28px; display: block; margin-left: auto; margin-right: auto; }
.cta-resa h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.1;
  color: var(--d-creme);
  margin-bottom: 16px;
}
.cta-resa p {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(246,236,218,0.75);
  margin-bottom: 36px;
}

section.autres-marches {
  background: var(--d-noir);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 64px);
}
.autres-marches .inner { max-width: var(--d-max-w); margin: 0 auto; }
.autres-marches .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 20px;
  display: block;
}
.autres-marches h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--d-white);
  margin-bottom: 40px;
}
.marches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(188,121,66,0.12);
}
.marche-card {
  background: #080604;
  padding: 36px 32px;
  text-decoration: none;
  display: block;
  transition: background 200ms ease;
}
.marche-card:hover { background: #0f0b08; }
.mc-ville {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--d-white);
  margin-bottom: 6px;
}
.mc-lieu {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 14px;
  display: block;
}
.mc-horaire {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--d-taupe);
  line-height: 1.6;
}
.retour-link {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,182,152,0.2);
  padding-bottom: 2px;
  transition: color 200ms ease;
}
.retour-link:hover { color: var(--d-taupe); text-decoration: none; }
@media (max-width: 600px) {
  .marches-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   PAGE MARCHÉS HUB
   ============================================================================= */

section.hero-marches-hub {
  background: var(--d-noir);
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(24px, 5vw, 64px) 80px;
}
.hero-marches-hub .inner { max-width: var(--d-max-w); margin: 0 auto; }
.hero-marches-hub .eyebrow {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-marches-hub .eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--d-cuivre); }
.hero-marches-hub h1 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--d-white);
  margin-bottom: 36px;
}
.hero-marches-hub .subtitle {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--d-taupe);
  max-width: 500px;
  letter-spacing: 0.02em;
}

section.marches-hub-grid {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
}
.marches-hub-grid .inner { max-width: var(--d-max-w); margin: 0 auto; }
.marches-hub-grid .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.1);
}
.marche-hub-card {
  background: var(--d-creme);
  padding: 48px 40px 56px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 200ms ease;
}
.marche-hub-card:hover { background: #ede3cf; }
.hub-ville {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  color: var(--d-noir);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hub-lieu {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 32px;
  display: block;
}
.hub-horaire {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: #4a3c2c;
  margin-bottom: auto;
  padding-bottom: 48px;
}
.hub-link {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  border-bottom: 1px solid rgba(188,121,66,0.4);
  padding-bottom: 2px;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .marches-hub-grid .grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   RÉSERVATION — formulaire public
   ============================================================================= */

section.hero-resa {
  background: var(--d-noir);
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(24px, 5vw, 64px) 80px;
}
.hero-resa .inner { max-width: var(--d-max-w); margin: 0 auto; }
.hero-resa .eyebrow {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-resa .eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--d-cuivre); }
.hero-resa h1 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--d-white);
  margin-bottom: 32px;
}
.hero-resa .subtitle {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--d-taupe);
  max-width: 560px;
}

section.resa-form-section {
  background: var(--d-creme);
  color: var(--d-noir);
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 64px);
}
.resa-form-section .inner { max-width: 880px; margin: 0 auto; }
.resa-form-section .label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 18px;
  display: block;
}
.resa-form-section h2 {
  font-family: var(--d-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  color: var(--d-noir);
  margin-bottom: 12px;
}
.resa-form-section .lead {
  font-family: var(--d-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: #4a3c2c;
  max-width: 600px;
  margin-bottom: 56px;
}

.resa-form { display: grid; gap: 20px 24px; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.form-label .req { color: var(--d-cuivre); margin-left: 4px; }
.form-input,
.form-select,
.form-textarea {
  font-family: var(--d-font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--d-noir);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--d-cuivre);
  box-shadow: 0 0 0 1px var(--d-cuivre);
}
.form-textarea { min-height: 120px; resize: vertical; font-family: var(--d-font-body); }
.form-help {
  font-family: var(--d-font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(0,0,0,0.5);
  margin-top: -2px;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.form-disclaimer {
  font-family: var(--d-font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(0,0,0,0.55);
  max-width: 380px;
  line-height: 1.6;
}
.form-submit {
  font-family: var(--d-font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 44px;
  background: var(--d-noir);
  color: var(--d-creme);
  border: 1px solid var(--d-noir);
  cursor: pointer;
  transition: opacity 200ms ease;
}
.form-submit:hover:not(:disabled) { opacity: 0.78; }
.form-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.form-feedback {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 18px 22px;
  border-left: 3px solid;
  font-family: var(--d-font-body);
  font-size: 14px;
  line-height: 1.6;
}
.form-feedback.success {
  background: rgba(188,121,66,0.08);
  border-color: var(--d-cuivre);
  color: #3a2e22;
}
.form-feedback.error {
  background: rgba(180,40,40,0.07);
  border-color: #b22222;
  color: #6c1818;
}
.form-feedback[hidden] { display: none; }

@media (max-width: 640px) {
  .resa-form { grid-template-columns: 1fr; }
}

/* ── Alternatives rapides (WhatsApp / téléphone) ── */
section.resa-alt-section {
  background: var(--d-noir);
  color: var(--d-white);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 64px) clamp(40px, 5vw, 56px);
  border-top: 1px solid rgba(188,121,66,0.15);
  text-align: center;
}
.resa-alt-section .inner { max-width: 720px; margin: 0 auto; }
.resa-alt-section .alt-label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
  margin-bottom: 24px;
  display: block;
}
.alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}
.alt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid rgba(188,121,66,0.4);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}
.alt-btn:hover { background: rgba(188,121,66,0.08); border-color: var(--d-cuivre); text-decoration: none; }
.alt-btn-label {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-cuivre);
}
.alt-btn-value {
  font-family: var(--d-font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--d-white);
}
.resa-alt-section .alt-or {
  font-family: var(--d-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,182,152,0.45);
  margin-top: 32px;
}
@media (max-width: 480px) {
  .alt-grid { grid-template-columns: 1fr; }
}
