*,
*::before,
*::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --primary-color: #194824;
    --secondary-color: #F5F0E6;
    --accent-color: #7a5d45;
    --text-color: #333;
    --book-width: 700px;
    --book-height: 450px;
    --font-title: 'Merienda', serif;
    --font-text: 'Lato', sans-serif;
    color: #cbb896; 
    --accent-color: #7a5d45;
    --brown-dark: #3a2a10;
    --brown-medium: #5c3d2e;
    --bordeaux: #6b2c3e;
    --cover-bg: linear-gradient(145deg, #5c3d2e, #3a2a10);
    --page-bg: #fdfaf5;
    --spine-bg: #e6dcc9;
    --shadow: rgba(0, 0, 0, 0.2);
}


/*COMMUN*/
body{
  background: white;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}
p{
  font-family: 'Lato', sans-serif;
  color: var(--text-color);
  text-align: justify;
  font-size: 1rem;
}
h1{
  font-size: 3rem;
  white-space: nowrap;
  font-weight: normal;
  font-family: 'Merienda', serif;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .02em;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
h2{
  font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
    text-align:center;
}

/* HEADER */
header{
  background-color: var(--secondary-color);
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: auto;
  position: relative;
  min-height: 120px;
}
.header-background{
  position: relative;
  background-color: var(--secondary-color);
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  min-height: 120px;
}
/* Header sticky */
header{
 position: sticky;
 top: 0;
 z-index: 100;
 transition: transform 0.3s ease;
 z-index: 9999;
}
header.hidden{
 transform: translateY(-100%);
}
.logo-container{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  padding: 0.5rem;
  border-radius: 50%;
  z-index: 10;
  top: 10px;
}
.logo-container img{
  height: 135px;
  width: auto;
}
header.hidden .logo-container{
    opacity: 0;
}
.nav-left, .nav-right{
  display: flex;
  align-items: center;
}
.nav-left{
  justify-content: flex-end;
  width: calc(50% - 120px);
  padding-right: 25px;
}
.nav-right{
  justify-content: flex-start;
  width: calc(50% - 120px);
  padding-left: 25px;
}
.nav-left ul, .nav-right ul{
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
}
.nav-left a, .nav-right a{
  text-decoration: none;
  color: var(--text-color);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-left a:hover, .nav-right a:hover{
  color: var(--accent-color);
}
.cta-phone-container{
  margin-left: 1.5rem;
}
/* Bouton téléphone couleur distincte */
.cta-phone-container .btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  transition: 0.3s ease;
}
.cta-phone-container .btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color); 
  color: white; 
}
.nav-right .btn{
  background-color: var(--accent-color);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-right .btn:hover{
  background-color: var(--primary-color);
}
.nav-right ul.dropdown-menu {
  gap: 0;
}
/* Dropdown Produits */
.dropdown{
  position: relative;
}
/* Menu caché par défaut */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 50px; /* ← ajuste cette valeur selon tes besoins */
  background: var(--secondary-color);
  list-style: none;
  align-items: center;
  padding: 0.5rem 0;
  margin-left: auto;
  margin-right: auto;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 900;
}

/* Le pont invisible doit couvrir le margin-top */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 50px; /* ← doit être >= margin-top du dropdown */
}

/* Affichage au hover — inchangé */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Items */
.dropdown-menu li{
  padding: 0;
  margin: 0;
}
.dropdown-menu a{
  display: block;
  padding: 0.8rem 0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--text-color);
  display: block;
}
.dropdown-menu li{
  width: 100%;
}
/* Hover effet */
.dropdown-menu a:hover{
  background-color: rgba(0,0,0,0.05);
}
/* Affichage au hover */
.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0); 
}
.hero{
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-content{
  position: relative;
  z-index: 1;
}
.hero-content p {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
  background: rgba(0, 0, 0, 0.3); /* noir léger */
    z-index: 1;
}

.compact {
  position: relative;
  height: 90vh;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-content{
  position: relative;
  z-index: 1;
}
.hero-content p {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
  background: rgba(0, 0, 0, 0.3); /* noir léger */
    z-index: 1;
}




@keyframes bounce{
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 0;
}
.footer-top {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}
.footer-col h3 {
    font-family: var(--font-title);
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.footer-col h4 {
    font-family: var(--font-title);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin: 1.2rem 0 0.5rem;
}
.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}
.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--secondary-color);
}
.footer-col strong {
    color: white;
}
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    transition: all 0.3s;
}
.footer-social a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.footer-social svg {
    height: 30px;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-nav li a {
    font-family: var(--font-text);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
}
.footer-nav li a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}
.footer-newsletter input {
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    font-family: var(--font-text);
    font-size: 0.88rem;
    background: rgba(255,255,255,0.1);
    color: white;
}
.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.45);
}
.footer-newsletter input:focus {
    outline: none;
    border-color: var(--secondary-color);
}
.footer-newsletter .btn {
    align-self: flex-start;
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
}
.footer-newsletter .btn:hover {
  background-color: #333;
  border-color: #333;
  color: white;
}
.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}
.footer-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.footer-contact-form input,
.footer-contact-form textarea {
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    font-family: var(--font-text);
    font-size: 0.88rem;
    background: rgba(255,255,255,0.1);
    color: white;
    resize: none;
}
.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}
.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}
.footer-contact-form .btn {
    align-self: flex-start;
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
}
.footer-contact-form .btn:hover {
  background-color: #333;
  border-color: #333;
  color: white;
}
.footer-bottom {
    padding: 1.2rem 2rem;
    background-color: rgba(0,0,0,0.15);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.footer-legal {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal a:hover {
    color: white;
}
.footer-legal span {
    color: rgba(255,255,255,0.2);
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  border: 2px solid var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.btn-center {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* PAGE INDEX */
/* Section Producteurs locaux */
.producteurs-locaux{
    background: transparent;
     padding: 2rem 2rem 5rem;  /* haut | côtés | bas */
}
.producteurs-locaux .contenu{
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}
.producteurs-locaux .texte{
    flex: 1;
}
.producteurs-locaux h2{
    text-align: left;
}
.producteurs-locaux p{
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.producteurs-locaux .carte{
    flex: 1;
}
.producteurs-locaux .carte img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* Section Produits */
.produits {
    background-color: var(--secondary-color);
    padding: 0.1rem 2rem 3rem;  /* haut | côtés | bas */
}
.produits h2{
    text-align: center;
    margin: 2rem;
}
.produits-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem; 
    line-height: 1.8;
}
.slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.slider-track-container2 {
    overflow: hidden;
    flex: 1;
    padding: 1rem 0.5rem;
}
.slider-track {
    display: flex;
    gap: 1.5rem;
}
.slider-track .card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}
.slider-track .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.slider-track .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.slider-track .card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}
.slider-track .card p {
    text-align: center;
    font-size: 0.95rem;
    flex-grow: 1;
}
.slider-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    min-width: 44px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 10;
}
.slider-btn svg {
    width: 26px;
    height: 26px;
    pointer-events: none;
}
.slider-btn:hover,
.slider-btn:active {
    background-color: var(--accent-color);
    transform: scale(0.95);
}
.slider-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 48px;
    }
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
    .slider-btn.prev { left: 0; }
    .slider-btn.next { right: 0; }
    .slider-btn:active { transform: translateY(-50%) scale(0.93); }
    .slider-track .card {
        flex: 0 0 calc(100% - 1rem);
        min-width: calc(100% - 1rem);
    }
}
/* Frise chronologique */
.frise-section {
     padding: 5em, 10em;
}
.frise-section {
    text-align: center;
    margin: 2rem;
}
.frise-subtitle {
    text-align: center;
    color: #333;
    font-style: italic;
    font-family: var(--font-title);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.frise-track-container {
    padding: 0 2rem;
}
.frise-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    height: 320px;
}
.frise-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateY(-50%);
    z-index: 0;
}
.frise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    height: 100%;
    justify-content: center;
}
.frise-top {
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0.6rem;
}
.frise-bottom {
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.6rem;
}
.frise-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 0 2px var(--accent-color);
    flex-shrink: 0;
}
.frise-item:nth-child(even) .frise-dot {
    background: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}
.frise-connector {
    width: 2px;
    height: 20px;
    background: var(--secondary-color);
}
.frise-text {
    text-align: center;
    padding: 0 0.5rem;
}
.frise-year {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 400;
    margin-bottom: 0.2rem;
}
.frise-item:nth-child(even) .frise-year {
    color: var(--primary-color);
}
.frise-text h3 {
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: #cbb896;
    margin: 0 0 0.3rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}
.frise-text p {
    font-size: 0.78rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}
/* Section Visites */
.visites {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 7rem 5rem;
}
.visites-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.visites-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visites::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.visites .container4 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.visites h2 {
    color: white;
    margin: 1.5rem;
}
.visites-intro {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 610px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.1rem;
}
.visites-infos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.visites-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.visites-info-label {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: white;
}
.visites-info-value {
    font-size: 0.90rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.visites-info-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* PAGE MOULIN GOURMAND*/ 
.intro-section{
  max-width: 1300px;
  margin: 0 auto 20%;
  padding: 3rem;
  text-align: center;
}
.intro-section p{
  margin-top: 5%;
  line-height: 1.9;
}
.timeline-section{
  position: relative;
  margin-bottom: 20%;
}
#tl-svg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.tl-stop{
  position: absolute;
  z-index: 1;
}
.tl-dot{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
  cursor: pointer;
  transition: background .35s, transform .35s, box-shadow .35s;
  position: relative;
  z-index: 2;
}
.tl-stop.active .tl-dot,
.tl-stop.visible .tl-dot {
  background: var(--gold);
  transform: scale(1.25);
  box-shadow: 0 0 0 5px rgba(184,134,11,.18);
}
/* CARD */
.tl-card{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  background: rgba(250,246,239,.97);
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 4px 24px rgba(58,42,16,.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease, clip-path .6s ease;
}
/* côté gauche */
.tl-stop.side-left .tl-card{
  right: 34px;
  clip-path: circle(0% at calc(100% - 11px) 50%);
}
/* côté droit */
.tl-stop.side-right .tl-card{
  left: 34px;
  clip-path: circle(0% at 11px 50%);
}
.tl-stop.visible .tl-card{
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(150% at 11px 50%);
}
.tl-stop.side-left.visible .tl-card{
  clip-path: circle(150% at calc(100% - 11px) 50%);
}
/* contenu carte */
.tl-date {
  font-size: .68rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: .3rem;
}
.tl-title{
  font-size: 1.45rem;
  font-family: 'Merienda', serif;
  font-weight: normal;
  color: #000;
  line-height: 1.2;
  margin-bottom: .15rem;
}
.tl-subtitle{
  font-size: .85rem;
  font-family: 'Lato', sans-serif;
  color: var(--accent-color);
  font-style: italic;
  margin-bottom: 1rem;
  margin-top: 0.6rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(184,134,11,.2);
}
/* DESC 50 / 50 */
.tl-desc{

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .8s ease .3s, opacity .6s ease .35s;
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
}
.tl-stop.visible .tl-desc{
  max-height: 900px;
  opacity: 1;
}
/* TEXTE */
.tl-desc .desc{
  flex: 0 0 50%;
  max-width: 50%;
  font-size: 0.9rem; 
  color: #000;
  line-height: 1.5;
  font-family: 'Lato', sans-serif;
  text-align: justify;
}
/* Paragraphes */
.tl-desc .desc p{
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
/* Liste */
.tl-desc .desc ul{
  margin: 0.5rem 0 0 1.1rem;
  padding: 0;
}
/* Items */
.tl-desc .desc li{
  margin-bottom: 0.4rem;
}
  /* CONTENEUR */
.tl-photo {
  display: block;
  margin: 0 auto;
  max-width: 40%;
  max-height: 40%;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tl-photo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

/*PAGE PRODUCTION*/
/* — wrapper général — */
.la_ferme,
.prod_fro,
.millas {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 4rem 0;
}
.la_ferme {
  border-bottom: 1px solid var(--line);
}
/* titres de section */
.la_ferme h2,
.prod_fro h2,
.millas_jaune h2,
.millas_blanc h2 {
  margin-bottom: 2rem;
  line-height: 1.15;
  position: relative;
  padding-bottom: .8rem;
}
/* paragraphes */
.la_ferme p,
.prod_fro p,
.millas_jaune p,
.millas_blanc p {
  font-size: 0.9rem;
  line-height: 1.90;
  margin-bottom: 20px;
}
/* ── LES FERMES ── */
.ferme {
  display: flex;
  gap: 3.5rem;
}
.descr_ferme {
  width: 150%;
  display: flex;
  flex-direction: column;
}

.la_ferme .ferme .descr_ferme {
    width: auto !important;   /* écrase le width:150% */
    flex: 1 1 45%;
    min-width: 0;
  }

.la_ferme .ferme > div:has(#map2) {
  flex: 1 1 45%;
  min-width: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

#map2 {
  width: 100%;
  height: 440px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

/* ── Popup Leaflet ── */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  padding: 0 !important;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13) !important;
  border: 0.5px solid rgba(0,0,0,0.1) !important;
}
.leaflet-popup-content {
  margin: 0 !important;
  width: 230px !important;
}
.leaflet-popup-tip-container { display: none; }

/* ── Popup inner ── */
.popup-inner { font-family: 'Lato', sans-serif; background: #fff; }

/* ── Slider images ── */
.popup-slider {
  position: relative;
  width: 230px;
  height: 140px;
  overflow: hidden;
  background: #f0f0f0;
}
.popup-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.popup-slider img.active { opacity: 1; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  padding: 0;
}
.slider-btn:hover { background: rgba(0,0,0,0.65); }
.slider-btn.prev { left: 7px; }
.slider-btn.next { right: 7px; }

.slider-dots {
  position: absolute;
  bottom: 7px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 4;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.slider-dot.on { background: #fff; }

.popup-counter {
  position: absolute;
  top: 7px; right: 8px;
  font-size: 11px;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 2px 7px;
  border-radius: 20px;
  z-index: 4;
}

.popup-body { padding: 10px 13px 13px; }
.popup-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 3px;
  font-family: 'Merienda', serif;
}
.popup-addr {
  font-size: 12px;
  color: #777;
  margin: 0;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .la_ferme .ferme > div:has(#map2) { min-height: 300px; }
  #map2 { height: 300px; }
}

/* ── PRODUCTION FROMAGE ── */
.prod_fro > div {
  display: flex;
  gap: 3.5rem;
}
.prod_fro img {
    margin-bottom: 5%;
    width: 100%;
    max-width: 400px;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.prod_fro p {
  flex: 1 1 55%;
}
/* ── MILLAS ── */
.millas {
  display: flex;
  gap: 4rem;
}
/* millas jaune : titre + image côte à côte, texte dessous */
.millas_jaune {
  gap: 25px;
  align-items: start;
}
.millas_jaune h2 {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}
.millas_jaune img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
/* millas blanc : texte pleine largeur (pas d'image dans le HTML) */
.millas_blanc {
  max-width: 50%;
}
.millas_blanc img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
/* ══════════════════════════════
       CTA DÉGUSTATION
    ══════════════════════════════ */
    .cta-degustation {
      padding: 6rem 0;
      text-align: center;
      background: var(--secondary-color);
      border-top: 1px solid rgba(184, 134, 11, 0.18);
      position: relative;
      overflow: hidden;
    }
    .cta-degustation::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 110%, rgba(184,134,11,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-degustation .cta-eyebrow {
      display: block;
      font-family: 'Lato', sans-serif;
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #7a5d45;
      margin-bottom: 1.2rem;
    }
    .cta-degustation h2 {
      font-size: clamp(1.6rem, 4vw, 2.5rem);
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 1.1rem;
    }
    .cta-degustation p {
      max-width: 520px;
      margin: 0 auto 2.4rem;
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: center;
    }
    .cta-btn {
      display: inline-block;
      padding: 1rem 2.6rem;
      background: var(--text-color);
      color: var( --secondary-color);
      font-family: 'Lato', sans-serif;
      font-size: .82rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      border: 1px solid transparent;
      transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
    }
    .cta-btn:hover {
  background: var(--accent-color);
  color: var(--secondary-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}
    .cta-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .9rem;
      margin-bottom: 2.2rem;
    }
    .cta-divider::before,
    .cta-divider::after {
      content: "";
      display: block;
      width: 60px;
      height: 1px;
      background: var(--gold, #b8860b);
      opacity: .5;
    }
    .cta-divider span {
      font-size: 1rem;
      color: var(--gold, #b8860b);
      opacity: .7;
    }
.badge{
  display: inline-block;
  margin-bottom: .8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--secondary-color);
  color: var(--text-color);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}



/*PAGE POINT DE VENTE */
.intro{
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}
.intro p {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto 0;
  transform: none;
  line-height: 1.9;
  text-align: center;
}
.container6{
  display: flex;
  max-width: 1100px;
  margin: 20px auto;
  padding: 15px;
  background-color: #f0F0F0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: calc(100vh - 100px);
}
.details-panel{
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 140px);
  display: flex;          /* AJOUT */
  flex-direction: column;
  gap: 40px;
}
.map-container{
  flex: 1;
  height: calc(100vh - 140px);
  min-height: 450px;
  border-radius: 8px;   
  overflow: hidden;     
}
#map{
  width: 100%;
  height: 100%;
  border-radius: 0 8px 8px 0;
}
.location-card{
  display: none;
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.location-card.active{
  display: block;
}
.location-title{
  font-family: 'Merienda', serif;
  font-size: 1.5rem;
  color: var(--gris-fonce);
  margin-top: 0;
  margin-bottom: 10px;
}
.location-address{
  font-family: 'Lato', sans-serif;
  font-style: italic;
  color: var(--marron);
  margin-bottom: 10px;
}
.location-horaire{
    margin-top: 10px;
    font-weight: 600;
}
.location-description .location-horaire{
  color: var(--gris-fonce);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
}
.custom-popup{
  font-size: 0.9rem;
  min-width: 150px;
}
.custom-popup .title{
  font-weight: bold;
  font-family: 'Merienda', serif;
  color: var(--sapin);
  margin-bottom: 5px;
}
.custom-popup .address{
  font-family: 'Lato', sans-serif;
  font-style: italic;
  color: var(--marron);
}
/* AJOUT POUR LES MARQUEURS PERSONNALISÉS */
.sapin-marker{
  background: none !important;
  border: none !important;
}
.marron-marker{
  background: none !important;
  border: none !important;
}
.clients-container{
  display: flex;
  align-items: center;
  gap: 30px;
}
.clients-image img{
  width: 100%;
  max-width: 470px;
  border-radius: 12px;                                  
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /
}
.clients{
  padding: 50px 0;
  margin: 50px 0; 
}
.clients-content{
  max-width: 530px;
}
.clients-content h2{
  white-space: nowrap;
}
.clients-content >p{
  margin-top: 30px;
  margin-bottom: 20px; 
  line-height: 1.8;    
}
.clients-wrapper{
  max-width: 1100px;   
  margin: 0 auto;      
  padding: 0 15px;     
}

/* PAGE PRODUIT FROMAGE */ 
.container8 {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 5%;
  padding: 0 1,8rem;
}
.page-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}
.page-intro h3 {
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #cbb896;
  margin-bottom: 1.25rem;
}
.page-intro p {
  max-width: 750px;
  color: var(--text-color);
  text-align: justify;
}
.story-block {
  padding: 2rem;
}
.story-block.alt {
  padding-top: 1rem;
}
.split {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.split > * {
  flex: 1 1 50%;
}
.split.reverse {
  flex-direction: row-reverse;
}
.story-image img {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}
.story-text {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 14px;
  backdrop-filter: blur(2px);
}
.story-text h4 {
  font-family: 'Merienda', serif;
  font-size: 1.5rem;
  color: var(--accent-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.story-text p {
  color: var(--text-color);
  text-align: justify;
  line-height: 1.2;
}
.story-text p + p {
  margin-top: 1rem;
}
/* ══════════════════════════════
   SECTION HEAD  (fromage)
══════════════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head p {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  color: var(--text-color);
  text-align: center;
}
.section-head h3{
  font-size: 1.2rem;
  font-family: 'Merienda', serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5e7c5f;
  margin-bottom: 1.25rem;
}
/* ══════════════════════════════
   CARDS FROMAGES  (fromage)
══════════════════════════════ */
.card_fromages {
  padding: 4rem 0 6rem;
}
.fromages-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.fromage-card {
  max-width: 30%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(58, 42, 16, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fromage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(58, 42, 16, 0.14);
}
.fromage-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
.fromage-body {
  padding: 1.4rem 1.3rem 1.5rem;
}
/* Titre + icône animal */
.fromage-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: .65rem;
}
.fromage-title-row h4 {
  font-family: 'Merienda', serif;
  font-size: 1.2rem;
  color: var(--accent-color);
  line-height: 1.2;
  margin-bottom: 0;
}
.animal-icon {
  width: 50px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
}
.fromage-card p {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: justify;
}
.fromage-card ul {
  padding-left: 1.1rem;
  color: var(--text-color);
}
.fromage-card li + li {
  margin-top: .35rem;
}


/* PAGE RECETTES*/
/* ── Wrapper qui change de taille selon l'état ── */
.scene{
  position: relative;
  width: var(--book-width);
  height: var(--book-height);
  transition: width 0.6s ease, height 0.6s ease;
}
/* Quand couverture ou quatrième : livre réduit à la moitié en largeur */
.scene.cover-mode{
  width: calc(var(--book-width) / 2);
}
/* ── Flèches ── */
.nav-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 200;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: var(--brown-medium);
  box-shadow: 0 3px 12px var(--shadow);
}
.nav-arrow:hover { background: white; transform: translateY(-50%) scale(1.08); }
.prev-arrow { left: -66px; }
.next-arrow { right: -66px; }
.scene.cover-mode .prev-arrow,
.scene.cover-mode .next-arrow { display: none; }
/* ── Livre ── */
.book{
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 2000px;
}
/* ── Couverture & Quatrième ── */
.book-cover,
.book-back{
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  border-radius: 4px;
  background: var(--accent-color);
  box-shadow: 0 10px 40px var(--shadow);
  color: #f5f0e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  z-index: 50;
  cursor: pointer;
  transition: opacity 0.4s ease;
  padding: 2.5rem;
  text-align: center;
}
.book-back { display: none; }
/* Texture bois sur couvertures */
.book-cover::before,
.book-back::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: repeating-linear-gradient(
    -30deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.05) 8px,
    rgba(255,255,255,0.05) 9px
  );
  pointer-events: none;
}
.book-cover h1{
  font-family: 'Merienda', serif;
  color: #f5f0e6;
  font-size: 2.2rem;
  line-height: 1.2;
}
.book-cover .cover-deco{
  width: 60px;
  height: 2px;
  background: var(--bordeaux);
  opacity: 0.4;
  margin: 0.2rem 0;
}
.book-back p{
  font-family: 'Merienda', italic;
  color: white;
  margin-top: 15%;
  font-size: 0.7rem;
  text-align: center;
}
.book-back h2{
    color: #f5f0e6;
    font-size: 1.5rem;
}
.book-cover p{
    color: #f5f0e6;
}
.book-back .back-logo{
  margin-top: 6rem;
  font-family: 'Merienda', serif;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  color: #f5f0e6;
  opacity: 0.6;
}
/* ── Pages intérieures ── */
.pages-container{
  position: absolute;
  inset: 0;
  display: none;
}
.book-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
}
.book-page{
  position: absolute;
  inset: 0;
  display: flex;
  border-radius: 3px;
   background: var(--page-bg);
  box-shadow: 0 5px 25px var(--shadow);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.book-page.active{
  opacity: 1;
  pointer-events: all;
  z-index: 10;
}
.book-page::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 10px;
  margin-left: -5px;
  background: var(--spine-bg);
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.2), inset 2px 0 4px rgba(0,0,0,0.2);
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(to right, #d8cbb5, #b8a78f);
}
.book-page > div:last-child{
  transform-origin: left center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
/* ── Feuilletage ── */
/* NEXT */
.book-page.leaving > div:last-child{
  animation: turnRightPage 0.7s forwards ease-in-out;
}
@keyframes turnRightPage {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-180deg);
  }
}
/* PREV */
.book-page.leaving-prev > div:last-child{
  animation: turnRightPageBack 0.7s forwards ease-in-out;
}
@keyframes turnRightPageBack {
  0% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

/* ── Contenu des pages ── */
.page-left{
  width: 50%;
  padding: 20px;
}
.page-left::-webkit-scrollbar { display: none; }
.page-right{
  width:50%;
}
.page-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Page de titre (section) */
.title-page{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Merienda', serif;
  color: var(--accent);
  text-align: center;
  padding: 2rem;
}
.title-page .deco{
  width: 40px; height: 1px;
  background: var(--accent); opacity: 0.4;
}
/* Styles recette */
.recipe-title{
  font-family: 'Merienda', serif;
  color: var(--brown-dark);
  font-size: 1.3rem;
  margin-top: 2.2rem;
  line-height: 1.3;
  text-align: center;
}
.section-label{
  font-family: 'Merienda', serif;
  color: var(--bordeaux);
  font-size: 0.9rem;
  margin: 0.8rem 0 0.4rem;
  letter-spacing: 0.05em;
}
.ingredients-list{
  list-style: none;
  padding-left: 0.8rem;
  padding-right: 2rem;
  color: #000;
  font-size: 0.70rem;
}
.ingredients-list li{
  margin: 0.18rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 1rem;
}
.ingredients-list li::before{
  color: var(--bordeaux);
  position: absolute;
  left: 0;
}
.steps-list{
  list-style: none;
  padding-left: 0.8rem;
  font-size: 0.70rem;
  color: #000;
  counter-reset: step-counter;
}
.steps-list li{
  margin: 0.18rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 1rem;
  counter-increment: step-counter;
  text-align: justify;
}
.steps-list li::before{
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--bordeaux);
}
/* Page vide (côté reliure des pages de section) */
.page-blank{
  flex: 1;
  background: var(--page-bg);
}
@media (max-width: 860px){
  :root { --book-width: 100vw; --book-height: 420px; }
  .scene.cover-mode { width: 60vw; }
  .prev-arrow { left: -50px; }
  .next-arrow { right: -50px; }
}


/* ═══════════════════════════════════════════════════════════════════
   SURCHARGE VISUELLE LIVRE — style vieux papier (test3)
   Ces règles s'appliquent PAR-DESSUS la structure existante
   ═══════════════════════════════════════════════════════════════════ */

/* Variables vieux livre */
:root {
  --livre-cream:    #faf4e1;
  --livre-cream2:   #f5edcc;
  --livre-ink:      #1e120a;
  --livre-gold:     #c8982a;
  --livre-brown:    #6b3d1a;
  --livre-burgundy: #7a1e2e;
  --livre-cover:    linear-gradient(160deg, #8a5c28 0%, #5c3a18 45%, #3a2408 100%);
}

/* Fond de la section recette */
.recette {
  background: radial-gradient(ellipse at center, #9a8060 0%, #6a5035 100%);
}

/* Livre — ombre plus profonde */
.book {
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.6))
          drop-shadow(0 8px 20px rgba(0,0,0,.4));
}

/* Couverture — cuir brun */
.book-cover {
  background: var(--livre-cover) !important;
  border-radius: 3px 14px 14px 3px !important;
}
/* Texture tissu sur la couverture */
.book-cover::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-22deg,
    transparent, transparent 12px,
    rgba(255,255,255,.018) 12px, rgba(255,255,255,.018) 13px);
  pointer-events: none; border-radius: inherit;
}
/* Double encadrement doré */
.book-cover::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1.5px solid rgba(200,160,70,.22);
  border-radius: 6px;
  pointer-events: none;
}
.book-cover h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-size: 2.3rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #f5edd8 !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  position: relative; z-index: 1;
  line-height: 1.1;
}
.book-cover p {
  font-family: 'Lato', sans-serif !important;
  color: rgba(220,190,135,.7) !important;
  font-size: .85rem !important;
  letter-spacing: .12em;
  position: relative; z-index: 1;
}
.book-cover .cover-deco {
  width: 70px; height: 1.5px;
  background: rgba(200,160,70,.4) !important;
  position: relative; z-index: 1;
}

/* Quatrième de couverture */
.book-back {
  background: linear-gradient(160deg, #3c2410, #261408) !important;
  border-radius: 3px 14px 14px 3px !important;
}
.book-back h2 {
  font-family: 'Cormorant Garamond', serif !important;
  color: #e8d5a8 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}
.book-back p {
  font-family: 'Lato', sans-serif !important;
  font-style: italic !important;
  color: rgba(210,185,140,.62) !important;
  font-size: .68rem !important;
  line-height: 1.9 !important;
}
.book-back .cover-deco {
  width: 50px; height: 1px;
  background: rgba(200,160,70,.3) !important;
}
.book-back .back-logo {
  font-family: 'Lato', sans-serif !important;
  font-size: .58rem !important;
  color: rgba(180,145,80,.32) !important;
  letter-spacing: .1em;
  margin-top: 6rem;
}

/* Pages — papier vieilli */
.book-page {
  background: #faf4e1 !important;
}
/* Gouttière centrale */
.book-page::after {
  background: linear-gradient(to right,
    rgba(50,25,5,.18), rgba(50,25,5,.06), rgba(50,25,5,.18)) !important;
  width: 3px; margin-left: -1.5px;
}

/* Demi-page gauche avec lignes de cahier */
.page-left {
  background-color: #faf4e1 !important;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 23px,
    rgba(140,100,40,.065) 23px, rgba(140,100,40,.065) 24px
  ) !important;
  padding: 1.4rem 1.2rem 1.2rem 1.5rem !important;
}

/* Demi-page droite recette (quand deux recettes côte à côte) */
.page-right-recette {
  background-color: #faf4e1 !important;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 23px,
    rgba(140,100,40,.065) 23px, rgba(140,100,40,.065) 24px
  ) !important;
  padding: 1.4rem 1.2rem 1.2rem 1.5rem !important;
  flex: 0 0 50%; width: 50%; overflow: auto;
}

/* Demi-page droite photo */
.page-right {
  background-color: #f0e8d0 !important;
}

/* Page vide (côté image des pages de titre) */
.page-blank {
  flex: 0 0 50%; width: 50%; height: 100%; overflow: hidden; position: relative;
}
.page-blank img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Page de titre chapitre */
.title-page {
  background: #faf4e1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .8rem !important;
  padding: 2.5rem !important;
}
.title-page::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--accent-color, #7a5d45);
}
.title-page h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #1e120a !important;
  text-align: center !important;
  line-height: 1.2 !important;
}
.title-page .deco {
  width: 55px; height: 1.5px;
  background: rgba(122,93,69,.35) !important;
}

/* Tag recette */
.recipe-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif !important;
  font-size: .6rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--accent-color, #7a5d45) !important;
  margin-bottom: .35rem;
  opacity: .8;
}

/* Titre recette */
.recipe-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #1e120a !important;
  line-height: 1.2 !important;
  margin-bottom: .4rem !important;
  padding-bottom: .3rem !important;
  border-bottom: 1.5px solid rgba(122,93,69,.25) !important;
  margin-top: 0 !important;
  text-align: left !important;
}

/* Label section (Ingrédients / Préparation) */
.section-label {
  font-family: 'Lato', sans-serif !important;
  font-size: .6rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: #7a1e2e !important;
  margin: .35rem 0 .18rem !important;
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(120,60,20,.18);
}

/* Listes */
.ingredients-list,
.steps-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: 'Lato', sans-serif !important;
  font-size: .62rem !important;
  color: #1e120a !important;
  line-height: 1.6 !important;
}
.ingredients-list li,
.steps-list li {
  padding-left: .85rem !important;
  position: relative !important;
  margin-bottom: .12rem !important;
  text-align: justify !important;
}
.ingredients-list li::before,
.steps-list li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important; top: .45em !important;
  width: 4px !important; height: 4px !important;
  border-radius: 50% !important;
  background: #c8982a !important;
  box-shadow: 0 0 0 1.5px rgba(200,152,42,.3) !important;
}

/* Note manuscrite */
.handnote {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: .65rem !important;
  color: var(--accent-color, #7a5d45) !important;
  font-style: italic !important;
  margin-top: auto !important;
  padding-top: .3rem !important;
  border-top: 1px dashed rgba(122,93,69,.28) !important;
  line-height: 1.5 !important;
}

/* Flèches de navigation — style brun */
.nav-arrow {
  background: #3a2208 !important;
  color: #e8d5a8 !important;
  border-radius: 50% !important;
  width: 44px !important; height: 44px !important;
  font-size: 1.5rem !important;
  box-shadow: 0 3px 14px rgba(0,0,0,.45) !important;
  border: none !important;
}
.nav-arrow:hover {
  background: #6b3d1a !important;
  transform: translateY(-50%) scale(1.1) !important;
}


/* PAGE VISITE*/
.container10 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}
.container11 {
  max-width: 1100px;
  margin: 2rem auto 4rem auto;
  padding: 0 2rem;
}

.rappel-conso {
  position: relative;
  background: linear-gradient(135deg, #f5f0e6 0%, #fffaf3 100%);
  border: 2px solid rgba(94, 124, 95, 0.22);
  border-radius: 18px;
  padding: 1rem 1rem 1rem 1rem;
  box-shadow: 0 10px 30px rgba(58, 42, 16, 0.08);
  text-align: center;
}

.rappel-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  background-color: var(--accent-color);
  color: white;
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

.container11 #soustitre_4 {
  margin: 0 0 0.8rem 0;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: var(--primary-color);
  text-align: center;
}

.container11 #p_visite {
  max-width: 760px;
  margin: 0 auto 1.4rem auto;
  font-family: var(--font-text);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  color: var(--text-color);
}

.btn-rappel {
  display: inline-block;
  padding: 0.95rem 1.6rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  font-family: var(--font-text);
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(94, 124, 95, 0.22);
}

.btn-rappel:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}
/* === PAGE VISITE - STYLES NOUVEAUX === */

/* HERO INTRO */
.hero-visite {
  background: linear-gradient(135deg, #f8f4f0 0%, #f0ede3 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-visite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,124,95,0.3), transparent);
}

.hero-visite .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-visite h1 {
  font-family: 'Merienda', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 400;
}

.hero-visite h2 {
  font-family: 'Merienda', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-visite .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-family: 'Lato', sans-serif;
}

/* POINTS FORTS */
.points-forts ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.points-forts li {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(94,124,95,0.15);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.points-forts li:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(94,124,95,0.15);
}

.points-forts strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* PROGRAMME */
.programme-visite {
  padding: 80px 0;
}

.programme-visite h2 {
  font-family: 'Merienda', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

.etapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.etape {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(94,124,95,0.12);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.etape:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(94,124,95,0.12);
}

.etape h3 {
  font-family: 'Merienda', serif;
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

.etape p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1rem;
}

/* ═══ FAQ ACCORDÉON ═══ */

.faq-visite {
  padding: 60px 0;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-visite h2 {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 400;
}

.faq-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: var(--text-color);
  font-style: italic;
}

/* Carte */
details.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(94,124,95,0.18);
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

/* Supprimer le marqueur ► natif sur tous navigateurs */
details.faq-item > summary {
  list-style: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::marker { display: none; content: ''; }

/* Header cliquable */
summary.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--secondary-color);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  touch-action: manipulation;
  outline: none;
}

/* Texte question */
.faq-question {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

/* Icône +/× CSS pur */
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: white;
  position: relative;
  transition: background 0.25s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.25s, background 0.25s;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }

details[open] .faq-icon {
  background: var(--primary-color);
}
details[open] .faq-icon::before,
details[open] .faq-icon::after {
  background: white;
}
details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Contenu réponse */
.faq-content {
  padding: 0.2rem 1.4rem 1.4rem;
  background: white;
}

.faq-content p {
  color: var(--text-color) !important;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-size: 0.98rem;
  text-align: left !important;
  font-family: 'Lato', sans-serif;
}

.faq-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-content li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  color: var(--text-color);
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  line-height: 1.5;
}

.faq-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .faq-visite { padding: 36px 0; }
  .faq-container { padding: 0 0.8rem; }
  .faq-question { font-size: 0.97rem; }
  summary.faq-header { padding: 1rem 1rem; }
  .faq-content { padding: 0.2rem 1rem 1.1rem; }
}

/* CTA FINAL */
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #427a6a 100%);
  text-align: center;
  color: white;
}

.cta h2 {
  font-family: 'Merienda', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta p {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-visite, .programme-visite, .faq-visite, .cta {
    padding: 50px 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .etapes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .points-forts ul {
    grid-template-columns: 1fr;
  }
  
  .question {
    margin: 0 0 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-visite h1 {
    font-size: 2rem;
  }
  
  .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .container11 {
    padding: 0 1rem;
    margin: 1.5rem auto 3rem auto;
  }

  .rappel-conso {
    padding: 1.4rem 1rem;
    border-left-width: 5px;
  }

  .container11 #p_visite {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .btn-rappel {
    width: 100%;
    text-align: center;
  }
}

.visite-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem;
    padding:0 2.5rem;
}
.visite-page .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    gap: 1rem;
}
.visite-page .benefit-icon {
    width: 64px;
    height: 64px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.visite-page .benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.visite-page .benefit-item p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}
.visite-page .visite-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.visite-info h3 {
  font-size: 1.2rem;
  font-family: 'Merienda', serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5e7c5f;
  margin-bottom: 1.25rem;
}
.visite-page .detail-item {
    flex: 1;
    min-width: 200px;
}
.visite-page .detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Merienda', serif;
    text-align: center;
}
.visite-page h3:not(.faq-visite h3) {
    color: var(--accent-color); 
    margin: 1rem;
    text-align: center;
    font-weight: 600;
    font-family: 'Merienda', serif;
}
.visite-page .calendar-container {
    margin: 2rem auto;
    max-width: 800px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.visite-page .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.visite-page .calendar-header button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5rem;
}
.visite-page .calendar-header h3 {
    margin: 0;
    color: var(--primary-color);
}
.visite-page #calendar {
    width: 100%;
    border-collapse: collapse;
}
.visite-page #calendar th {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    text-align: center;
}
.visite-page #calendar td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    cursor: pointer;
}
.visite-page #calendar td.available {
    background-color: #e8f5e9;
}
.visite-page #calendar td.available:hover {
    background-color: #c8e6c9;
}
.visite-page #calendar td.unavailable {
    background-color: #f5f5f5;
    color: #9e9e9e;
    cursor: not-allowed;
}
.visite-page .reservation-form {
    display: none;
    margin-top: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.visite-page .form-group {
    margin-bottom: 1rem;
}
.visite-page .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.visite-page .form-group input,
.visite-page .form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-text);
}


/* PAGE MENTIONS LEGALES */ 
        .legal-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .legal-content h1 {
            color: var( --accent-color);
            text-align: center;
            margin-bottom: 2rem;
        }
        .legal-content h2 {
            color: var(--primary-color);
            font-family: var(--font-title);
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
            text-align: left;
        }
        .legal-content h3 {
            color: var( --accent-color);
            font-family: var(--font-title);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.2rem;
        }
        .legal-content p {
            margin-bottom: 0.8rem;
            line-height: 1.7;
        }
        .legal-content ul {
            margin: 1rem 0 1.5rem 2rem;
            line-height: 1.7;
        }
        .legal-content ol {
            margin: 1rem 0 1.5rem 2rem;
            line-height: 1.7;
        }
        .legal-content li {
            margin-bottom: 0.5rem;
        }
        .last-updated {
            text-align: center;
            margin-top: 3rem;
            font-style: italic;
            color: #333;
        }

/* calendrier de réservation */ 
  .cal2-day {
    aspect-ratio:1;
    display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
    padding:6px 3px 5px;
    border-radius:8px;
    font-family:'Lato',sans-serif; font-size:12px; font-weight:600;
    cursor:default; position:relative; transition:background 0.15s;
    gap:3px; color:var(--accent-color);
  }
  .cal2-day.av  {     
    background: rgb(74 222 128 / 43%);
    border: 1px solid #166534;
    color: #166534; cursor:pointer; 
  }
  .cal2-day.few { 
    background: rgb(200 169 110 / 55%);
    border: 1px solid #7a5d45;
    color:#92400e; 
    cursor:pointer; 
  }
  .cal2-day.cl  { color:#ccc; }
  .cal2-day.today  { outline:2px solid var(--bleu); outline-offset:1px; }
  .cal2-day.active { background:var(--fond-vert) !important; border-color:var(--vert) !important; box-shadow:0 4px 14px rgba(47,93,80,0.18); }
  .cal2-day.av:hover, .cal2-day.few:hover { transform:scale(1.15); z-index:2; }
  .cal2-dot { width:5px; height:5px; border-radius:50%; }
  .cal2-dot.av  { background:#4ade80; }
  .cal2-dot.few { background:#cbb896; }
  .cal2-dot.fu  { background:#f87171; }

  .sess-card {
    background:white; border:1.5px solid rgba(47,93,80,0.14); border-radius:14px;
    padding:16px; margin-bottom:10px; cursor:pointer;
    transition:all 0.2s; position:relative; overflow:hidden; font-family:'Lato',sans-serif;
  }
  .sess-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--vert); opacity:0; transition:opacity 0.15s; }
  .sess-card:hover { border-color:var(--vert); background:var(--fond-vert); }
  .sess-card:hover::before { opacity:1; }
  .sess-card.selected { border-color:var(--vert); background:var(--fond-vert); }
  .sess-card.selected::before { opacity:1; }
  .sess-card.full { cursor:not-allowed; opacity:0.6; }
  .sess-card.full::before { background:#f87171; opacity:1; }
  .sess-card.full:hover { border-color:rgba(47,93,80,0.14); background:white; }

  .sess-meta  { font-size:11px; color:black; display:flex; gap:12px; margin-bottom:7px; }
  .sess-badge { font-size:11px; font-weight:700; padding:3px 10px; border-radius:20px; display:inline-flex; align-items:center; gap:5px; }
  .sess-badge.ok   { background:rgba(74,222,128,0.15); color:#166534; }
  .sess-badge.low  { background:rgba(200,169,110,0.15); color:#92400e; }
  .sess-badge.full { background:rgba(248,113,113,0.12); color:#991b1b; }

  .res-form-section { margin-top:20px; padding-top:20px; border-top:1px solid rgba(47,93,80,0.12); animation:fadeUpForm 0.25s ease; }
  @keyframes fadeUpForm { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
  .res-form-title { font-family:'Pacifico',cursive; font-size:1.1rem; font-weight:400; color:var(--vert); margin-bottom:16px; }
  .res-form-row   { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:10px; }
  .res-form-group { display:flex; flex-direction:column; gap:4px; margin-bottom:10px; }
  .res-form-group label { font-family:'Lato',sans-serif; font-size:10px; font-weight:700; letter-spacing:0.07em; text-transform:uppercase; color:var(--vert); }
  .res-form-group input {
    padding:9px 12px; border:1.5px solid rgba(47,93,80,0.18); border-radius:10px;
    font-family:'Lato',sans-serif; font-size:13px; color:var(--vert);
    background:white; outline:none; transition:border-color 0.15s, box-shadow 0.15s;
    width:100%; box-sizing:border-box;
  }
  .res-form-group input:focus { border-color:var(--vert); box-shadow:0 0 0 3px rgba(47,93,80,0.10); }
  .res-btn-submit {
    width:100%; padding:12px; border-radius:50px; border:none;
    background:var(--accent-color); color:white;
    font-family:'Lato',sans-serif; font-size:13px; font-weight:700; letter-spacing:0.04em;
    cursor:pointer; margin-top:14px; display:flex; align-items:center; justify-content:center; gap:8px;
    box-shadow:0 6px 22px rgba(47,93,80,0.28); transition:all 0.2s;
  }
  .res-btn-submit:hover   { background:#427A6A; transform:translateY(-2px); }
  .res-btn-submit:disabled{ background:rgba(47,93,80,0.3); cursor:not-allowed; transform:none; }
  .res-msg { padding:10px 14px; border-radius:10px; font-family:'Lato',sans-serif; font-size:12px; margin-top:10px; line-height:1.5; }
  .res-msg.ok  { background:rgba(74,222,128,0.15); color:#166534; }
  .res-msg.err { background:rgba(248,113,113,0.12); color:#991b1b; }
  .side-date-label { font-family:'Pacifico',cursive; font-size:1.1rem; color:var(--vert); margin-bottom:20px; text-transform:capitalize; }

  @media(max-width:768px){
    #reservation > div > div { grid-template-columns:1fr !important; }
    #sidePanel2 { border-right:none; border-top:1px solid rgba(47,93,80,0.10); }
    .res-form-row { grid-template-columns:1fr; }
  }


/* RESPONSIVE */
/* =========================
   BURGER MENU
========================= */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1002;
  padding: 0.5rem;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  transition: 0.3s;
  display: block;
}

/* Burger animé quand actif */
.nav-menu.active .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-menu.active .burger span:nth-child(2) {
  opacity: 0;
}
.nav-menu.active .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {

  /* Header compact */
  header {
    min-height: 70px;
  }

  .header-background {
    min-height: 70px;
    padding: 0 1rem;
    justify-content: center;
  }

  /* Logo dans le flux normal */
  .logo-container {
    position: relative;
    left: unset;
    transform: none;
    top: unset;
    padding: 0.3rem;
    margin: 0 auto;
  }

  .logo-container img {
    height: 120px;
  }

  /* Cacher les navs desktop */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* Burger fixe */
  .burger {
    display: flex;
    position: fixed;
    right: 1rem;
    top: 15px;
    z-index: 10000;
    background: rgba(245, 240, 230, 0.95);
    border-radius: 6px;
    padding: 0.4rem;
  }

  /* Menu mobile en overlay */
  .nav-menu.active .nav-left,
  .nav-menu.active .nav-right {
    display: flex;
  }

  /* Overlay fond sombre */
.nav-menu.active::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  pointer-events: auto;
}

.nav-menu.active .header-background {
  z-index: 999;
}

.nav-menu:not(.active)::before {
  pointer-events: none;
}

  /* Panneau latéral */
  .nav-menu.active .header-background {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--secondary-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    min-height: unset;
  }

  .nav-menu.active .nav-left,
  .nav-menu.active .nav-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .nav-menu.active .nav-left ul,
  .nav-menu.active .nav-right ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-menu.active .nav-left a,
  .nav-menu.active .nav-right a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    width: 100%;
  }

  /* Dropdown produits en accordéon */
  .nav-menu.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.04);
    border-left: 3px solid var(--accent-color);
    padding: 0.3rem 0 0.3rem 1rem;
    display: none;
    flex-direction: column;
    margin-top: 0;
  }

  .nav-menu.active .dropdown.open .dropdown-menu {
    display: flex;
  }

  .nav-menu.active .dropdown-menu a {
    padding: 0.6rem 0;
    font-size: 0.88rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  /* Flèche sur "Produits" */
  .nav-menu.active .dropdown > a::after {
    content: ' ▾';
    font-size: 0.75rem;
    color: var(--accent-color);
  }

  .nav-menu.active .dropdown.open > a::after {
    content: ' ▴';
  }

  /* Bouton téléphone */
  .nav-menu.active .cta-phone-container {
    margin: 1.5rem 0 0;
    width: 100%;
  }

  .nav-menu.active .cta-phone-container .btn {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

  header {
    min-height: 90px;
  }

  .header-background {
    min-height: 90px;
    padding: 0 1.5rem;
  }

  .logo-container img {
    height: 90px;
  }

  .nav-left ul,
  .nav-right ul {
    gap: 1rem;
  }

  .nav-left a,
  .nav-right a {
    font-size: 0.8rem;
  }

  .nav-left {
    padding-right: 15px;
  }

  .nav-right {
    padding-left: 15px;
  }
}


/* =========================
   RESPONSIVE GLOBAL PROPRE
========================= */

/* TABLET */
@media (max-width: 1024px) {

  .container6,
  .container8,
  .container10 {
    padding: 2rem;
  }

  .split,
  .clients-container,
  .ferme,
  .millas,
  .prod_fro > div {
    flex-direction: column;
  }

  .fromage-card {
    max-width: 48%;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visite-details {
    flex-direction: column;
  }

  .tl-card {
    width: 90%;
  }
}


/* MOBILE */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* TITRES */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.9rem;
  }

  /* HERO */
  .hero {
    height: 50vh;
    min-height: 300px;
  }

  /* SECTION PRODUCTEURS — colonne */
  .producteurs-locaux {
    padding: 2rem 1rem 3rem;
  }
  .producteurs-locaux .contenu {
    flex-direction: column;
    gap: 1.5rem;
  }
  .producteurs-locaux h2 {
    text-align: center;
  }
  .producteurs-locaux .carte img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }

  /* SLIDER — 1 card visible */
  .slider-track .card {
    flex: 0 0 calc(100% - 1rem);
  }

  /* CONTAINERS */
  .container6,
  .container8,
  .container10 {
    padding: 1.5rem;
  }

  /* GRID */
  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  /* CARDS */
  .fromages-grid {
    flex-direction: column;
  }

  .fromage-card {
    max-width: 100%;
  }

  /* TIMELINE */
  .tl-desc {
    flex-direction: column;
  }

  .tl-photo {
    max-width: 100%;
  }

  /* VISITES */
  .visite-details {
    flex-direction: column;
  }

  .calendar-container {
    padding: 1rem;
  }

  /* MAP */
  .container6 {
    flex-direction: column;
  }

  .map-container {
    height: 300px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-row {
    grid-template-columns: 1fr;
  }

  /* IMAGES */
  img {
    max-width: 100%;
    height: auto;
  }
}


/* FRISE VERTICALE MOBILE */
@media (max-width: 768px) {
  .frise-track {
    flex-direction: column;
    height: auto;
    overflow: visible;
    align-items: stretch;
    gap: 0;
  }
  .frise-line { display: none; }
  .frise-item {
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
  .frise-top,
  .frise-bottom {
    height: auto;
    padding: 0;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .frise-connector { display: none; }
  .frise-dot {
    flex-shrink: 0;
    margin-top: 0.3rem;
  }
  .frise-text { text-align: left; padding: 0; }
  .frise-year { font-size: 1rem; }
  .frise-text h3 {
    white-space: normal;
    font-size: 0.82rem;
    text-align: left;
  }
  .frise-text p {
    font-size: 0.78rem;
    text-align: left;
    line-height: 1.5;
  }
}

/* PETIT MOBILE */
@media (max-width: 480px) {

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p {
    font-size: 0.85rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .tl-card {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .timeline-section {
    padding: 2rem 1rem 3rem;
    min-height: auto !important;
  }

  #tl-svg {
    display: none;
  }

  .timeline-section .tl-stop {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    margin-bottom: 1.5rem;
    padding-left: 0;
  }

  .timeline-section .tl-dot {
    display: none;
  }

  .timeline-section .tl-card {
    position: relative;
    top: auto;
    left: auto !important;
    right: auto !important;
    transform: none;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    pointer-events: auto;
    clip-path: none !important;
    padding: 1rem;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .timeline-section .tl-desc {
    max-height: none;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-section .tl-desc .desc,
  .timeline-section .tl-photo {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .timeline-section .tl-photo {
    margin: 0;
  }

  .timeline-section .tl-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .timeline-section .tl-title {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .timeline-section .tl-subtitle,
  .timeline-section .tl-desc .desc p,
  .timeline-section .tl-desc .desc li {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }
}

/* =========================
RESPONSIVE PAGE PRODUCTION
Sans impact sur index ni moulin gourmand
========================= */
@media (max-width: 768px) {
  .la_ferme,
  .prod_fro,
  .millas {
    width: min(100%, calc(100% - 32px));
    padding: 2.5rem 0;
  }

  .ferme,
  .prod_fro > div,
  .millas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .descr_ferme {
    width: 100%;
  }

  .millas_blanc {
    max-width: 100%;
  }

  .la_ferme h2,
  .prod_fro h2,
  .millas_jaune h2,
  .millas_blanc h2 {
    margin-bottom: 1.2rem;
    padding-bottom: 0.4rem;
    text-align: left;
  }

  .ferme img,
  .prod_fro img,
  .millas_jaune img,
  .millas_blanc img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .la_ferme p,
  .prod_fro p,
  .millas_jaune p,
  .millas_blanc p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .cta-degustation {
    padding: 4rem 1.25rem;
  }

  .cta-degustation p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 0.95rem 1.4rem;
  }

  .cta-divider::before,
  .cta-divider::after {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .dropdown::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .story-block .split,
  .story-block .split.reverse {
    display: block;
  }

  .story-block .story-image,
  .story-block .story-text {
    width: 100%;
  }

  .story-block .story-image {
    margin-bottom: 1.25rem;
  }
}
/* =========================
RESPONSIVE PAGE RECETTE
========================= */
@media (max-width: 768px) {
  :root {
    --book-width: 92vw;
    --book-height: 360px;
  }

  .book-wrapper {
    margin: 2rem 0 5rem;
    padding: 0 12px;
  }

  .scene {
    width: var(--book-width);
    height: var(--book-height);
    max-width: 420px;
    margin: 0 auto;
  }

  .scene.cover-mode {
    width: calc(var(--book-width) / 2);
    max-width: 210px;
  }

  .book {
    width: 100%;
    height: 100%;
    perspective: 1400px;
  }

  .book-page {
    position: absolute;
    inset: 0;
    display: flex;
    overflow: hidden;
  }

  .page-left,
  .page-right {
    width: 50%;
    height: 100%;
  }

  .page-left {
    padding: 14px 12px;
    overflow: hidden;
  }

  .page-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .book-cover,
  .book-back {
    padding: 1.5rem 1rem;
  }

  .book-cover h1 {
    font-size: 1.4rem;
    white-space: normal;
  }

  .book-back h2 {
    font-size: 1.1rem;
  }

  .recipe-title {
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.25;
  }

  .section-label {
    font-size: 0.78rem;
    margin: 0.5rem 0 0.3rem;
  }

  .ingredients-list,
  .steps-list {
    font-size: 0.62rem;
    padding-left: 0.45rem;
    padding-right: 0.6rem;
  }

  .ingredients-list li,
  .steps-list li {
    margin: 0.14rem 0;
    line-height: 1.35;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    top: auto;
    bottom: -52px;
    transform: none;
  }

  .nav-arrow:hover {
    transform: none;
  }

  .prev-arrow {
    left: calc(50% - 50px);
  }

  .next-arrow {
    right: calc(50% - 50px);
  }
}
@media (max-width: 768px) {
  :root {
    --book-height: 420px;
  }

  .page-left {
    padding: 14px 12px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .page-left::-webkit-scrollbar {
    width: 4px;
  }

  .page-left::-webkit-scrollbar-thumb {
    background: rgba(122, 93, 69, 0.35);
    border-radius: 999px;
  }

  .recipe-title {
    font-size: 0.95rem;
    margin-top: 0.8rem;
    line-height: 1.2;
  }

  .section-label {
    font-size: 0.78rem;
    margin: 0.45rem 0 0.25rem;
  }

  .ingredients-list,
  .steps-list {
    font-size: 0.68rem;
    line-height: 1.4;
    padding-left: 0.5rem;
    padding-right: 0.4rem;
  }

  .ingredients-list li,
  .steps-list li {
    margin: 0.16rem 0;
  }
}
@media (max-width: 768px) {
  .page-left {
    width: 56%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .page-right {
    width: 44%;
  }

  .book-page::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .visite-page #reservation {
    overflow: visible !important;
  }

  .visite-page #reservation > div {
    padding: 0 !important;
    overflow: visible !important;
  }

  .visite-page #reservation > div > div {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .visite-page #reservation > div > div > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .visite-page #sidePanel2 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(47, 93, 80, 0.12) !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }

  .visite-page #calendarWrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
  }
}
/* H1 HERO — 2 lignes sur mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    white-space: normal;
    font-size: 1.5rem;
    padding: 0 1.5rem;
    line-height: 1.3;
  }
}

/* BENEFITS GRID — 1 colonne mobile */
@media (max-width: 768px) {
  .visite-page .benefits-grid {
    grid-template-columns: 1fr !important;
    margin: 1rem !important;
    padding: 0 0.5rem !important;
  }
  .visite-page .benefit-item {
    flex-direction: row !important;
    text-align: left !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1rem !important;
  }
  .visite-page .benefit-item p {
    text-align: left !important;
    margin: 0 !important;
  }
  .visite-page .benefit-icon {
    flex-shrink: 0 !important;
  }
}
/* =========================
   CALENDRIER RESERVATION — DESKTOP
========================= */
.reservation-wrapper {
  max-width: 60%;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(47,93,80,0.12);
  display: grid;
  grid-template-columns: 1fr 360px;
  overflow: hidden;
  border: 1.5px solid rgba(47,93,80,0.10);
}

.reservation-cal {
  padding: 40px 36px;
  border-right: 1px solid rgba(47,93,80,0.10);
}

.reservation-side {
  background: white;
  padding: 36px 28px;
  overflow-y: auto;
  min-height: 400px;
}

/* =========================
   CALENDRIER RESERVATION — MOBILE
========================= */
@media (max-width: 768px) {
  .reservation-wrapper {
    max-width: 100%;
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .reservation-cal {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(47,93,80,0.10);
  }
  .reservation-side {
    padding: 20px 16px;
    min-height: auto;
  }
  #reservation {
    padding: 0 1rem !important;
  }
}


/* ── Case consentement réservation ── */
.res-consent-block {
  margin: 14px 0 10px;
  padding: 12px 14px;
  background: #f5f0e6;
  border-left: 3px solid #194824;
  border-radius: 5px;
}
.res-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  color: #333;
  line-height: 1.55;
  font-weight: normal;
}
.res-consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #194824;
  cursor: pointer;
}
.res-consent-label a {
  color: #194824;
  text-decoration: underline;
}
.res-required-note {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  color: #999;
  margin: 6px 0 0;
  text-align: right;
}

/* ── Bandeau cookies ── */
#mg-banner *, #mg-overlay * { box-sizing: border-box; margin: 0; padding: 0; }

#mg-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background-color: #194824;
  border-top: 3px solid #7a5d45;
  z-index: 99999;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#mg-banner.visible { transform: translateY(0); }

#mg-banner__logo {
  font-family: 'Merienda', serif;
  font-size: .9rem;
  color: #F5F0E6;
  opacity: .65;
  white-space: nowrap;
  flex-shrink: 0;
}
#mg-banner__text { flex: 1; min-width: 240px; }
#mg-banner__text p {
  font-family: 'Lato', sans-serif;
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  text-align: left;
}
#mg-banner__text a { color: #F5F0E6; text-decoration: underline; opacity: .8; }
#mg-banner__text a:hover { opacity: 1; }

#mg-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; align-items: center; }

.mg-btn {
  font-family: 'Lato', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
  letter-spacing: .02em;
}
.mg-btn:hover  { opacity: .88; transform: translateY(-1px); }
.mg-btn:active { transform: translateY(0); }
.mg-btn--accept { background-color: #F5F0E6; color: #194824; }
.mg-btn--accept:hover { background-color: #fffdf7; opacity: 1; }
.mg-btn--deny { background: transparent; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.25); }
.mg-btn--deny:hover { border-color: rgba(255,255,255,.5); color: #fff; opacity: 1; }
.mg-btn--prefs { background: transparent; color: rgba(245,240,230,.7); border: 1px solid rgba(122,93,69,.6); font-size: .78rem; padding: 7px 14px; }
.mg-btn--prefs:hover { border-color: #7a5d45; color: #F5F0E6; opacity: 1; }

#mg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.7);
  z-index: 100000;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(3px);
}
#mg-overlay.open { display: flex; }

#mg-modal {
  background: #fdfaf5;
  border: 1px solid #e6dcc9;
  border-top: 4px solid #194824;
  border-radius: 6px 6px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 28px 28px 24px;
  animation: mg-up .25s ease;
}
@keyframes mg-up {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

#mg-modal__header { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
#mg-modal__header h2 { font-family: 'Merienda', serif; font-size: 1.3rem; font-weight: 400; color: #194824; }
#mg-modal__header span { font-family: 'Lato', sans-serif; font-size: .75rem; color: #7a5d45; background: rgba(122,93,69,.12); padding: 2px 8px; border-radius: 20px; }
#mg-modal > p { font-family: 'Lato', sans-serif; font-size: .84rem; color: #666; line-height: 1.55; margin-bottom: 20px; border-bottom: 1px solid #e6dcc9; padding-bottom: 16px; }

.mg-cat { border: 1px solid #e6dcc9; border-radius: 6px; padding: 14px 16px; margin-bottom: 10px; background: #fff; transition: border-color .2s; }
.mg-cat:hover { border-color: #7a5d45; }
.mg-cat__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.mg-cat__title { font-family: 'Lato', sans-serif; font-size: .9rem; font-weight: 600; color: #333; }
.mg-cat__desc { font-family: 'Lato', sans-serif; font-size: .79rem; color: #888; line-height: 1.45; }
.mg-cat__desc code { background: #f0ebe3; padding: 1px 5px; border-radius: 3px; font-size: .75rem; color: #5c3d2e; }

.mg-toggle { position: relative; display: inline-block; width: 42px; height: 23px; flex-shrink: 0; }
.mg-toggle input { opacity: 0; width: 0; height: 0; }
.mg-toggle__track { position: absolute; inset: 0; background: #d4cfc8; border-radius: 23px; cursor: pointer; transition: background .2s; }
.mg-toggle__track:before { content: ''; position: absolute; left: 3px; top: 3px; width: 17px; height: 17px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.mg-toggle input:checked + .mg-toggle__track { background: #194824; }
.mg-toggle input:checked + .mg-toggle__track:before { transform: translateX(19px); }
.mg-toggle input:disabled + .mg-toggle__track { cursor: not-allowed; background: #194824; opacity: .6; }

.mg-modal__actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.mg-btn--save { background: #194824; color: #F5F0E6; flex: 1; padding: 11px 20px; font-size: .88rem; }
.mg-btn--save:hover { background: #1f5a2e; opacity: 1; }
.mg-btn--all { background: transparent; color: #194824; border: 1.5px solid #194824; flex: 1; padding: 11px 20px; font-size: .88rem; }
.mg-btn--all:hover { background: rgba(25,72,36,.06); opacity: 1; }
.mg-modal__footer { margin-top: 16px; text-align: center; font-family: 'Lato', sans-serif; font-size: .75rem; color: #aaa; line-height: 1.5; }
.mg-modal__footer a { color: #7a5d45; text-decoration: underline; }

@media (max-width: 600px) {
  #mg-banner { padding: 14px 16px; }
  #mg-banner__logo { display: none; }
  #mg-modal { padding: 20px 16px 16px; border-radius: 6px; }
  .mg-modal__actions { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════════════
   PAGE POLITIQUE DE CONFIDENTIALITÉ
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero sobre ── */
.legal-hero {
  background: var(--primary-color);
  padding: 80px 2rem 60px;
  text-align: center;
}
.legal-hero h1 {
  font-family: 'Merienda', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #F5F0E6;
  margin: 0 0 10px;
  text-shadow: none;
  white-space: normal;
}
.legal-hero .legal-hero__meta {
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  color: rgba(245,240,230,.55);
  font-style: italic;
}

/* ── Contenu ── */
.legal-page {
  background: #fff;
  padding: 60px 2rem 80px;
}
.legal-page .legal-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* ── Typographie ── */
.legal-inner h2 {
  font-family: 'Merienda', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  text-align: left;
}
.legal-inner h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 1.6rem;
  margin-bottom: .6rem;
}
.legal-inner p {
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: .7rem;
  text-align: left;
}
.legal-inner ul {
  margin: .5rem 0 .8rem 1.6rem;
}
.legal-inner li {
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: .35rem;
}
.legal-inner a {
  color: var(--primary-color);
  text-decoration: underline;
}
.legal-inner a:hover {
  color: var(--accent-color);
}
.legal-inner strong {
  color: #1e293b;
}
.legal-inner code {
  background: #f0ebe3;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: .85rem;
  color: var(--brown-medium);
}

/* ── Encadrés ── */
.legal-info {
  background: #f0f7f2;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 5px 5px 0;
  padding: 14px 18px;
  margin: 1rem 0 1.4rem;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  color: #1a3a24;
  line-height: 1.6;
}
.legal-warn {
  background: #fff4e5;
  border-left: 4px solid #f0a500;
  border-radius: 0 5px 5px 0;
  padding: 14px 18px;
  margin: 1rem 0 1.4rem;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  color: #92400e;
  line-height: 1.6;
}

/* ── Tableaux ── */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.4rem;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
}
.legal-table th {
  background: var(--primary-color);
  color: #F5F0E6;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.legal-table td {
  padding: 9px 14px;
  border-bottom: 1px solid #e6dcc9;
  color: #374151;
  vertical-align: top;
}
.legal-table tr:nth-child(even) td {
  background: #fdfaf5;
}

/* ── Note bas de page ── */
.legal-updated {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  color: #aaa;
  font-style: italic;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6dcc9;
  text-align: right;
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION DEUX VISITES — visite.html
   ═══════════════════════════════════════════════════════════════════ */

.deux-visites {
  background: #fdfaf5;
  padding: 70px 2rem;
}
.deux-visites__titre {
  font-family: 'Merienda', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 12px;
}
.deux-visites__intro {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* ── Grille des deux cartes ── */
.deux-visites__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 48px;
}

/* ── Carte visite ── */
.visite-card {
  background: #fff;
  border: 1.5px solid #e6dcc9;
  border-radius: 12px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow .2s;
}
.visite-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
}

/* Visite libre — sobre */
.visite-card--libre {
  border-color: #d4cfc8;
}

/* Visite guidée — mise en avant */
.visite-card--guidee {
  border-color: var(--primary-color);
  border-width: 2px;
  background: linear-gradient(160deg, #fff 70%, #f0f7f2);
}

/* Badge */
.visite-card__badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: #f0ebe3;
  color: var(--accent-color);
  align-self: flex-start;
}
.visite-card__badge--premium {
  background: var(--primary-color);
  color: #F5F0E6;
}

/* Icône */
.visite-card__icon {
  font-size: 2.2rem;
  line-height: 1;
}

/* Titre */
.visite-card__titre {
  font-family: 'Merienda', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #1e293b;
  margin: 0;
}

/* Description */
.visite-card__desc {
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* Liste */
.visite-card__liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.visite-card__liste li {
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  color: #374151;
  line-height: 1.45;
}

/* Note */
.visite-card__note {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  color: #9ca3af;
  font-style: italic;
  margin: 0;
  text-align: left;
}

/* CTA visite guidée */
.visite-card__cta {
  display: inline-block;
  margin-top: auto;
  background: var(--primary-color);
  color: #F5F0E6;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background .2s, transform .1s;
}
.visite-card__cta:hover {
  background: #1f5a2e;
  transform: translateY(-1px);
  color: #F5F0E6;
  text-decoration: none;
}

/* ── Comparatif ── */
.visite-comparatif {
  max-width: 760px;
  margin: 0 auto;
}
.visite-comparatif__titre {
  font-family: 'Merienda', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 18px;
}
.visite-comparatif__table-wrap {
  overflow-x: auto;
}
.visite-comparatif__table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
}
.visite-comparatif__table thead th {
  background: var(--primary-color);
  color: #F5F0E6;
  padding: 11px 16px;
  text-align: center;
  font-weight: 600;
}
.visite-comparatif__table thead th:first-child {
  text-align: left;
  background: #3a2a10;
}
.visite-comparatif__table tbody td {
  padding: 9px 16px;
  border-bottom: 1px solid #e6dcc9;
  color: #374151;
  text-align: center;
}
.visite-comparatif__table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1e293b;
  background: #fdfaf5;
}
.visite-comparatif__table tbody tr:hover td {
  background: #f5f0e6;
}
.visite-comparatif__table tbody tr:hover td:first-child {
  background: #ede8dc;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .deux-visites__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .visite-comparatif__table {
    font-size: .78rem;
  }
  .visite-comparatif__table thead th,
  .visite-comparatif__table tbody td {
    padding: 8px 10px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION ACTUALITÉS — SLIDER — index.html
   ═══════════════════════════════════════════════════════════════════ */

.actualites {
  background: #fdfaf5;
  padding: 72px 2rem 80px;
  overflow: hidden;
}

.container-actu {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── En-tête ── */
.actu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.actu-eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.actu-titre {
  font-family: 'Merienda', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
}

/* ── Boutons fléchés ── */
.actu-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}

.actu-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  font-family: 'Lato', sans-serif;
}
.actu-arrow:hover:not(:disabled) {
  background: var(--primary-color);
  color: #F5F0E6;
}
.actu-arrow:disabled {
  opacity: .3;
  cursor: not-allowed;
}

/* ── Slider ── */
.actu-slider-wrap {
  overflow: hidden;
}

.actu-slider-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ── Carte ── */
.actu-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid #e6dcc9;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.actu-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

/* Image */
.actu-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

/* Badge catégorie */
.actu-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
}
.actu-tag--event   { background: var(--primary-color); }
.actu-tag--produit { background: var(--accent-color); }
.actu-tag--marche  { background: #7a5d45; }
.actu-tag--recette { background: #b45309; }
.actu-tag--info    { background: #374151; }

/* Corps */
.actu-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.actu-date {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  color: #9ca3af;
  font-style: italic;
}

.actu-card__titre {
  font-family: 'Merienda', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1e293b;
  line-height: 1.4;
  margin: 0;
}

.actu-card__desc {
  font-family: 'Lato', sans-serif;
  font-size: .84rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  flex: 1;
}

.actu-lire {
  display: inline-block;
  margin-top: 6px;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s;
  align-self: flex-start;
}
.actu-lire:hover { border-color: var(--primary-color); }

/* ── Pastilles ── */
.actu-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.actu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d4cfc8;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.actu-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .actu-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .actu-card {
    flex: 0 0 100%;
  }
  .actu-titre { font-size: 1.6rem; }
  .actu-header { flex-direction: column; align-items: flex-start; }
  .actu-controls { align-self: flex-end; }
}


/* ═══════════════════════════════════════
   PAGE FABRICATION
═══════════════════════════════════════ */
.fab-intro{background:#fff;padding:4rem 2rem 3rem;text-align:center}
.fab-intro h2{font-family:'Merienda',serif;font-size:2rem;color:#194824;font-weight:400;margin-bottom:.8rem}
.fab-intro p{max-width:740px;margin:0 auto;font-size:1.05rem;line-height:1.9;color:#555;text-align:center}

.fab-nav{background:#f9f6ef;border-top:1px solid #e8e0d0;border-bottom:1px solid #e8e0d0;padding:1rem 2rem;display:flex;justify-content:center;gap:.5rem 1.5rem;flex-wrap:wrap}
.fab-nav a{font-family:'Lato',sans-serif;font-size:.82rem;color:#194824;text-decoration:none;font-weight:700;letter-spacing:.04em;text-transform:uppercase;transition:color .2s}
.fab-nav a:hover{color:#7a5d45}
.fab-nav span{color:#ccc}

/* Chiffres clés circuit court */
.fab-circuit{background:#194824;padding:3rem 2rem;display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}
.circuit-badge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:12px;padding:1.4rem 1.8rem;text-align:center;min-width:160px}
.circuit-badge .num{font-family:'Merienda',serif;font-size:2rem;color:#F5F0E6;display:block;line-height:1;margin-bottom:.3rem}
.circuit-badge .lbl{font-size:.8rem;color:rgba(255,255,255,.7);line-height:1.4}

/* Sections alternées */
.fab-section{padding:4rem 2rem;background:#fff}
.fab-section.alt{background:#f9f6ef}
.container-fab{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.fab-section.alt .container-fab{direction:rtl}
.fab-section.alt .container-fab>*{direction:ltr}
.fab-eyebrow{font-size:.78rem;color:#7a5d45;font-weight:700;text-transform:uppercase;letter-spacing:.08em;display:block;margin-bottom:.6rem}
.fab-section-text h2{font-family:'Merienda',serif;font-size:1.5rem;color:#194824;font-weight:400;margin-bottom:.8rem}
.fab-section-text p{font-size:.97rem;line-height:1.9;color:#555;margin-bottom:1rem;text-align:left}
.fab-section-text p:last-child{margin-bottom:0}
.detail-box{background:#f9f6ef;border-left:3px solid #194824;padding:.9rem 1.2rem;border-radius:0 6px 6px 0;margin-top:1.2rem}
.fab-section.alt .detail-box{background:#fff}
.detail-box p{font-size:.88rem;color:#444;margin:0;font-style:italic;text-align:left}
.detail-box strong{color:#194824;font-style:normal}

.fab-img-placeholder{width:100%;aspect-ratio:4/3;background:#eee8db;border-radius:12px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.8rem;color:#9a8a70;font-family:'Lato',sans-serif;font-size:.85rem;text-align:center;border:2px dashed #d4c8b0;padding:2rem}
.fab-img-placeholder svg{width:48px;height:48px;opacity:.5}
.fab-img-placeholder span{font-style:italic;line-height:1.5}

/* Images étapes fabrication */
.fab-img-wrap{width:100%;aspect-ratio:4/3;border-radius:12px;overflow:hidden;flex-shrink:0}
.fab-img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;border-radius:12px}

/* Tags étapes */
.step-tag{display:inline-flex;align-items:center;gap:6px;font-size:.72rem;padding:4px 12px;border-radius:20px;font-weight:700;letter-spacing:.04em;margin-bottom:.8rem}
.step-tag.bethmale{background:#e8f0e9;color:#194824}
.step-tag.brousse{background:#f5ede3;color:#7a5d45}
.step-num{background:#194824;color:#fff;width:20px;height:20px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.7rem;font-weight:700;flex-shrink:0}
.step-tag.brousse .step-num{background:#7a5d45}

/* Durée */
.step-duration{display:inline-block;font-size:.78rem;color:#7a5d45;font-weight:600;background:#f5ede3;padding:3px 10px;border-radius:20px;margin-bottom:1rem}

/* QR block */
.qr-block{margin-top:1.5rem;display:flex;align-items:center;gap:1rem;padding:1rem 1.2rem;background:#fff;border:1px solid #e8e0d0;border-radius:8px}
.fab-section.alt .qr-block{background:#f9f6ef}
.qr-placeholder{width:64px;height:64px;background:#eee8db;border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0;border:1px dashed #c8baa0}
.qr-placeholder svg{width:32px;height:32px;opacity:.5;color:#9a8a70}
.qr-text{font-size:.82rem;color:#777;line-height:1.5}
.qr-text strong{display:block;color:#194824;font-size:.85rem;margin-bottom:2px}
.qr-url{font-size:.75rem;color:#9a8a70;word-break:break-all}

/* Séparateur brousse */
.brousse-sep{background:#3a2a10;padding:4rem 2rem;text-align:center}
.brousse-sep h2{font-family:'Merienda',serif;font-size:1.8rem;color:#F5F0E6;font-weight:400;margin-bottom:.8rem}
.brousse-sep p{max-width:680px;margin:0 auto;font-size:1rem;line-height:1.9;color:rgba(255,255,255,.75);text-align:center}

/* Chiffres clés fabrication */
.fab-chiffres{background:#194824;padding:3.5rem 2rem}
.fab-chiffres h2{font-family:'Merienda',serif;font-size:1.4rem;color:#F5F0E6;font-weight:400;text-align:center;margin-bottom:2.5rem}
.chiffres-grid{max-width:960px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:1.2rem}
.chiffre-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:1.4rem 1rem;text-align:center}
.chiffre-card .chiffre-num{font-family:'Merienda',serif;font-size:2rem;color:#F5F0E6;display:block;line-height:1;margin-bottom:.4rem}
.chiffre-card .chiffre-label{font-size:.8rem;color:rgba(255,255,255,.65);line-height:1.4}

/* CTA */
.fab-cta{background:#f9f6ef;padding:4rem 2rem;text-align:center}
.fab-cta h2{font-family:'Merienda',serif;font-size:1.6rem;color:#194824;font-weight:400;margin-bottom:.8rem}
.fab-cta p{max-width:580px;margin:0 auto 2rem;font-size:.97rem;line-height:1.8;color:#555;text-align:center}
.fab-cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.fab-cta-btns a{display:inline-block;padding:.75rem 2rem;border-radius:4px;font-family:'Lato',sans-serif;font-size:.9rem;font-weight:700;text-decoration:none;letter-spacing:.04em;transition:all .25s}
.btn-primary{background:#194824;color:#fff}
.btn-primary:hover{background:#122f18}
.btn-secondary{background:transparent;color:#194824;border:2px solid #194824}
.btn-secondary:hover{background:#194824;color:#fff}

@media(max-width:768px){
  .container-fab,.fab-section.alt .container-fab{grid-template-columns:1fr;direction:ltr;gap:2rem}
  .fab-circuit{gap:1rem}
  .fab-nav{gap:.3rem 1rem}
}

/* ═══════════════════════════════════════
   BANDEAU LIEN FABRICATION (visite.html)
═══════════════════════════════════════ */
.fab-teaser {
  background: #f9f6ef;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
}
.fab-teaser__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #194824;
  font-family: var(--font-text, 'Lato', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.fab-teaser__link:hover {
  background: #eee8db;
  color: #122f18;
}
.fab-teaser__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.fab-teaser__text {
  flex: 1;
  text-align: center;
}
.fab-teaser__arrow {
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.fab-teaser__link:hover .fab-teaser__arrow {
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .fab-teaser__link { font-size: 0.88rem; gap: 0.5rem; padding: 0.9rem 1rem; }
}