:root {
  --or:        #C9922A;
  --or-clair:  #E8B84B;
  --or-sombre: #9A6B18;
  --noir:      #0D0B08;
  --noir-soft: #1A1612;
  --creme:     #FAF6EE;
  --creme-sombre: #EDE5D4;
  --texte:     #1A1612;
  --texte-clair: #6B5A3E;
  --blanc:     #FFFFFF;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--creme);
  color: var(--texte);
  font-size: 16px;
  line-height: 1.75;
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,11,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,146,42,0.3);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
}

.logo-img {
  height: 46px;
  width: auto;
  filter: brightness(1.05);
}

nav { display: flex; gap: 0; }
nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 1.2rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
nav a:hover, nav a.active {
  color: var(--or-clair);
  border-bottom-color: var(--or);
}

.burger { display:none; background:none; border:none; cursor:pointer; color:var(--or-clair); font-size:1.6rem; }

/* ═══════════════════════════════
   PAGES
═══════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════
   HERO — PAGE ACCUEIL
═══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hd_vinaillou.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,8,0.55) 0%,
    rgba(13,11,8,0.35) 40%,
    rgba(13,11,8,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(201,146,42,0.4));
  animation: fadeDown 1.2s ease both;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or-clair);
  animation: fadeUp 1.2s 0.3s ease both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--blanc);
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeUp 1.2s 0.5s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--or-clair);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  font-weight: 300;
  animation: fadeUp 1.2s 0.7s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1.2s 0.9s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1.2s 1.2s ease both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollLine 2s 2s infinite;
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-gold {
  background: var(--or);
  color: var(--noir);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.5);
  font-weight: 400;
}
.btn-outline:hover {
  border-color: var(--or);
  color: var(--or-clair);
}

.btn-dark {
  background: var(--noir);
  color: var(--or-clair);
  border: 1px solid var(--or-sombre);
  font-weight: 700;
}
.btn-dark:hover {
  background: var(--or);
  color: var(--noir);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   SECTION GÉNÉRIQUE
═══════════════════════════════ */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--noir);
  line-height: 1.15;
}

.title-rule {
  width: 48px;
  height: 2px;
  background: var(--or);
  margin: 1.2rem 0 1.6rem;
}
.title-rule.centered { margin: 1.2rem auto 1.6rem; }

/* ═══════════════════════════════
   SPECIALITÉ — bande noir+image
═══════════════════════════════ */
.specialite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.specialite-img {
  position: relative;
  overflow: hidden;
}
.specialite-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.specialite-img:hover img { transform: scale(1.04); }

.specialite-text-panel {
  background: var(--noir);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.specialite-text-panel::before {
  content: '"';
  position: absolute;
  top: 2rem; left: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: rgba(201,146,42,0.12);
  line-height: 1;
  pointer-events: none;
}

.specialite-text-panel .section-eyebrow { color: var(--or-clair); }
.specialite-text-panel .section-title { color: var(--blanc); }
.specialite-text-panel p { color: rgba(255,255,255,0.68); margin-bottom: 1.2rem; font-weight: 300; }

/* ═══════════════════════════════
   FABRICATION — creme section
═══════════════════════════════ */
.fabrication {
  background: var(--creme);
  padding: 6rem 2rem;
}
.fabrication-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fabrication-img-wrap {
  position: relative;
}
.fabrication-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.fabrication-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--or);
  color: var(--noir);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.fabrication-badge strong { font-size: 1.4rem; display: block; }

/* ═══════════════════════════════
   PRODUITS — fond noir
═══════════════════════════════ */
.produits-section {
  background: var(--noir);
  padding: 6rem 2rem;
}
.produits-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.produits-header .section-title { color: var(--blanc); }

.produits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.produit-card {
  position: relative;
  background: var(--noir-soft);
  overflow: hidden;
  border: 1px solid rgba(201,146,42,0.15);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.produit-card:hover {
  border-color: var(--or);
  transform: translateY(-4px);
}

.produit-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.produit-card:hover .produit-card-img { transform: scale(1.04); }

.produit-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.produit-card-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.4rem;
}
.produit-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blanc);
}

.produit-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--or);
  color: var(--noir);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

/* ═══════════════════════════════
   AVIS
═══════════════════════════════ */
.avis-section {
  background: var(--creme-sombre);
  padding: 6rem 2rem;
}
.avis-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.avis-header { text-align: center; margin-bottom: 3rem; }
.avis-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blanc);
  padding: 0.7rem 1.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--texte);
  border-left: 3px solid var(--or);
}
.avis-stars-gold { color: var(--or); font-size: 1rem; letter-spacing: 2px; }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.avis-card {
  background: var(--blanc);
  padding: 2rem 1.8rem;
  border-top: 3px solid var(--or);
  position: relative;
}
.avis-card::after {
  content: '"';
  position: absolute;
  bottom: 1rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(201,146,42,0.1);
  line-height: 1;
}
.avis-stars { color: var(--or); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.avis-text { font-style: italic; color: var(--texte-clair); margin-bottom: 1.2rem; font-size: 0.93rem; line-height: 1.7; }
.avis-author { font-weight: 700; font-size: 0.85rem; color: var(--texte); }
.avis-date { font-size: 0.75rem; color: var(--texte-clair); margin-top: 0.2rem; }

/* ═══════════════════════════════
   CONTACT — accueil
═══════════════════════════════ */
.contact-band {
  background: var(--noir);
  padding: 6rem 2rem;
}
.contact-band-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-band .section-title { color: var(--blanc); }
.contact-band .section-eyebrow { color: var(--or-clair); }
.contact-band p { color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 1rem; }

.contact-info-list { list-style: none; margin-top: 2rem; }
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.ci-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* FORM */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--blanc);
  padding: 0.85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--or);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
#form-msg { display:none; padding:0.9rem 1rem; margin-bottom:1rem; font-size:0.85rem; }

/* ═══════════════════════════════
   PAGE PRODUITS
═══════════════════════════════ */
.page-hero-small {
  padding: 9rem 2rem 4rem;
  background: var(--noir);
  text-align: center;
}
.page-hero-small .section-title { color: var(--blanc); }

.produits-page-section {
  background: var(--creme);
  padding: 5rem 2rem;
}
.produits-page-inner { max-width: 1200px; margin: 0 auto; }

.fabrication-page {
  background: var(--blanc);
  padding: 5rem 2rem;
}
.fabrication-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fabrication-page-inner img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.fabrication-page-inner p { color: var(--texte-clair); margin-bottom: 1rem; }

.detail-list { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }

.detail-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--creme-sombre);
  align-items: start;
}
.detail-item:last-child { border-bottom: none; }

.detail-item-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.detail-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 0.3rem;
}
.detail-gamme {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.2rem;
}
.detail-item p { color: var(--texte-clair); margin-bottom: 0.8rem; font-size: 0.93rem; }
.detail-ingredients {
  background: var(--creme);
  padding: 1.2rem 1.5rem;
  margin-top: 1rem;
  border-left: 3px solid var(--or);
}
.detail-ingredients h5 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or-sombre);
  margin-bottom: 0.5rem;
}
.detail-ingredients p { color: var(--texte-clair); font-size: 0.83rem; margin: 0; }

.info-no-shipping {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 2px solid var(--or);
}
.info-no-shipping strong { color: var(--or-clair); }

/* ═══════════════════════════════
   PAGE VISITER
═══════════════════════════════ */
.visiter-section {
  background: var(--creme);
  padding: 5rem 2rem;
}
.visiter-inner { max-width: 1100px; margin: 0 auto; }

.visiter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.horaires-card, .visite-card {
  background: var(--blanc);
  padding: 2.5rem;
  border-top: 3px solid var(--or);
}
.horaires-card h3, .visite-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 1.5rem;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--creme-sombre);
  font-size: 0.88rem;
}
.horaire-row:last-child { border: none; }
.jour { color: var(--texte-clair); font-weight: 400; }
.heure { font-weight: 700; color: var(--texte); }
.ferme { color: #c62828; font-weight: 700; }

.visite-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
}
.visite-card p { color: var(--texte-clair); font-size: 0.9rem; margin-bottom: 0.7rem; }

.map-block {
  margin-top: 3rem;
  background: var(--blanc);
  padding: 2.5rem;
  border-top: 3px solid var(--or);
}
.map-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 1.5rem;
}
.map-placeholder {
  background: var(--creme-sombre);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--texte-clair);
  font-size: 0.9rem;
}
.map-placeholder .map-icon { font-size: 3rem; }

.btn-itineraire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: var(--noir);
  color: var(--or-clair);
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 1px solid var(--or-sombre);
  transition: background 0.2s;
}
.btn-itineraire:hover { background: var(--or); color: var(--noir); }

.camping-card {
  margin-top: 2rem;
  background: var(--noir);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.camping-icon { font-size: 2.8rem; flex-shrink: 0; }
.camping-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--or-clair); margin-bottom: 0.5rem; }
.camping-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.passion-badge {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--or);
  color: var(--or-clair);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ═══════════════════════════════
   PAGE CONTACT
═══════════════════════════════ */
.contact-page-section {
  background: var(--creme);
  padding: 5rem 2rem;
}
.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}
.contact-page-infos h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 0.5rem;
}
.info-block {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--creme-sombre);
  align-items: flex-start;
}
.info-block:last-child { border: none; }
.info-icon-box {
  width: 42px;
  height: 42px;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-block-text strong { display: block; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--or-sombre); margin-bottom: 0.3rem; }
.info-block-text span { color: var(--texte-clair); font-size: 0.9rem; }

.contact-form-box { background: var(--blanc); padding: 2.5rem; border-top: 3px solid var(--or); }
.contact-form-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--noir); margin-bottom: 2rem; }
.contact-page-section .form-field label { color: var(--texte-clair); }
.contact-page-section .form-field input,
.contact-page-section .form-field select,
.contact-page-section .form-field textarea {
  background: var(--creme);
  border-color: var(--creme-sombre);
  color: var(--texte);
}
.contact-page-section .form-field input:focus,
.contact-page-section .form-field select:focus,
.contact-page-section .form-field textarea:focus {
  border-color: var(--or);
}
#form-msg-contact { display:none; padding:0.9rem 1rem; margin-bottom:1rem; font-size:0.85rem; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--noir);
  padding: 4rem 2rem 0;
  border-top: 1px solid rgba(201,146,42,0.3);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.footer-logo { height: 52px; margin-bottom: 1.5rem; }
.footer-section p, .footer-section a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-section a:hover { color: var(--or-clair); }
.footer-section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,146,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: var(--or); background: rgba(201,146,42,0.1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .produits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--noir); padding: 1rem 0; border-bottom: 1px solid rgba(201,146,42,0.2); }
  nav.open { display: flex; }
  nav a { height: auto; padding: 0.8rem 2rem; border: none; }
  .burger { display: block; }

  .specialite { grid-template-columns: 1fr; }
  .specialite-img { aspect-ratio: 4/3; }
  .specialite-text-panel { padding: 3rem 2rem; }

  .fabrication-inner, .fabrication-page-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fabrication-badge { display: none; }

  .produits-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }

  .contact-band-inner, .contact-page-inner { grid-template-columns: 1fr; gap: 3rem; }

  .visiter-grid { grid-template-columns: 1fr; }

  .detail-item { grid-template-columns: 1fr; }
  .detail-item-img { aspect-ratio: 16/9; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero-logo { height: 80px; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ── WordPress overrides ── */
.page { display: block !important; }
body { padding-top: 72px; } /* compensate fixed header */

/* ══════════════════════════════════
   CORRECTIONS WORDPRESS
══════════════════════════════════ */

/* Supprimer la barre blanche sous le header */
body { padding-top: 0 !important; margin-top: 0 !important; }
body.admin-bar header { top: 32px; }
#wpadminbar + * { margin-top: 0; }

/* Le header est fixed, le contenu commence sous lui */
.hero { margin-top: 0; }
section:first-of-type { margin-top: 0; }

/* Images produits — ne pas dépasser leur conteneur */
.produit-card-img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #0D0B08;
  display: block;
}


/* Section fabrication — supprimer le badge */
.fabrication-badge { display: none !important; }

/* Fabrication image — taille correcte */
.fabrication-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Avis — espacement correct */
.avis-section { padding: 5rem 2rem; }
.avis-grid { margin-top: 2rem; gap: 1.5rem; }
.avis-card { padding: 2rem; }

/* Contact band — espacement correct */
.contact-band { padding: 5rem 2rem; }
.contact-band-inner { gap: 4rem; }

/* Images detail produits */
.detail-item-img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #0D0B08;
  display: block;
}

/* Logo footer taille raisonnable */
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
}

/* Logo header taille raisonnable */
.logo-img { height: 46px; width: auto; object-fit: contain; }
.logo-header img { height: 46px; width: auto; }

/* WordPress custom-logo override */
.custom-logo-link img, .custom-logo { height: 46px !important; width: auto !important; }
.footer-section .custom-logo-link img { height: 52px !important; }

/* ══════════════════════════════════
   SECTION SPÉCIALITÉ ACCUEIL
══════════════════════════════════ */
.specialite-accueil {
  background: var(--creme);
  padding: 0;
}
.specialite-accueil-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.specialite-accueil-img {
  overflow: hidden;
}
.specialite-accueil-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.specialite-accueil-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--creme);
}
.spec-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.6rem;
  display: block;
}
.spec-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--noir);
  line-height: 1.15;
  margin-bottom: 0;
}
.spec-rule {
  width: 40px;
  height: 2px;
  background: var(--or);
  margin: 1.2rem 0;
}
.spec-sub {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texte-clair);
  margin-bottom: 1rem;
}
.specialite-accueil-text p {
  color: var(--texte-clair);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.specialite-accueil-text .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ══════════════════════════════════
   GAMME / CAROUSEL (styles ref HTML)
══════════════════════════════════ */
.fabrication-section {
  padding: 4rem 2rem;
  background: var(--creme);
}
.fabrication-section .fabrication-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fabrication-section .fabrication-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--creme-sombre);
}
.fabrication-section .fabrication-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--noir);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.fabrication-section .fabrication-text p {
  color: var(--texte-clair);
  margin-bottom: 1rem;
}

.gamme-section {
  padding: 4rem 2rem;
  background: var(--blanc);
}
.gamme-header {
  max-width: 1100px;
  margin: 0 auto 2rem;
  text-align: center;
}
.gamme-header p { color: var(--texte-clair); margin-top: 0.5rem; }
.gamme-header .section-title { color: var(--noir); }

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--or);
  margin: 1rem auto 1.5rem;
}

.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s ease;
}
.product-card {
  min-width: calc(25% - 1.125rem);
  background: var(--blanc);
  border: 1.5px solid var(--creme-sombre);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: default;
  text-decoration: none;
}
.product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card-body {
  padding: 1rem;
  text-align: center;
  background: var(--blanc);
}
.product-card-body h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--noir);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.btn-plus {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--noir);
  color: var(--or-clair);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-top: 0.3rem;
}
.btn-plus:hover { background: var(--or); color: var(--noir); }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--noir);
  background: transparent;
  color: var(--noir);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-arrow:hover { background: var(--noir); color: var(--or-clair); }

.info-box {
  max-width: 700px;
  margin: 2.5rem auto 0;
  background: var(--creme);
  border-left: 3px solid var(--or);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--texte-clair);
}

.produit-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.detail-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--creme-sombre);
  align-items: start;
}
.detail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.label-badge {
  display: inline-block;
  background: var(--noir);
  color: var(--or-clair);
  font-size: 0.68rem;
  padding: 4px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.8rem;
}
.detail-info h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--noir);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.detail-info .poids {
  color: var(--or-sombre);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.detail-info p { color: var(--texte-clair); margin-bottom: 1rem; font-size: 0.93rem; }
.ingredients-box {
  background: var(--creme);
  border-left: 3px solid var(--or);
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}
.ingredients-box h5 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or-sombre);
  margin-bottom: 0.5rem;
}
.ingredients-box p { font-size: 0.85rem; color: var(--texte-clair); margin: 0; }


/* Responsive produits */
@media (max-width: 900px) {
  .product-card { min-width: calc(50% - 0.75rem); }
  .detail-card { grid-template-columns: 1fr; }
  .specialite-accueil-inner { grid-template-columns: 1fr; }
  .specialite-accueil-text { padding: 2.5rem 1.5rem; }
  .fabrication-section .fabrication-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 580px) {
  .product-card { min-width: 100%; }
}

/* ══════════════════════════════════
   CORRECTIONS GLOBALES v4
══════════════════════════════════ */

/* SLIDER avec vraies photos */
.slider-section {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: var(--noir);
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}
.slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,11,8,0.55);
  border: 1px solid rgba(201,146,42,0.4);
  color: var(--or-clair);
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  line-height: 1;
  padding: 0;
}
.slider-btn:hover { background: var(--or); color: var(--noir); }
.slider-btn.prev { left: 1.5rem; }
.slider-btn.next { right: 1.5rem; }
.slider-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.dot.active { background: var(--or); }

/* CAROUSEL — boucle infinie via JS, pas de border noir sur nom */
.product-card-name,
.product-card-body h4 {
  border: none !important;
  background: transparent !important;
  color: var(--noir) !important;
  font-family: 'Cormorant Garamond', serif;
}
.label-badge {
  background: var(--or-sombre) !important;
  color: var(--blanc) !important;
  border: none !important;
  border-radius: 0 !important;
}

/* VISITER — camping card sans fond noir */
.camping-card {
  background: var(--creme-sombre);
  border-left: 3px solid var(--or);
  padding: 1.8rem 2rem;
  margin-top: 2rem;
  display: block;
}
.camping-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 0.5rem;
}
.camping-card p { color: var(--texte-clair); font-size: 0.9rem; margin: 0; }
.camping-icon { display: none; }
.passion-badge { display: none; }

/* BOUTON ITINÉRAIRE en vert */
.btn-itineraire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  background: #2E7D32;
  color: #fff;
  padding: 0.85rem 1.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
  font-family: 'Lato', sans-serif;
}
.btn-itineraire:hover { background: #1B5E20; }

/* VISITER — card infos propres */
.visite-infos {
  margin: 1rem 0;
  border-top: 1px solid var(--creme-sombre);
  border-bottom: 1px solid var(--creme-sombre);
  padding: 0.8rem 0;
}
.visite-info-row {
  display: flex;
  gap: 0.8rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
}
.visite-info-row strong { color: var(--noir); min-width: 90px; flex-shrink: 0; }
.visite-info-row span { color: var(--texte-clair); }
.visite-conseil { font-size: 0.88rem; color: var(--texte-clair); margin-bottom: 1.2rem; }
.horaires-note { font-size: 0.78rem; color: var(--texte-clair); margin-top: 0.8rem; }

/* MAP placeholder sans emojis */
.map-placeholder {
  background: var(--creme-sombre);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--texte-clair);
  font-size: 0.88rem;
  text-align: center;
}
.map-icon { display: none; }
.map-sub { font-size: 0.78rem; opacity: 0.7; }

/* FOOTER — icônes SVG réseaux sociaux */
.footer-tel {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: 0.8rem;
  transition: color 0.2s;
}
.footer-tel:hover { color: var(--or-clair); }
.social-btn svg { display: block; }

/* CONTACT — icônes SVG */
.info-icon-box {
  width: 38px;
  height: 38px;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or-clair);
  flex-shrink: 0;
}

/* CONTACT LIST accueil — sans box noire */
.contact-info-list { list-style: none; margin-top: 1.5rem; }
.contact-info-list li {
  display: flex;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  align-items: baseline;
}
.ci-label {
  color: var(--or-clair);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  min-width: 70px;
  flex-shrink: 0;
}

/* Typo cohérente partout */
h3.section-title, .horaires-card h3, .visite-card h3, .map-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--noir);
  margin-bottom: 1.2rem;
  letter-spacing: 0;
}
.horaires-card h3, .visite-card h3 {
  border-bottom: 2px solid var(--or);
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
}

/* ══════════════════════════════════
   CORRECTIONS v5
══════════════════════════════════ */

/* Boutons avec flèche — alignement SVG */
.btn { align-items: center; gap: 0.5rem; }
.btn svg { flex-shrink: 0; }

/* Specialite accueil — fond noir pour le panneau texte */
.specialite-accueil-text {
  background: var(--noir) !important;
  padding: 4rem !important;
}
.specialite-accueil-text .spec-eyebrow { color: var(--or-clair); }
.specialite-accueil-text .spec-title { color: var(--blanc); }
.specialite-accueil-text .spec-sub { color: rgba(255,255,255,0.5); }
.specialite-accueil-text p { color: rgba(255,255,255,0.68); }
.specialite-accueil-text .spec-rule { background: var(--or); }

/* Map embed */
.map-embed {
  width: 100%;
  overflow: hidden;
  background: var(--creme-sombre);
}
.map-embed iframe { display: block; width: 100%; }
.map-placeholder { display: none; }

/* Camping card — émoji visible */
.camping-card h4 { font-size: 1.1rem; }

/* Btn arrows sur page produits aussi */
.btn-dark svg, .btn-gold svg, .btn-outline svg { vertical-align: middle; }

/* ══════════════════════════════════
   CORRECTIONS v6
══════════════════════════════════ */

/* CONTACT — supprimer les boîtes noires autour des icônes */
.info-icon-box { display: none !important; }
.info-block {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--creme-sombre);
}
.info-block:last-child { border: none; }
.info-block-text { display: block; }
.info-block-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or-sombre);
  margin-bottom: 0.25rem;
}
.info-block-text span {
  color: var(--texte-clair);
  font-size: 0.92rem;
}

/* FOOTER — police correcte, cohérente */
footer, footer * {
  font-family: 'Lato', sans-serif !important;
}
.footer-section h4 {
  font-family: 'Lato', sans-serif !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-section a, .footer-section p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer-section a:hover { color: var(--or-clair); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin: 1rem 0 1.2rem;
  line-height: 1.7;
}

/* FOOTER icônes sociales — couleur naturelle, pas fluo */
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  background: none;
}
.social-btn:hover {
  color: var(--or-clair);
  border-color: var(--or-sombre);
}
.social-btn svg { display: block; }

/* FOOTER logo — taille lisible sur fond noir */
.footer-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Le logo PNG a fond noir — il s'intègre naturellement au footer */
}

/* HEADER logo nouveau */
.logo-header img, .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* VISITER — liste propre sans puces emoji */
.visite-liste {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  border-top: 1px solid var(--creme-sombre);
  border-bottom: 1px solid var(--creme-sombre);
  padding: 0.6rem 0;
}
.visite-liste li {
  font-size: 0.88rem;
  color: var(--texte-clair);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.visite-liste li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or);
}
.visite-tel {
  font-size: 0.88rem;
  color: var(--texte-clair);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.visite-tel a {
  color: var(--noir);
  font-weight: 700;
  text-decoration: none;
}
.visite-tel a:hover { color: var(--or-sombre); }

/* AVIS — indentation cohérente sur toutes les cartes */
.avis-card {
  padding: 2rem !important;
  display: flex;
  flex-direction: column;
}
.avis-text {
  flex: 1;
  font-style: italic;
  color: var(--texte-clair);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.avis-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--texte);
  margin-top: auto;
}
.avis-date {
  font-size: 0.75rem;
  color: var(--texte-clair);
  margin-top: 0.15rem;
}

/* ══════════════════════════════════

/* Logo header — plus grand mais header reste 72px */
.logo-header img, .logo-img,
.logo-header .custom-logo {
  height: 62px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  /* Le logo déborde légèrement, overflow visible */
}
.logo-header {
  overflow: visible;
}

/* Logo footer — plus grand, footer inchangé */
.footer-logo,
.footer-brand .custom-logo-link img {
  height: 80px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}

/* Logo hero — agrandi aussi */
.hero-logo {
  height: 140px !important;
  width: auto;
  filter: drop-shadow(0 2px 16px rgba(201,146,42,0.3));
}

/* Cartes produits — fond neutre maintenant que les images sont transparentes */
.product-card-img {
  background: var(--creme) !important;
}


/* ══════════════════════════════════

/* LOGO — plus grand visuellement sans changer la hauteur du header/footer */
.logo-header img, .logo-img, .logo-header .custom-logo {
  height: 56px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
}
/* Hero logo — encore plus grand */
.hero-logo {
  height: 140px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 16px rgba(201,146,42,0.3));
}
/* Footer logo */
.footer-logo, .footer-brand .custom-logo-link img {
  height: 70px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
}

/* PRODUITS — fond neutre creme pour les images transparentes */
.product-card-img {
  background: var(--creme) !important;
}


/* ══════════════════════════════════
   SECTION HISTOIRE (accueil)
══════════════════════════════════ */
.histoire-section {
  background: var(--creme);
  padding: 5rem 2rem;
}
.histoire-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.histoire-text p {
  color: var(--texte-clair);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.histoire-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Produits — images photo (pas transparentes) bien cadrées */

@media (max-width: 768px) {
  .histoire-inner { grid-template-columns: 1fr; gap: 2rem; }
  .histoire-img img { height: 280px; }
}

/* ══════════════════════════════════





/* ══════════════════════════════════






/* ══════════════════════════════════
   PRODUITS — règles définitives uniques
══════════════════════════════════ */

/* Carrousel */
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
  display: block;
}
.product-card-img--cover img {
  object-fit: cover;
  padding: 0;
}
.product-card-img--dark {
  background: #1a1208 !important;
}

/* Fiches détail */
.detail-img {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  display: block;
}
.detail-img--cover img {
  object-fit: cover;
  padding: 0;
}
#detail-cointreau .detail-img {
  background: #1a1208 !important;
}

/* ══════════════════════════════════
   CORRECTIONS v10 — bordeaux + logo + horaires
══════════════════════════════════ */

/* Couleur bordeaux var(--or) */
:root { --bordeaux: var(--or); --bordeaux-clair: var(--or-clair); }

.btn-bordeaux {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  background: var(--or);
  color: #fff;
  font-weight: 700;
}
.btn-bordeaux:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(127,20,38,0.35);
}

/* Appliquer bordeaux sur certains éléments clés */
.section-eyebrow { color: var(--or) !important; }
.title-rule { background: var(--or) !important; }
.section-divider { background: var(--or) !important; }
.spec-eyebrow { color: var(--or) !important; }
.spec-rule { background: var(--or) !important; }
.avis-stars, .avis-stars-gold { color: var(--or) !important; }
.horaires-card h3, .visite-card h3, .map-block h3 {
  border-bottom-color: var(--or) !important;
}
.visite-liste li::before { color: var(--or) !important; }
.label-badge { background: var(--or) !important; color: #fff !important; }
nav a.active, nav a:hover { color: #fff !important; border-bottom-color: var(--or) !important; }
.btn-itineraire { background: var(--or) !important; }
.btn-itineraire:hover { background: var(--or-clair) !important; }

/* Logo — bien plus grand */
.logo-header img, .logo-img, .logo-header .custom-logo {
  height: 72px !important;
  width: auto !important;
}
.hero-logo {
  height: 200px !important;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(201,146,42,0.3));
}
.footer-logo, .footer-brand img {
  height: 80px !important;
  width: auto !important;
}

/* Horaires — sections par période */
.horaires-periode {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--creme-sombre);
}
.horaires-periode:last-of-type { border-bottom: none; margin-bottom: 0; }
.periode-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.horaires-fermeture .periode-label { color: #666; }

/* reCaptcha responsive */
.g-recaptcha { transform-origin: left; }
@media (max-width: 400px) {
  .g-recaptcha { transform: scale(0.85); }
}

/* Dénomination sociale — smooth reveal */
#denomination-field {
  overflow: hidden;
  transition: opacity 0.25s;
}

/* ══════════════════════════════════
   CORRECTIONS v11
══════════════════════════════════ */

/* Cointreau — fond blanc comme tous les autres */
#detail-cointreau .detail-img { background: #fff !important; }
.product-card-img--dark        { background: #fff !important; }

/* Badge nouveauté inline dans carousel */
.card-badge-new {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-size: 0.58rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 6px;
  vertical-align: middle;
  margin-left: 4px;
  font-weight: 700;
}

/* Poids — affichage discret */
.detail-info .poids {
  color: var(--or);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Carousel — hauteur suffisante pour les sachets verticaux */
.product-card-img {
  aspect-ratio: 2/3 !important;
}

/* Fiches détail — rectangle portrait pour voir le sachet entier */
.detail-img {
  aspect-ratio: 3/4 !important;
}

/* ══════════════════════════════════
   RUBAN NOUVEAUTÉ carousel
══════════════════════════════════ */
.product-card--new .product-card-img {
  position: relative;
}
.card-ribbon {
  position: absolute;
  top: 18px;
  left: -4px;
  background: var(--noir);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  line-height: 1;
  /* Ruban avec queue */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 6px 50%);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════
   BADGES VEGAN + DDM LINE
══════════════════════════════════ */
.vegan-badge {
  display: inline-block;
  background: #2E7D32;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-left: 6px;
  vertical-align: middle;
}
.ddm-line {
  font-size: 0.78rem;
  color: var(--texte-clair);
  font-style: italic;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--creme-sombre);
}

/* ══════════════════════════════════
   SLIDER FABRICATION (nos produits)
══════════════════════════════════ */
.fab-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fab-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fab-slide.active { opacity: 1; }
.fab-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ══════════════════════════════════
   BANDEAU SÉLECTION PRODUITS
══════════════════════════════════ */
.selection-bandeau {
  background: var(--noir);
  border-top: 3px solid var(--or);
  padding: 1.4rem 2rem;
}
.selection-bandeau-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.selection-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or-clair);
  flex-shrink: 0;
}
.selection-bandeau-inner > div:nth-child(2) {
  flex: 1;
  min-width: 200px;
}
.selection-bandeau strong {
  display: block;
  color: var(--or-clair);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: 0.3px;
}
.selection-bandeau span {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Lien avis Google */
.avis-google-link {
  display: inline-flex;
  align-items: center;
  color: var(--or-sombre);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.avis-google-link:hover { color: var(--or); }
.avis-source {
  font-size: 0.72rem;
  color: var(--or);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sous-titre gamme — extrait discret */
.gamme-extrait {
  font-size: 0.82rem;
  color: var(--texte-clair);
  margin-top: 0.5rem;
  font-style: italic;
}
.gamme-extrait-link {
  color: var(--or-sombre);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--or-sombre);
  transition: color 0.2s;
}
.gamme-extrait-link:hover { color: var(--or); border-bottom-color: var(--or); }

/* Carte "venir nous voir" en fin de carousel */
.product-card--decouvrir .product-card-img {
  background: var(--noir) !important;
  border: 1px dashed rgba(201,146,42,0.3);
}
.product-card--decouvrir:hover {
  border-color: var(--or) !important;
}
.product-card--decouvrir .product-card-body {
  background: var(--noir) !important;
}
