/* =================================================================
   MIELLERIE DES CIMES — Feuille de style (v5 : sobre + touches douces)
   Base sobre (photo, palette discrète), titres géométriques (Outfit).
   Ajouts légers : fonds jaune pâle & lavande pâle, séparations en
   miellerie des cimes, motifs hexagonaux subtils.
   ================================================================= */

:root {
  --creme:      #F7F2EA;
  --creme-2:    #FCF9F3;
  --blanc:      #FFFFFF;
  --encre:      #2E2A33;
  --encre-doux: #6E6776;
  --miel:       #DDA63C;
  --miel-fonce: #BF7E1E;
  --miel-clair: #F2D79A;
  --lavande:    #9B8BC4;
  --lavande-fonce: #6E5E96;
  --jaune-bg:   #FBF2D6;   /* jaune pâle — fond de section */
  --lila-bg:    #EFEAF6;   /* lavande pâle — fond de section */
  --ligne:      rgba(46, 42, 51, .13);

  --font-titre: "Outfit", "Trebuchet MS", sans-serif;
  --font-texte: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 12px;
  --ombre: 0 18px 40px -22px rgba(46, 42, 51, .34);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-texte);
  font-size: 1.0625rem; line-height: 1.75; color: var(--encre);
  background: var(--creme); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--miel-fonce); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--lavande-fonce); }

h1, h2, h3, h4 {
  font-family: var(--font-titre); font-weight: 500; line-height: 1.14;
  color: var(--encre); margin: 0 0 .58em; letter-spacing: -0.012em;
}
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; font-weight: 600; color: var(--lavande-fonce); }

/* ---------- Utilitaires ---------- */
.contenu { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.3rem, 4vw, 2.6rem); }
.section { padding-block: var(--section-y); position: relative; }
.section--creme2 { background: var(--creme-2); }
.section--jaune  { background: var(--jaune-bg); }
.section--lila   { background: var(--lila-bg); }

.eyebrow {
  display: inline-block; font-family: var(--font-titre); font-weight: 600;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--miel-fonce); margin-bottom: 1.1rem;
}
.titre-section { font-size: clamp(1.95rem, 4vw, 2.85rem); font-weight: 500; }
.intro-section { max-width: 60ch; font-size: 1.14rem; color: var(--encre-doux); }
.centre { text-align: center; }
.centre .intro-section { margin-inline: auto; }
.centre .eyebrow::after { content: ""; display: block; width: 34px; height: 2px; background: var(--miel); margin: .9rem auto 0; border-radius: 2px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-titre); font-weight: 600; font-size: .92rem; letter-spacing: .015em;
  padding: .9rem 1.8rem; border-radius: 100px; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--primaire { background: var(--encre); color: var(--creme); }
.btn--primaire:hover { background: var(--lavande-fonce); color: #fff; transform: translateY(-2px); }
.btn--secondaire { background: transparent; color: var(--encre); border-color: var(--encre); }
.btn--secondaire:hover { background: var(--encre); color: var(--creme); transform: translateY(-2px); }
.btn--blanc { background: #fff; color: var(--encre); border-color: #fff; }
.btn--blanc:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn--clair { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn--clair:hover { background: #fff; color: var(--encre); transform: translateY(-2px); }
.btn-groupe { display: flex; flex-wrap: wrap; gap: .9rem; }
.centre .btn-groupe, .appel .btn-groupe { justify-content: center; }

.lien-fleche {
  font-family: var(--font-titre); font-weight: 600; font-size: .84rem;
  letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5rem; color: var(--encre);
}
.lien-fleche::after { content: "→"; transition: transform .25s ease; color: var(--miel-fonce); }
.lien-fleche:hover { color: var(--miel-fonce); }
.lien-fleche:hover::after { transform: translateX(5px); }

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; gap: .7rem; }
.logo:hover { color: inherit; }
.logo__bee { width: 40px; height: auto; flex: none; color: var(--encre); }
.logo__txt { display: grid; line-height: .92; }
.logo__la { font-family: var(--font-titre); font-weight: 500; font-size: .82rem; color: var(--encre-doux); letter-spacing: .02em; }
.logo__goutte { font-family: var(--font-titre); font-weight: 600; font-size: 1.5rem; color: var(--encre); letter-spacing: -.02em; }
.logo__demiel { font-family: var(--font-titre); font-weight: 500; font-size: .98rem; color: var(--miel-fonce); margin-top: 1px; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 242, 234, .9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ligne);
}
.nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(1rem, 2.2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding-block: .8rem;
}
.nav-liens {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-liens a { font-family: var(--font-titre); font-weight: 500; font-size: .95rem; color: var(--encre); padding-block: .3rem; position: relative; }
.nav-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .62rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 126, 30, .22);
  background: linear-gradient(135deg, #F6D994 0%, #DDA63C 100%);
  box-shadow: 0 10px 22px -16px rgba(46, 42, 51, .65);
  color: var(--encre);
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .015em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.nav-liens a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; border-radius: 2px; background: var(--miel); transition: width .3s ease; }
.nav-liens a:hover::after, .nav-liens a[aria-current="page"]::after { width: 100%; }
.nav-liens a[aria-current="page"] { color: var(--miel-fonce); }
.nav-contact:hover, .nav-contact[aria-current="page"] {
  background: linear-gradient(135deg, #F8E2AC 0%, #BF7E1E 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -18px rgba(46, 42, 51, .78);
}

.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-burger span { width: 25px; height: 2px; background: var(--encre); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ---------- Motif hexagonal subtil ---------- */
.deco-hex { position: absolute; z-index: 0; width: clamp(150px, 20vw, 230px); height: auto; pointer-events: none; }
.deco-hex--miel    { color: rgba(221, 166, 60, .15); }
.deco-hex--lavande { color: rgba(155, 139, 196, .20); }
.deco-hex--blanc   { color: rgba(255, 255, 255, .16); }
.deco-hex--tr { top: -28px; right: -36px; }
.deco-hex--br { bottom: -34px; right: -30px; }
.deco-hex--bl { bottom: -30px; left: -38px; }
.deco-hex--tl { top: -28px; left: -36px; }

/* ---------- Séparation en miellerie des cimes ---------- */
.sep-drip { position: absolute; left: 0; right: 0; bottom: 0; transform: translateY(99%); z-index: 2; line-height: 0; pointer-events: none; }
.sep-drip svg { width: 100%; height: clamp(24px, 3.2vw, 44px); display: block; }

/* ---------- HÉRO ---------- */
.hero { position: relative; overflow: hidden; }
.hero--accueil {
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  display: grid; align-items: center;
  background:
    linear-gradient(90deg, rgba(34,30,42,.74) 0%, rgba(40,35,52,.42) 44%, rgba(40,35,52,.1) 100%),
    linear-gradient(0deg, rgba(34,30,42,.35) 0%, rgba(34,30,42,0) 46%),
    url("hero-lavande.jpg");
  background-size: cover; background-position: center right;
}
.hero--accueil .hero__inner { max-width: 33rem; margin-inline: 0; padding-block: clamp(6rem, 14vw, 9rem); color: #fff; }
.hero--accueil .eyebrow { color: var(--miel-clair); }
.hero--accueil .eyebrow::after { background: var(--miel-clair); margin-left: 0; margin-right: auto; }
.hero--accueil h1 { color: #fff; font-size: clamp(2.7rem, 6.2vw, 4.7rem); font-weight: 500; line-height: 1.07; }
.hero--accueil .hero__sous { color: rgba(255,255,255,.92); }
.hero--accueil .sep-drip { display: none; }
.hero--accueil .deco-hex { display: none; }

.hero__sous { font-size: clamp(1.1rem, 2.2vw, 1.4rem); max-width: 42ch; margin-bottom: 2.2rem; line-height: 1.6; }
.hero .btn-groupe { margin-top: .3rem; }
.hero__inner > * { opacity: 0; transform: translateY(20px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__inner > *:nth-child(1) { animation-delay: .1s; }
.hero__inner > *:nth-child(2) { animation-delay: .24s; }
.hero__inner > *:nth-child(3) { animation-delay: .4s; }
.hero__inner > *:nth-child(4) { animation-delay: .56s; }

.hero--page { background: linear-gradient(150deg, #F3ECDD 0%, #EFE8F2 100%); border-bottom: 1px solid var(--ligne); }
.hero--page .hero__inner { max-width: 36rem; padding-block: clamp(3.8rem, 8vw, 6.5rem); }
.hero--page .titre-h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 500; }
.hero--page .hero__sous { color: var(--encre-doux); }

/* ---------- Bloc texte + visuel ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.duo--inverse .duo__visuel { order: -1; }
@media (max-width: 820px) { .duo { grid-template-columns: 1fr; } .duo--inverse .duo__visuel { order: 0; } }

.visuel-photo {
  position: relative; width: 100%; aspect-ratio: 4 / 5; max-width: 460px; margin-inline: auto;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #E7DECF, #D8CBB6);
  display: grid; place-items: center; text-align: center; color: #fff;
  box-shadow: var(--ombre);
}
.visuel-photo span { font-family: var(--font-titre); font-weight: 500; font-size: 1.05rem; max-width: 72%; }
.visuel-photo--photo { background-image: url("hero-lavande.jpg"); background-size: cover; background-position: center; }
.visuel-photo--abeilles { background-image: url("images/pexels-alexasfotos-37727158.jpg"); background-size: cover; background-position: center; }
.visuel-photo--boutique { background-image: url("images/165106-bee-colonies-4027054.jpg"); background-size: cover; background-position: center; }
.visuel-photo--nature { background-image: url("images/pexels-ozram-34046391.jpg"); background-size: cover; background-position: center; }
.visuel-photo--ruches { background-image: url("images/pexels-triemli-28462151.jpg"); background-size: cover; background-position: center; }
.visuel-photo--lavande { background: linear-gradient(160deg, #B6A4DC, #8A78B4); }
.visuel-photo--vert { background: linear-gradient(160deg, #AFC68C, #7E9A5C); }

/* puces */
.liste { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.05rem; }
.liste li { position: relative; padding-left: 1.8rem; }
.liste li::before { content: ""; position: absolute; left: 0; top: .52em; width: 10px; height: 10px; border-radius: 50% 50% 50% 0; transform: rotate(45deg); background: var(--miel); }
.liste li:nth-child(2n)::before { background: var(--lavande); }
.liste strong { font-weight: 700; }

/* ---------- Grille produits ---------- */
.grille-produits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1.4rem, 3vw, 2.2rem); margin-top: 3rem; }
.carte { background: #fff; border: 1px solid var(--ligne); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.carte:hover { transform: translateY(-6px); box-shadow: var(--ombre); }
.carte__media { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; }
.carte__media--photo {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.carte__media--photo .carte__badge { display: none; }
.carte__media--lavande { background: linear-gradient(160deg, #D8CCEC, #B3A1DA); }
.carte__media--montagne{ background: linear-gradient(160deg, #EAD9B5, #CDAB6A); }
.carte__media--miel    { background: linear-gradient(160deg, #F1E1B6, #E0BA68); }
.carte__media--pollen  { background: linear-gradient(160deg, #EEDDB0, #D9B468); }
.carte__media--bougie  { background: linear-gradient(160deg, #EFE6D2, #D9C29B); }
.carte__media--propolis{ background: linear-gradient(160deg, #CFD9BC, #A1B580); }
.carte__media--coffret { background: linear-gradient(160deg, #CADFEA, #97C3D7); }
.carte__media--garrigue{ background: linear-gradient(160deg, #D3DCBD, #A8BD84); }
.carte__media--photo-lavande { background-image: url("images/les miels/Gemini_Generated_Image_ix90vhix90vhix90.png"); }
.carte__media--photo-garrigue { background-image: url("images/les miels/Gemini_Generated_Image_lxj6jvlxj6jvlxj6.png"); }
.carte__media--photo-acacia-cremeux { background-image: url("images/les miels/Gemini_Generated_Image_pfp6njpfp6njpfp6.png"); }
.carte__media--photo-acacia { background-image: url("images/les miels/Gemini_Generated_Image_yos0lryos0lryos0.png"); }
.carte__badge { width: 46px; height: 46px; display: grid; place-items: center; background: rgba(255,255,255,.94); border-radius: 50%; color: var(--encre); box-shadow: 0 6px 16px -8px rgba(46,42,51,.5); }
.carte__corps { padding: 1.5rem 1.6rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.carte__corps h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: .45rem; }
.carte__desc { color: var(--encre-doux); font-size: .99rem; }
.carte__note { margin-top: auto; padding-top: 1.1rem; font-style: italic; font-weight: 600; color: var(--lavande-fonce); font-size: .98rem; }
.carte__prix { margin-top: .7rem; font-family: var(--font-titre); font-weight: 600; font-size: .88rem; letter-spacing: .04em; color: var(--miel-fonce); }

.bandeau-info { margin-top: 2.6rem; text-align: center; font-style: italic; font-family: var(--font-titre); font-weight: 500; color: var(--encre-doux); }
.bandeau-info::before, .bandeau-info::after { content: "·"; color: var(--miel); margin: 0 .7rem; font-weight: 700; }

/* ---------- Étapes ---------- */
.etapes { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.8rem; margin-top: 3rem; }
.etape { padding-top: 1.5rem; border-top: 2px solid var(--ligne); transition: border-color .3s ease; }
.etape:hover { border-top-color: var(--miel); }
.etape__num { font-family: var(--font-titre); font-weight: 600; font-size: 1.05rem; color: var(--miel-fonce); margin-bottom: .6rem; }
.etape h3 { font-size: 1.22rem; font-weight: 600; }
.etape p { font-size: .98rem; color: var(--encre-doux); margin: 0; }

/* ---------- Engagement (chips) ---------- */
.chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.6rem; margin-top: 3rem; }
.chip { border-top: 2px solid var(--lavande); padding-top: 1.2rem; }
.chip:nth-child(2n) { border-top-color: var(--miel); }
.chip h3 { font-size: 1.16rem; font-weight: 600; margin-bottom: .4rem; }
.chip p { font-size: .96rem; color: var(--encre-doux); margin: 0; }

/* ---------- Contact / accès ---------- */
.contact-grille { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 760px) { .contact-grille { grid-template-columns: 1fr; } }
.infos-liste { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.3rem; }
.infos-liste li { display: grid; gap: .1rem; padding-left: 1.6rem; position: relative; }
.infos-liste li::before { content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px; background: var(--miel); border-radius: 50% 50% 50% 0; transform: rotate(45deg); }
.infos-liste li:nth-child(2n)::before { background: var(--lavande); }
.infos-liste strong { font-family: var(--font-titre); font-weight: 600; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--encre-doux); }
.carte-acces { border-radius: var(--radius); overflow: hidden; box-shadow: var(--ombre); background: linear-gradient(150deg, #C9BCDF, var(--lavande-fonce)); min-height: 340px; display: grid; place-items: center; text-align: center; color: #fff; padding: 2rem; }
.carte-acces span { font-family: var(--font-titre); font-weight: 500; font-size: 1.15rem; max-width: 28ch; }
.carte-acces iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.carte-acces--map { padding: 0; background: #fff; }

.social-actu {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 3rem;
}
.social-actu__carte {
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--ombre);
}
.social-actu__liste {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.social-actu__liste li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--encre-doux);
}
.social-actu__liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  background: var(--miel);
}
@media (max-width: 820px) { .social-actu { grid-template-columns: 1fr; } }

/* ---------- Formulaire ---------- */
.formulaire { display: grid; gap: 1.2rem; }
.champ { display: grid; gap: .45rem; }
.champ label { font-family: var(--font-titre); font-weight: 600; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--encre-doux); }
.champ input, .champ textarea { font-family: var(--font-texte); font-size: 1rem; padding: .85rem 1rem; border: 1.5px solid var(--ligne); border-radius: 10px; background: #fff; color: var(--encre); transition: border-color .25s ease, box-shadow .25s ease; }
.champ input:focus, .champ textarea:focus { outline: none; border-color: var(--miel); box-shadow: 0 0 0 3px rgba(221,166,60,.22); }
.champ textarea { resize: vertical; min-height: 140px; }

/* ---------- Bandeau d'appel ---------- */
.appel { text-align: center; }
.appel h2 { font-size: clamp(1.95rem, 4vw, 2.7rem); font-weight: 500; margin-bottom: 1rem; }
.appel p { max-width: 50ch; margin-inline: auto; color: var(--encre-doux); margin-bottom: 2rem; }

/* ---------- Pied de page ---------- */
.site-footer { background: #262229; color: #C7C0CC; padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-grille { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.6rem; }
@media (max-width: 720px) { .footer-grille { grid-template-columns: 1fr; gap: 2.2rem; } }
.site-footer .logo__bee { color: #fff; }
.site-footer .logo__goutte { color: #fff; }
.site-footer .logo__la { color: #A89FB6; }
.site-footer .logo__demiel { color: var(--miel-clair); }
.site-footer p { color: #9B93A4; font-size: .96rem; margin-top: 1.1rem; }
.site-footer h4 { color: #fff; font-family: var(--font-titre); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-liens { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-liens a { color: #C7C0CC; font-size: .96rem; }
.footer-liens a:hover { color: var(--miel-clair); }
.footer-bas { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .84rem; color: #7E7788; }

@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Animations au scroll ---------- */
body.reveal-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
body.reveal-ready .reveal-item--visual { transform: translate3d(0, 34px, 0) scale(.985); }
body.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

:focus-visible { outline: 2px solid var(--miel-fonce); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero__inner > * { opacity: 1 !important; transform: none !important; }
  .reveal-item { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .nav { justify-content: space-between; padding-inline: 1rem; }
  .nav-contact { margin-left: auto; margin-right: .45rem; min-height: 38px; padding: .5rem .95rem; font-size: .84rem; }
  .nav-liens { position: absolute; top: 100%; left: 0; right: 0; transform: none; flex-direction: column; align-items: flex-start; gap: 0; background: var(--creme); border-bottom: 1px solid var(--ligne); padding: .4rem 1.5rem 1.2rem; max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .nav-liens li { width: 100%; }
  .nav-liens a { display: block; padding: .9rem 0; width: 100%; border-bottom: 1px solid var(--ligne); }
  .nav-toggle:checked ~ .nav-liens { max-height: 460px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
.carte__mark { width: 22px; height: 22px; color: var(--encre); }

/* =================================================================
   PAGE PRODUITS MODERNE
   ================================================================= */
.produits-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(221,166,60,.12), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(155,139,196,.14), transparent 34rem),
    var(--creme);
}
.produits-hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.produits-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.produits-hero__texte h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 10ch;
  letter-spacing: 0;
  line-height: .96;
  margin-bottom: 1.6rem;
}
.produits-hero__texte p {
  max-width: 36rem;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: var(--encre-doux);
}
.produits-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.produits-hero__visuel {
  position: relative;
  min-height: clamp(420px, 54vw, 650px);
  isolation: isolate;
}
.produits-hero__visuel::before {
  content: "";
  position: absolute;
  inset: 9% 5% 8% 10%;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(251,242,214,.72));
  box-shadow: 0 34px 80px -55px rgba(46,42,51,.55);
  z-index: -1;
}
.produits-hero__pot {
  position: absolute;
  width: clamp(190px, 23vw, 330px);
  filter: drop-shadow(0 28px 30px rgba(46,42,51,.18));
}
.produits-hero__pot--lavande { left: 5%; top: 12%; transform: rotate(-5deg); }
.produits-hero__pot--acacia { right: 4%; bottom: 10%; transform: rotate(4deg); }
.produits-hero__pot--pollen { left: 35%; top: 2%; width: clamp(170px, 20vw, 290px); }
.produits-categories {
  position: sticky;
  top: 74px;
  z-index: 35;
  display: flex;
  justify-content: center;
  gap: .65rem;
  padding-block: .85rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
  background: rgba(247,242,234,.82);
  backdrop-filter: blur(12px);
  border-block: 1px solid rgba(46,42,51,.08);
}
.produits-categories a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .52rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(46,42,51,.12);
  color: var(--encre);
  font-family: var(--font-titre);
  font-size: .86rem;
  font-weight: 600;
  background: rgba(255,255,255,.55);
}
.produits-categories a:hover { color: #fff; background: var(--encre); border-color: var(--encre); }
.produit-signature {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--creme-2);
}
.produit-signature__grid {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.produit-signature__media {
  min-height: clamp(340px, 42vw, 560px);
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff 0%, #F8F1E6 100%);
  box-shadow: 0 28px 64px -50px rgba(46,42,51,.5);
  overflow: hidden;
}
.produit-signature__media img { width: min(76%, 390px); filter: drop-shadow(0 22px 22px rgba(46,42,51,.13)); }
.produit-signature__texte h2 { font-size: clamp(2.2rem, 5vw, 4.3rem); letter-spacing: 0; }
.produit-signature__texte p { max-width: 42rem; color: var(--encre-doux); font-size: 1.08rem; }
.produits-section-head { max-width: 46rem; margin-bottom: 2.4rem; }
.produits-section-head p { color: var(--encre-doux); font-size: 1.06rem; }
.produits-section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 2rem;
  align-items: end;
}
.product-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.8rem);
}
.product-grid-modern--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(46,42,51,.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 18px 46px -42px rgba(46,42,51,.7);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(191,126,30,.26);
  box-shadow: 0 28px 58px -42px rgba(46,42,51,.8);
}
.product-card--large { grid-column: span 2; display: grid; grid-template-columns: .9fr 1fr; }
.product-card__media {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: #fff;
  padding: clamp(1rem, 3vw, 2rem);
}
.product-card__media img { width: min(82%, 310px); max-height: 330px; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(46,42,51,.12)); }
.product-card__media--warm { background: linear-gradient(145deg, #F7E7C6, #CDA45C); }
.product-card__media--gold { background: linear-gradient(145deg, #FFF0BF, #E0B55C); }
.product-card__media--cire { background: linear-gradient(145deg, #F5E8CE, #D8B66E); }
.product-card__media--propolis { background: linear-gradient(145deg, #DCE6C8, #9EAD79); }
.product-card__media--coffret { background: linear-gradient(145deg, #D8E8EF, #9ABFD1); }
.product-card__symbol {
  display: grid;
  place-items: center;
  width: clamp(70px, 9vw, 110px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--encre);
  text-align: center;
}
.product-card__body { padding: clamp(1.25rem, 2.4vw, 1.9rem); display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.product-card__type {
  font-family: var(--font-titre);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--miel-fonce);
}
.product-card h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: 0; letter-spacing: 0; }
.product-card p { margin: 0; color: var(--encre-doux); font-size: .98rem; line-height: 1.65; }
.product-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-block: .35rem .2rem; }
.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .28rem .68rem;
  border-radius: 999px;
  background: rgba(221,166,60,.13);
  color: var(--encre);
  font-family: var(--font-titre);
  font-size: .78rem;
  font-weight: 600;
}
.product-card__link {
  margin-top: auto;
  font-family: var(--font-titre);
  font-weight: 700;
  color: var(--encre);
}
.product-card__link::after { content: " →"; color: var(--miel-fonce); }
.produits-ruche { background: var(--lila-bg); }
.produits-saisons {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(135deg, #2E2A33 0%, #4B4058 100%);
  color: #fff;
}
.produits-saisons__inner { max-width: 780px; text-align: center; }
.produits-saisons .eyebrow { color: var(--miel-clair); }
.produits-saisons h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 4rem); letter-spacing: 0; }
.produits-saisons p { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.produits-saisons__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2rem; }
@media (max-width: 980px) {
  .produits-hero__grid, .produit-signature__grid, .produits-section-head--split { grid-template-columns: 1fr; }
  .produits-hero__texte h1 { max-width: 12ch; }
  .product-grid-modern, .product-grid-modern--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card--large { grid-column: span 2; grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .produits-hero { min-height: auto; padding-top: 3rem; }
  .produits-hero__visuel { min-height: 390px; }
  .produits-hero__pot { width: 210px; }
  .produits-hero__pot--pollen { left: 28%; }
  .produits-categories { justify-content: flex-start; overflow-x: auto; padding-inline: 1rem; }
  .product-grid-modern, .product-grid-modern--compact, .product-card--large { grid-template-columns: 1fr; }
  .product-card--large { grid-column: span 1; }
  .product-card__media { min-height: 240px; }
}
/* =================================================================
   COUCHE COULEUR SECTIONS
   Découpage plus marqué, sans surcharger la palette.
   ================================================================= */
:root {
  --ambre: #E39A20;
  --ambre-vif: #E6A11F;
  --ambre-pale: #F5D58A;
  --olive: #85823A;
  --olive-doux: #DCD8B8;
  --peche-miel: #E6CFB2;
  --papier-chaud: #F2E3CF;
}
body { background: var(--papier-chaud); }
.section--creme2 { background: linear-gradient(180deg, #FFF8EE 0%, #F2E3CF 100%); }
.section--jaune {
  background: linear-gradient(180deg, #FFF3D5 0%, #F7E3B3 100%);
  color: var(--encre);
}
.section--lila {
  background: linear-gradient(180deg, #F3EFF8 0%, #ECE4F3 100%);
}
.section--jaune .eyebrow,
.section--jaune .titre-section,
.section--jaune h2,
.section--jaune h3 { color: var(--encre); }
.section--jaune .intro-section,
.section--jaune p { color: rgba(46,42,51,.78); }
.section--jaune .btn--secondaire { border-color: rgba(46,42,51,.72); }
.section--lila::before,
.section--jaune::before,
.section--creme2::before {
  display: none;
}
.duo__texte .eyebrow,
.produits-section-head .eyebrow { color: #9A681B; }
.carte,
.product-card,
.social-actu__carte {
  box-shadow: 0 24px 54px -46px rgba(46,42,51,.75);
}
.site-footer { background: #2A2424; }

/* Accueil : un peu plus de découpage façon boutique miel */
.hero--accueil { border-bottom: 0; }
.hero--accueil + .section {
  background: linear-gradient(90deg, #F2E3CF 0 52%, #FFF8EE 52% 100%);
}
.contact-grille .carte-acces:not(.carte-acces--map) { background: linear-gradient(150deg, var(--olive-doux), var(--olive)); }

/* Page produits : sections plus colorées et plus modernes */
.produits-page {
  background:
    linear-gradient(180deg, #F7E8D2 0%, #F7E8D2 18rem, #FFF8EE 18rem, #FFF8EE 100%);
}
.produits-hero {
  background:
    linear-gradient(180deg, rgba(255,248,238,.98) 0 58%, #F2E3CF 58% 100%);
}
.produits-hero__visuel::before {
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(245,213,138,.78));
  border: 1px solid rgba(184,121,22,.14);
}
.produits-categories {
  background: rgba(242,227,207,.9);
  border-block-color: rgba(133,130,58,.24);
}
.produits-categories a {
  background: rgba(255,255,255,.72);
  border-color: rgba(133,130,58,.22);
}
.produits-categories a:hover { background: var(--olive); border-color: var(--olive); }
.produit-signature {
  background:
    linear-gradient(90deg, var(--olive-doux) 0 34%, #FFF8EE 34% 100%);
}
.produit-signature__media { background: linear-gradient(145deg, #FFFFFF 0%, #F4E6C9 100%); }
.produits-catalogue {
  background:
    linear-gradient(180deg, #FFF8EE 0%, #FFF8EE 72%, #F7E8D2 72% 100%);
}
.produits-ruche {
  background:
    linear-gradient(180deg, #F3EFF8 0%, #EEE7D8 100%);
}
.product-card__type { color: #A26712; }
.product-tags span { background: rgba(227,154,32,.15); }
.product-card--large .product-card__body { background: linear-gradient(180deg, #fff 0%, #FFF6E8 100%); }
.produits-saisons {
  background: linear-gradient(135deg, #6F6B36 0%, #3E3A27 100%);
  border-top: 0;
}
@media (max-width: 980px) {
  .hero--accueil + .section,
  .produit-signature { background: #FFF8EE; }
}

/* =================================================================
   FONDS DE SECTIONS CLAIRS
   On garde la couleur en accents, pas en grands aplats.
   ================================================================= */
.section,
.section--creme2,
.section--jaune,
.section--lila {
  background: #FFFCF7;
}
.section:nth-of-type(even) {
  background: #FFFFFF;
}
.section--jaune .intro-section,
.section--jaune p,
.section--lila .intro-section,
.section--lila p {
  color: var(--encre-doux);
}
.section--jaune::before,
.section--lila::before,
.section--creme2::before { display: none; }
.hero--accueil + .section {
  background: linear-gradient(90deg, #F4E6D1 0 50%, #FFFCF7 50% 100%);
}
.produit-signature,
.produits-catalogue,
.produits-ruche {
  background: #FFFCF7;
}
.produits-catalogue:nth-of-type(even),
.produits-ruche:nth-of-type(even) {
  background: #FFFFFF;
}
.produits-hero {
  background: linear-gradient(180deg, #FFFCF7 0%, #FFFCF7 100%);
}
.produits-page {
  background: #FFFCF7;
}
.produit-signature__media,
.product-card,
.social-actu__carte {
  background-color: #FFFFFF;
}
.produits-categories {
  background: rgba(255,252,247,.92);
}
.produits-saisons {
  background: linear-gradient(135deg, #F5E7CF 0%, #FFF8EA 100%);
  color: var(--encre);
}
.produits-saisons h2 { color: var(--encre); }
.produits-saisons p { color: var(--encre-doux); }
.produits-saisons .eyebrow { color: var(--miel-fonce); }
.produits-saisons .btn--secondaire { border-color: var(--encre); color: var(--encre); }
.produits-saisons .btn--secondaire:hover { background: var(--encre); color: #fff; }
/* =================================================================
   MIEL QUI COULE - séparation douce avant le footer
   ================================================================= */
.section--jaune.appel {
  position: relative;
  z-index: 2;
  background: #FFFCF7;
  padding-bottom: calc(var(--section-y) + 72px);
  overflow: visible;
}
.section--jaune.appel::after {
  display: none;
}
.section--jaune.appel + .site-footer {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: clamp(3.5rem, 6vw, 5rem);
}
.section--jaune.appel .btn--primaire { background: var(--encre); }
.section--jaune.appel .btn--secondaire { background: rgba(255,255,255,.32); }
.section--jaune.appel + .site-footer {
  background: #F2C24F;
  color: var(--encre);
}
.section--jaune.appel + .site-footer .logo__bee,
.section--jaune.appel + .site-footer .logo__goutte,
.section--jaune.appel + .site-footer h4 {
  color: var(--encre);
}
.section--jaune.appel + .site-footer .logo__la,
.section--jaune.appel + .site-footer .logo__demiel,
.section--jaune.appel + .site-footer p,
.section--jaune.appel + .site-footer .footer-liens a,
.section--jaune.appel + .site-footer .footer-bas {
  color: rgba(46,42,51,.72);
}
.section--jaune.appel + .site-footer .footer-liens a:hover {
  color: var(--encre);
}
.section--jaune.appel + .site-footer .footer-bas {
  border-top-color: rgba(46,42,51,.16);
}

/* =================================================================
   SPLIT FEATURE HERO - engagement accueil
   ================================================================= */
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  background: #fff;
  margin: 0;
  overflow: hidden;
}
.split-feature__media {
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  background-image: url("images/pexels-alexasfotos-37727158.jpg");
  background-size: cover;
  background-position: center;
}
.split-feature__panel {
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(2rem, 4vw, 4.2rem);
  background: #BD6A53;
  color: #fff;
}
.split-feature__panel .eyebrow {
  color: rgba(255,255,255,.78);
  margin-bottom: 1.1rem;
}
.split-feature__panel h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}
.split-feature__bottom {
  max-width: 34rem;
  margin-top: auto;
}
.split-feature__bottom p,
.split-feature__bottom li {
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.6;
}
.split-feature__bottom ul {
  list-style: none;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.split-feature__bottom li::before {
  content: "";
  display: inline-block;
  width: .48rem;
  height: .48rem;
  margin-right: .65rem;
  border-radius: 50%;
  background: var(--miel-clair);
  vertical-align: .12em;
}
.split-feature__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
}
.split-feature__link::after { content: "→"; color: var(--miel-clair); }
.split-feature__link:hover { color: var(--miel-clair); }
.split-feature--philosophie .split-feature__media {
  background-image: url("images/165106-bee-colonies-4027054.jpg");
  background-position: center;
}
.split-feature--philosophie .split-feature__panel {
  background: #A96E49;
}
.split-feature--conviction .split-feature__media {
  background-image: url("images/pexels-ozram-34046391.jpg");
  background-position: center;
}
.split-feature--conviction .split-feature__panel {
  background: #6F6B36;
}
@media (max-width: 860px) {
  .split-feature { grid-template-columns: 1fr; min-height: auto; }
  .split-feature__media { min-height: 58vh; }
  .split-feature__panel { min-height: auto; padding: clamp(2rem, 7vw, 3rem); }
  .split-feature__panel h2 { max-width: 11ch; }
}

/* =================================================================
   ATELIER DES MIELS - catalogue interactif fidèle à la référence
   ================================================================= */
.atelier-miels {
  --atelier-creme: #F7F2EA;
  --atelier-creme-2: #FCF9F3;
  --atelier-accent: #DDA63C;
  --atelier-card-accent: #DDA63C;
  --atelier-ligne: rgba(46,42,51,.13);
  --atelier-slide-w: clamp(190px, 40vw, 280px);
  background: #fff;
  color: var(--encre);
  overflow: hidden;
}
.atelier-miels__wrap {
  max-width: 1100px;
  margin-inline: auto;
  padding: clamp(1.4rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem);
}
.atelier-miels__pad { padding-inline: clamp(1.3rem, 4vw, 2.6rem); }
.atelier-miels__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 4vw, 2.4rem);
}
.atelier-miels__title {
  font-family: var(--font-titre);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  margin: 0;
  text-transform: none;
  max-width: none;
}
.atelier-filters {
  display: flex;
  gap: .3rem;
  background: var(--atelier-creme);
  border: 1px solid var(--atelier-ligne);
  padding: .3rem;
  border-radius: 100px;
}
.atelier-filters button {
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .84rem;
  border: 0;
  cursor: pointer;
  padding: .45rem 1rem;
  border-radius: 100px;
  background: transparent;
  color: var(--encre-doux);
  transition: color .25s, background .35s;
}
.atelier-filters button[aria-pressed="true"] { background: var(--encre); color: #fff; }
.atelier-viewer { position: relative; }
.atelier-carousel {
  display: flex;
  gap: clamp(.5rem, 2vw, 1.4rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-inline: calc(50% - var(--atelier-slide-w) / 2);
  padding-block: 1.5rem;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.atelier-carousel::-webkit-scrollbar { display: none; }
.atelier-carousel.is-grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.atelier-slide {
  flex: 0 0 var(--atelier-slide-w);
  scroll-snap-align: center;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  height: clamp(300px, 42vh, 440px);
  display: grid;
  place-items: center;
  position: relative;
  will-change: transform, opacity;
  transition: opacity .35s ease;
}
.atelier-slide.is-hidden { display: none; }
.atelier-slide__glow {
  position: absolute;
  inset: 8% 6%;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: opacity .5s ease;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--atelier-card-accent) 26%, transparent), transparent 75%);
  filter: blur(8px);
}
.atelier-slide.is-active .atelier-slide__glow { opacity: 1; }
.atelier-slide img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(46,42,51,.26));
  pointer-events: none;
}
.atelier-slide__floor {
  position: absolute;
  bottom: 9%;
  left: 50%;
  width: 58%;
  height: 20px;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 50%;
  background: rgba(46,42,51,.22);
  filter: blur(11px);
  opacity: 0;
  transition: opacity .4s ease;
}
.atelier-slide.is-active .atelier-slide__floor { opacity: 1; }
.atelier-nav {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--atelier-ligne);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--encre);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -14px rgba(46,42,51,.5);
  transition: transform .2s, background .2s;
}
.atelier-nav:hover { transform: scale(1.06); background: #fff; }
.atelier-nav--prev { left: clamp(.2rem, 2vw, 1rem); }
.atelier-nav--next { right: clamp(.2rem, 2vw, 1rem); }
.atelier-info {
  text-align: center;
  max-width: 54ch;
  margin-inline: auto;
  margin-top: .4rem;
  display: block;
}
.atelier-info__cat {
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--atelier-accent);
  transition: color .4s;
  display: block;
  margin-bottom: .5rem;
}
.atelier-info__name {
  font-family: var(--font-titre);
  font-weight: 500;
  letter-spacing: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.04;
  margin: 0 0 .35rem;
  text-transform: none;
}
.atelier-info__tag {
  font-family: var(--font-titre);
  font-weight: 600;
  color: var(--atelier-accent);
  transition: color .4s;
  margin: 0 0 1rem;
}
.atelier-info__desc {
  color: var(--encre-doux);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0 auto 1.4rem;
}
.atelier-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.atelier-chip {
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .04em;
  padding: .38rem .8rem;
  border-radius: 100px;
  border: 1px solid var(--atelier-ligne);
  color: var(--encre-doux);
  background: var(--atelier-creme-2);
}
.atelier-chip--accent {
  border-color: transparent;
  color: #fff;
  background: var(--atelier-accent);
  transition: background .4s;
}
.atelier-gauges {
  display: grid;
  gap: .7rem;
  max-width: 420px;
  margin: 0 auto 1.7rem;
  text-align: left;
  padding: 0;
  border: 0;
  background: transparent;
}
.atelier-gauge {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  align-items: center;
  gap: .9rem;
}
.atelier-gauge__lab {
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .8rem;
}
.atelier-gauge__track {
  height: 7px;
  border-radius: 7px;
  background: rgba(46,42,51,.1);
  overflow: hidden;
  position: relative;
}
.atelier-gauge__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--atelier-accent), color-mix(in srgb, var(--atelier-accent) 55%, #fff));
  transition: width .8s cubic-bezier(.2,.7,.2,1), background .4s;
}
.atelier-gauge__ends {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  font-size: .66rem;
  color: var(--encre-doux);
  font-family: var(--font-titre);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: -.25rem;
}
.atelier-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  align-items: center;
}
.atelier-btn {
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .92rem;
  padding: .85rem 1.7rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .25s, box-shadow .25s, background .35s;
}
.atelier-btn--accent { background: var(--atelier-accent); color: #fff; }
.atelier-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px var(--atelier-accent);
}
.atelier-link {
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--encre);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.atelier-link::after {
  content: "→";
  color: var(--atelier-accent);
  transition: transform .25s, color .4s;
}
.atelier-link:hover::after { transform: translateX(5px); }
.atelier-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.atelier-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(46,42,51,.18);
  transition: transform .25s, background .3s;
}
.atelier-dot[aria-current="true"] { background: var(--atelier-accent); transform: scale(1.3); }
.atelier-dot.is-hidden { display: none; }
.atelier-pop > * { opacity: 0; }
.atelier-pop.run > * { animation: atelierPop .55s cubic-bezier(.2,.7,.2,1) forwards; }
.atelier-pop.run > *:nth-child(1) { animation-delay: .02s; }
.atelier-pop.run > *:nth-child(2) { animation-delay: .07s; }
.atelier-pop.run > *:nth-child(3) { animation-delay: .12s; }
.atelier-pop.run > *:nth-child(4) { animation-delay: .17s; }
.atelier-pop.run > *:nth-child(5) { animation-delay: .22s; }
.atelier-pop.run > *:nth-child(6) { animation-delay: .27s; }
.atelier-pop.run > *:nth-child(7) { animation-delay: .32s; }
@keyframes atelierPop {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .atelier-slide,
  .atelier-gauge__fill,
  .atelier-info__cat { transition: none !important; }
  .atelier-pop.run > * { animation: none !important; opacity: 1 !important; }
  .atelier-carousel { scroll-behavior: auto; }
}
@media (max-width: 720px) {
  .atelier-gauge { grid-template-columns: 5.5rem 1fr; }
}
@media (max-width: 560px) {
  .atelier-miels__head { align-items: flex-start; }
  .atelier-filters { max-width: 100%; overflow-x: auto; }
  .atelier-nav { display: none; }
}
/* Ajustement catalogue produits : rendu plus proche de la référence envoyée */
.atelier-miels {
  --atelier-slide-w: clamp(230px, 44vw, 360px);
}
.atelier-miels__wrap {
  max-width: 1220px;
}
.atelier-filters {
  gap: .25rem;
  background: #F7F2EA;
  border-color: rgba(46,42,51,.13);
  box-shadow: none;
  padding: .3rem;
}
.atelier-filters button {
  padding: .46rem 1.05rem;
  color: var(--encre-doux);
}
.atelier-filters button[aria-pressed="true"] {
  background: var(--encre);
  color: #fff;
}
.atelier-carousel {
  gap: clamp(.4rem, 1.6vw, 1rem);
  padding-block: .4rem 1.1rem;
}
.atelier-slide {
  height: clamp(360px, 54vh, 560px);
  overflow: visible;
}
.atelier-slide img {
  max-width: 118%;
  max-height: 118%;
  transform: scale(1.12);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 26px rgba(46,42,51,.18));
}
.atelier-slide.is-active img {
  transform: scale(1.24);
  filter: drop-shadow(0 34px 34px rgba(46,42,51,.2));
}
.atelier-slide__glow {
  inset: 5% 0;
  filter: blur(14px);
}
.atelier-slide__floor {
  bottom: 5%;
  width: 64%;
  opacity: .18;
}
.atelier-slide.is-active .atelier-slide__floor {
  opacity: .5;
}
@media (max-width: 720px) {
  .atelier-miels { --atelier-slide-w: clamp(210px, 70vw, 320px); }
  .atelier-slide { height: clamp(330px, 52vh, 470px); }
}

/* Images détourées : suppression du carré et de l'ombre forte */
.atelier-slide__glow {
  display: none;
}
.atelier-slide__floor {
  display: none;
}
.atelier-slide img,
.atelier-slide.is-active img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 18px rgba(46,42,51,.10));
}
.atelier-slide.is-active img {
  filter: drop-shadow(0 22px 22px rgba(46,42,51,.12));
}

/* Photo dédiée page La Miellerie - Notre histoire */
.visuel-photo--apiculteurs {
  background-image: url("images/165106-bee-colonies-4027054.jpg");
  background-size: cover;
  background-position: 62% center;
}

/* Grands blocs image/texte : titre plus fort et placé au-dessus du texte */
.split-feature__panel {
  justify-content: flex-end;
  gap: clamp(1.8rem, 4vw, 3.2rem);
}
.split-feature__panel h2 {
  font-weight: 800;
  max-width: 11.5ch;
}
.split-feature__bottom {
  margin-top: 0;
}
@media (min-width: 861px) {
  .split-feature__panel {
    padding-top: clamp(3rem, 5vw, 5rem);
    padding-bottom: clamp(3.6rem, 6vw, 5.6rem);
  }
}

/* Réorganisation harmonieuse des grands panneaux texte */
.split-feature__panel {
  justify-content: flex-start;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.split-feature__top {
  margin-top: clamp(6rem, 18vh, 12rem);
}
.split-feature__panel h2 {
  max-width: 10.8ch;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.02;
  font-weight: 800;
}
.split-feature__bottom {
  max-width: 35rem;
  margin-top: 0;
}
.split-feature__bottom p,
.split-feature__bottom li {
  font-weight: 500;
}
@media (min-width: 861px) {
  .split-feature__panel {
    padding: clamp(2.6rem, 4vw, 4.4rem) clamp(3rem, 5vw, 5rem);
  }
}
@media (max-width: 860px) {
  .split-feature__top {
    margin-top: 0;
  }
  .split-feature__panel h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }
}

/* Hero home vidéo contrôlée par le scroll */
.hero--scroll-video {
  min-height: 220vh;
  min-height: 220svh;
  display: block;
  background: #1f1b22;
  overflow: visible;
}
.hero-scroll__sticky {
  position: sticky;
  top: 74px;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-scroll__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  transform: scale(calc(1.04 + (var(--hero-video-progress, 0) * .05)));
}
.hero-scroll__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(31,27,34,.76) 0%, rgba(31,27,34,.46) 42%, rgba(31,27,34,.12) 100%),
    linear-gradient(180deg, rgba(31,27,34,.1) 0%, rgba(31,27,34,.18) 100%);
}
.hero-scroll__content {
  position: relative;
  z-index: 1;
}
.hero--scroll-video .hero__inner {
  max-width: 34rem;
  margin-inline: 0;
  padding-block: clamp(6rem, 14vw, 9rem);
  color: #fff;
}
.hero--scroll-video .eyebrow { color: var(--miel-clair); }
.hero--scroll-video h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.2vw, 4.7rem);
  font-weight: 600;
  line-height: 1.06;
}
.hero--scroll-video .hero__sous { color: rgba(255,255,255,.92); }
.hero-scroll__hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  width: 1.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: calc(1 - var(--hero-video-progress, 0));
}
.hero-scroll__hint span {
  position: absolute;
  left: 50%;
  top: .55rem;
  width: .28rem;
  height: .28rem;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: heroScrollHint 1.4s ease-in-out infinite;
}
@keyframes heroScrollHint {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, .85rem); opacity: 0; }
}
@media (max-width: 760px) {
  .hero--scroll-video {
    min-height: 185vh;
    min-height: 185svh;
  }
  .hero-scroll__sticky {
    top: 64px;
    min-height: calc(100vh - 64px);
    min-height: calc(100svh - 64px);
  }
  .hero-scroll__overlay {
    background: linear-gradient(180deg, rgba(31,27,34,.68), rgba(31,27,34,.38));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero--scroll-video { min-height: calc(100vh - 74px); min-height: calc(100svh - 74px); }
  .hero-scroll__sticky { position: relative; top: 0; }
  .hero-scroll__video { transform: none; }
  .hero-scroll__hint { display: none; }
}

/* Navigation flottante avec fond flouté */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  padding: clamp(.55rem, 1.4vw, .9rem) clamp(.65rem, 1.6vw, 1.1rem) 0;
  pointer-events: none;
}
.site-header .nav {
  pointer-events: auto;
  width: min(1360px, calc(100vw - clamp(1rem, 3vw, 2rem)));
  max-width: 1360px;
  min-height: 66px;
  margin-inline: auto;
  padding: .55rem .7rem .55rem clamp(.85rem, 1.8vw, 1.35rem);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,252,247,.72);
  box-shadow: 0 18px 45px rgba(46,42,51,.12);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}
.site-header .logo__bee,
.site-header .logo__goutte { color: var(--encre); }
.site-header .nav-liens a {
  font-weight: 600;
}
.site-header .nav-contact {
  min-height: 44px;
  border-color: rgba(255,255,255,.42);
  box-shadow: 0 12px 24px rgba(191,126,30,.18);
}
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .site-header .nav { background: rgba(255,252,247,.94); }
}
@media (max-width: 860px) {
  .site-header {
    padding: .55rem .65rem 0;
  }
  .site-header .nav {
    width: calc(100vw - 1.3rem);
    min-height: 62px;
    border-radius: 28px;
    padding: .55rem .75rem;
  }
  .site-header .nav-liens {
    top: calc(100% + .6rem);
    left: .65rem;
    right: .65rem;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 24px;
    background: rgba(255,252,247,.94);
    box-shadow: 0 20px 38px rgba(46,42,51,.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

/* Header sans bandeau visible autour de la navigation flottante */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent !important;
  border: 0 !important;
  padding-top: clamp(.65rem, 1.2vw, 1rem);
}
body {
  padding-top: 0;
}
.site-header + main {
  margin-top: 0;
}
.site-header .nav {
  background: rgba(255,252,247,.62);
}
@media (max-width: 860px) {
  .site-header {
    padding-top: .55rem;
  }
}

/* Hero accueil plein écran sous navigation flottante */
.hero--accueil {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero--accueil .hero__inner {
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: clamp(5rem, 10vh, 8rem);
}
.hero--accueil + .section {
  margin-top: 0;
}
@media (max-width: 760px) {
  .hero--accueil {
    min-height: 100vh;
    min-height: 100svh;
  }
}

/* Section visite moderne - Où nous trouver */
.visit-modern {
  background: #FFFCF7;
  padding-block: clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}
.visit-modern__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.visit-modern__content h2 {
  max-width: 11ch;
  margin: .55rem 0 1.2rem;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .95;
  letter-spacing: 0;
}
.visit-modern__lead {
  max-width: 39rem;
  color: var(--encre-doux);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}
.visit-modern__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: clamp(1.8rem, 3vw, 2.4rem);
}
.visit-modern__cards article {
  min-height: 9.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .65rem;
  padding: 1.05rem;
  border: 1px solid rgba(46,42,51,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(46,42,51,.06);
}
.visit-modern__cards span {
  color: var(--miel-fonce);
  font-family: var(--font-titre);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.visit-modern__cards strong {
  color: var(--encre);
  font-family: var(--font-titre);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.2;
}
.visit-modern__cards p {
  margin: 0;
  color: var(--encre-doux);
  font-size: .95rem;
  line-height: 1.45;
}
.visit-modern__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: clamp(1.8rem, 3vw, 2.5rem);
}
.visit-modern__map {
  position: relative;
  min-height: clamp(520px, 68vh, 720px);
  border-radius: 8px;
  overflow: hidden;
  background: #EDE5D8;
  box-shadow: 0 30px 70px rgba(46,42,51,.13);
}
.visit-modern__map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: block;
  filter: saturate(.88) contrast(.96);
}
.visit-modern__badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  width: min(22rem, calc(100% - 2.2rem));
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  background: rgba(255,252,247,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(46,42,51,.12);
}
.visit-modern__badge span {
  display: block;
  color: var(--miel-fonce);
  font-family: var(--font-titre);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.visit-modern__badge strong {
  display: block;
  margin-top: .28rem;
  color: var(--encre);
  font-family: var(--font-titre);
  font-size: 1.2rem;
}
@media (max-width: 980px) {
  .visit-modern__grid {
    grid-template-columns: 1fr;
  }
  .visit-modern__content h2 {
    max-width: 12ch;
  }
  .visit-modern__map {
    min-height: 430px;
  }
}
@media (max-width: 620px) {
  .visit-modern__cards {
    grid-template-columns: 1fr;
  }
  .visit-modern__content h2 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }
  .visit-modern__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Où nous trouver : infos sobres + carte en bandeau */
.visit-band {
  background: #FFFCF7;
  padding: clamp(5rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}
.visit-band__intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.visit-band__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.visit-band__intro h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .93;
  letter-spacing: 0;
}
.visit-band__intro p {
  margin: 0 0 .35rem;
  color: var(--encre-doux);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}
.visit-band__infos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid rgba(46,42,51,.09);
  background: rgba(46,42,51,.09);
}
.visit-band__infos article {
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: #fff;
}
.visit-band__infos span {
  color: var(--miel-fonce);
  font-family: var(--font-titre);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.visit-band__infos strong {
  color: var(--encre);
  font-family: var(--font-titre);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.16;
}
.visit-band__infos p {
  margin: auto 0 0;
  color: var(--encre-doux);
  font-size: .96rem;
  line-height: 1.48;
}
.visit-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}
.visit-band__map {
  width: 100%;
  height: clamp(360px, 48vw, 560px);
  margin-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(46,42,51,.08);
  background: #EDE5D8;
}
.visit-band__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(.98);
}
@media (max-width: 980px) {
  .visit-band__intro {
    grid-template-columns: 1fr;
  }
  .visit-band__intro h2 {
    max-width: 12ch;
  }
  .visit-band__infos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .visit-band__intro h2 {
    font-size: clamp(2.55rem, 15vw, 4.3rem);
  }
  .visit-band__infos {
    grid-template-columns: 1fr;
  }
  .visit-band__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .visit-band__map {
    height: 360px;
  }
}

/* Images produits accueil : remplacer les aplats par des pots */
.carte__media--photo-montagne {
  background-image: url("images/les miels/Gemini_Generated_Image_6p1k1y6p1k1y6p1k.png");
}
.carte__media--photo-toutes-fleurs {
  background-image: url("images/les miels/Gemini_Generated_Image_11c53l11c53l11c5.png");
}

/* Accueil : fond crème pleine largeur sur la section histoire */
.hero--accueil + .section {
  background: #F4E6D1 !important;
}

/* Grands blocs image/couleur : plein écran propre et texte épuré */
.section:has(+ .split-feature) .sep-drip {
  display: none !important;
}
.split-feature,
.split-feature__media,
.split-feature__panel {
  min-height: 100vh !important;
  min-height: 100svh !important;
}
.split-feature {
  margin: 0 !important;
  border: 0 !important;
}
.split-feature__panel {
  justify-content: space-between !important;
  gap: 2rem !important;
  padding: clamp(6.5rem, 11vh, 8rem) clamp(3rem, 5vw, 5rem) clamp(4rem, 8vh, 6rem) !important;
}
.split-feature__top {
  margin-top: 0 !important;
}
.split-feature__panel h2 {
  display: none !important;
}
.split-feature__panel .eyebrow {
  margin: 0 !important;
  color: rgba(255,255,255,.82) !important;
}
.split-feature__panel .eyebrow::after {
  display: none !important;
}
.split-feature__bottom {
  width: min(100%, 34rem) !important;
  max-width: 34rem !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
}
.split-feature__bottom p,
.split-feature__bottom li {
  color: rgba(255,255,255,.9) !important;
  font-size: clamp(1.08rem, 1.28vw, 1.22rem) !important;
  line-height: 1.65 !important;
  font-weight: 600 !important;
}
.split-feature__bottom ul,
.split-feature__link {
  display: none !important;
}
@media (max-width: 860px) {
  .split-feature,
  .split-feature__media,
  .split-feature__panel {
    min-height: auto !important;
  }
  .split-feature__media {
    min-height: 58vh !important;
  }
  .split-feature__panel {
    min-height: 52vh !important;
    padding: 2.4rem 1.4rem 2.8rem !important;
  }
}

/* Contact : carte en bandeau pleine largeur */
.contact-map-band {
  width: 100%;
  height: clamp(22rem, 48vh, 34rem);
  margin: 0;
  overflow: hidden;
  background: #f4e6d1;
}
.contact-map-band iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(.98);
}
.contact-map-band + .section,
.contact-map-band + .site-footer {
  margin-top: 0;
}
@media (max-width: 760px) {
  .contact-map-band {
    height: 24rem;
  }
}

/* Hero produits aligné avec les autres pages */
.produits-page .hero--page.hero--produits {
  background: linear-gradient(150deg, #F3ECDD 0%, #EFE8F2 100%);
  border-bottom: 1px solid var(--ligne);
}
.produits-page .hero--page.hero--produits .hero__inner {
  max-width: 42rem;
  padding-block: clamp(4.6rem, 9vw, 7rem);
}
.produits-page .hero--page.hero--produits .titre-h1 {
  max-width: 12ch;
}
.produits-page .produits-categories {
  margin-top: clamp(1rem, 3vw, 2rem);
}

/* Grands blocs : retour aux proportions d'origine + vague douce */
.section:has(+ .split-feature) .sep-drip {
  display: block !important;
}
.split-feature,
.split-feature__media,
.split-feature__panel {
  min-height: calc(100vh - 74px) !important;
  min-height: calc(100svh - 74px) !important;
}
.split-feature__panel {
  background: #e7c6ff !important;
  color: var(--encre) !important;
  padding: clamp(3.2rem, 5vw, 5.5rem) clamp(3rem, 5vw, 5rem) !important;
}
.split-feature__panel .eyebrow {
  color: var(--miel-fonce) !important;
}
.split-feature__bottom p,
.split-feature__bottom li {
  color: var(--encre) !important;
}
.split-feature__media {
  min-height: calc(100vh - 74px) !important;
  min-height: calc(100svh - 74px) !important;
}
@media (max-width: 860px) {
  .split-feature,
  .split-feature__media,
  .split-feature__panel {
    min-height: auto !important;
  }
  .split-feature__media {
    min-height: 58vh !important;
  }
  .split-feature__panel {
    min-height: auto !important;
  }
}

/* Suppression globale des motifs hexagonaux décoratifs */
.deco-hex {
  display: none !important;
}

/* Motif nid d'abeille discret dans les bandeaux de page */
.hero--page {
  position: relative;
  overflow: hidden;
}
.hero--page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='42' viewBox='0 0 72 42'%3E%3Cg fill='none' stroke='%232E2A33' stroke-width='1'%3E%3Cpath d='M18 1 35 11v20L18 41 1 31V11Z'/%3E%3Cpath d='M54 1 71 11v20L54 41 37 31V11Z'/%3E%3Cpath d='M36-20 53-10v20L36 20 19 10v-20Z'/%3E%3Cpath d='M36 22 53 32v20L36 62 19 52V32Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 42px;
  background-position: center;
}
.hero--page .contenu,
.hero--page .sep-drip {
  position: relative;
  z-index: 1;
}

/* Correction motif : vrai nid d'abeille régulier et discret */
.hero--page::before {
  opacity: .075 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='72' viewBox='0 0 84 72'%3E%3Cg fill='none' stroke='%232E2A33' stroke-width='1'%3E%3Cpath d='M21 1 41 12.5v23L21 47 1 35.5v-23Z'/%3E%3Cpath d='M63 1 83 12.5v23L63 47 43 35.5v-23Z'/%3E%3Cpath d='M42 36 62 47.5v23L42 82 22 70.5v-23Z'/%3E%3Cpath d='M0 36 20 47.5v23L0 82-20 70.5v-23Z'/%3E%3Cpath d='M84 36 104 47.5v23L84 82 64 70.5v-23Z'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: 84px 72px !important;
  background-position: top left !important;
}

/* Bandeaux de page : fond blanc propre sous le motif */
.hero--page,
.produits-page .hero--page.hero--produits {
  background: #FFFCF7 !important;
}
.hero--page::before {
  opacity: .045 !important;
}

/* Bandeaux de page : brun chaud + vague simple animée */
.hero--page,
.produits-page .hero--page.hero--produits {
  background: #A96E49 !important;
  color: #fff !important;
  border-bottom: 0 !important;
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}
.hero--page::before {
  opacity: .08 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='72' viewBox='0 0 84 72'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='1'%3E%3Cpath d='M21 1 41 12.5v23L21 47 1 35.5v-23Z'/%3E%3Cpath d='M63 1 83 12.5v23L63 47 43 35.5v-23Z'/%3E%3Cpath d='M42 36 62 47.5v23L42 82 22 70.5v-23Z'/%3E%3Cpath d='M0 36 20 47.5v23L0 82-20 70.5v-23Z'/%3E%3Cpath d='M84 36 104 47.5v23L84 82 64 70.5v-23Z'/%3E%3C/g%3E%3C/svg%3E") !important;
}
.hero--page .eyebrow,
.hero--page .titre-h1,
.hero--page .hero__sous,
.produits-page .hero--page.hero--produits .titre-h1,
.produits-page .hero--page.hero--produits .hero__sous {
  color: #fff !important;
}
.hero--page .eyebrow {
  color: rgba(255,255,255,.78) !important;
}
.hero--page .sep-drip {
  display: block !important;
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(38px, 5vw, 70px);
  transform: none !important;
  overflow: hidden;
  z-index: 2;
}
.hero--page .sep-drip svg {
  display: none !important;
}
.hero--page .sep-drip::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 180%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFCF7' d='M0 46 C180 22 310 72 505 46 C700 20 820 70 1015 43 C1210 16 1300 48 1440 20 V90 H0 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 50% 100%;
  animation: pageWaveMove 9s ease-in-out infinite alternate;
}
@keyframes pageWaveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-7%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--page .sep-drip::before {
    animation: none;
  }
}

/* Correction vague : une seule forme continue, sans raccord visible */
.hero--page .sep-drip::before {
  width: 110% !important;
  left: -5% !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  animation: pageWaveFloat 7s ease-in-out infinite alternate !important;
}
@keyframes pageWaveFloat {
  from { transform: translateX(-1.2%) translateY(0); }
  to { transform: translateX(1.2%) translateY(2px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--page .sep-drip::before {
    animation: none !important;
  }
}

/* Bandeaux bruns : sans motif, vague plus marquée */
.hero--page::before {
  display: none !important;
}
.hero--page .sep-drip {
  height: clamp(52px, 6vw, 88px) !important;
}
.hero--page .sep-drip::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFCF7' d='M0 42 C160 8 300 92 505 48 C705 5 830 96 1035 46 C1210 4 1315 58 1440 18 V110 H0 Z'/%3E%3C/svg%3E") !important;
}

/* Vague plus vivante */
.hero--page .sep-drip::before {
  animation: pageWaveLive 3.6s ease-in-out infinite alternate !important;
}
@keyframes pageWaveLive {
  from { transform: translateX(-2.4%) translateY(0) scaleY(1); }
  to { transform: translateX(2.4%) translateY(4px) scaleY(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--page .sep-drip::before {
    animation: none !important;
  }
}

/* Bandeaux de page : hauteur uniforme et titres sur deux lignes max */
.hero--page,
.produits-page .hero--page.hero--produits {
  min-height: clamp(25rem, 42vh, 31rem) !important;
  display: grid !important;
  align-items: center !important;
  padding-top: clamp(5.2rem, 9vh, 6.5rem) !important;
  padding-bottom: clamp(4.6rem, 8vh, 6.2rem) !important;
}
.hero--page .hero__inner,
.produits-page .hero--page.hero--produits .hero__inner {
  max-width: min(58rem, 70vw) !important;
  padding-block: 0 !important;
}
.hero--page .titre-h1,
.produits-page .hero--page.hero--produits .titre-h1 {
  max-width: 18ch !important;
  font-size: clamp(2.5rem, 4.4vw, 4.15rem) !important;
  line-height: 1.08 !important;
}
.hero--page .hero__sous,
.produits-page .hero--page.hero--produits .hero__sous {
  max-width: 42rem !important;
}
@media (max-width: 760px) {
  .hero--page,
  .produits-page .hero--page.hero--produits {
    min-height: clamp(22rem, 48vh, 28rem) !important;
    padding-top: 5.6rem !important;
    padding-bottom: 4.8rem !important;
  }
  .hero--page .hero__inner,
  .produits-page .hero--page.hero--produits .hero__inner {
    max-width: 100% !important;
  }
  .hero--page .titre-h1,
  .produits-page .hero--page.hero--produits .titre-h1 {
    max-width: 12.5ch !important;
    font-size: clamp(2.25rem, 10vw, 3.2rem) !important;
  }
}

/* Couleur lavande limitée au bloc de la page d'accueil */
.split-feature--engagement .split-feature__panel {
  background: #e7c6ff !important;
  color: var(--encre) !important;
}
.split-feature--engagement .split-feature__panel .eyebrow {
  color: var(--miel-fonce) !important;
}
.split-feature--engagement .split-feature__bottom p,
.split-feature--engagement .split-feature__bottom li {
  color: var(--encre) !important;
}
.split-feature--philosophie .split-feature__panel {
  background: #A96E49 !important;
  color: #fff !important;
}
.split-feature--conviction .split-feature__panel {
  background: #6F6B36 !important;
  color: #fff !important;
}
.split-feature--philosophie .split-feature__panel .eyebrow,
.split-feature--conviction .split-feature__panel .eyebrow {
  color: rgba(255,255,255,.78) !important;
}
.split-feature--philosophie .split-feature__bottom p,
.split-feature--philosophie .split-feature__bottom li,
.split-feature--conviction .split-feature__bottom p,
.split-feature--conviction .split-feature__bottom li {
  color: rgba(255,255,255,.9) !important;
}

/* Vague : bord supérieur blanc, sans voile gris */
.section:has(+ .split-feature) .sep-drip {
  background: #fff !important;
}
.section:has(+ .split-feature) .sep-drip svg path {
  fill: #fff !important;
}
.hero--page .sep-drip::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFFFF' d='M0 42 C160 8 300 92 505 48 C705 5 830 96 1035 46 C1210 4 1315 58 1440 18 V110 H0 Z'/%3E%3C/svg%3E") !important;
}

/* La Miellerie : remplacer le visuel philosophie par la ruche */
.split-feature--philosophie .split-feature__media {
  background-image: url("images/165106-bee-colonies-4027054.jpg") !important;
  background-position: center !important;
}

/* Contact : coordonnées modernisées */
.contact-modern-section {
  background: #FFFCF7;
}
.contact-modern {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-modern__form,
.contact-modern__infos {
  min-width: 0;
}
.contact-modern__form .titre-section,
.contact-modern__infos .titre-section {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1.6rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-height: 9.5rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(46,42,51,.1);
  box-shadow: 0 18px 38px rgba(46,42,51,.06);
  color: var(--encre);
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(191,126,30,.28);
  box-shadow: 0 24px 48px rgba(46,42,51,.09);
}
.contact-card--wide {
  grid-column: 1 / -1;
}
.contact-card__label {
  color: var(--miel-fonce);
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-card strong {
  font-family: var(--font-titre);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.15;
}
.contact-card small {
  color: var(--encre-doux);
  font-size: 1rem;
  line-height: 1.45;
}
.contact-social {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #F4E6D1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.contact-social h3 {
  margin: 0 0 .25rem;
  font-size: 1.25rem;
}
.contact-social p {
  margin: 0;
  color: var(--encre-doux);
}
.contact-social__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .contact-modern {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-social {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Contact : design formulaire + image, inspiration premium */
.contact-reservation-section {
  background: #fff;
  padding-top: clamp(4rem, 8vw, 7rem);
}
.contact-reservation__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}
.contact-reservation__head h2 {
  margin: 0;
  font-family: var(--font-titre);
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: .9;
  letter-spacing: 0;
}
.contact-reservation__head p {
  margin: .8rem 0 0;
  color: var(--encre-doux);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}
.contact-reservation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, .8fr);
  gap: 1.1rem;
  align-items: stretch;
}
.contact-reservation__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 1rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border-radius: 8px;
  background: #FBFAF8;
  border: 1px solid rgba(46,42,51,.06);
}
.contact-reservation__form .champ {
  margin: 0;
}
.contact-reservation__form label {
  font-size: .78rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--encre);
  margin-bottom: .45rem;
}
.contact-reservation__form input,
.contact-reservation__form select,
.contact-reservation__form textarea {
  border: 0;
  background: #F1F0EE;
  min-height: 3.15rem;
  border-radius: 6px;
  font-size: .98rem;
  box-shadow: none;
}
.contact-reservation__form textarea {
  min-height: 8.8rem;
  resize: vertical;
}
.contact-reservation__form input:focus,
.contact-reservation__form select:focus,
.contact-reservation__form textarea:focus {
  outline: 2px solid rgba(191,126,30,.22);
  background: #fff;
}
.champ--full,
.contact-reservation__submit {
  grid-column: 1 / -1;
}
.contact-reservation__submit {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: .35rem;
}
.contact-reservation__round {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--encre);
  color: #fff;
  font-weight: 800;
}
.contact-reservation__image {
  position: relative;
  min-height: 28rem;
  border-radius: 8px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(46,42,51,.05), rgba(46,42,51,.16)), url("images/165106-bee-colonies-4027054.jpg");
  background-size: cover;
  background-position: center;
}
.contact-reservation__image span {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.75);
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .9rem;
}
.contact-quickbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 3rem);
  margin-top: clamp(2.6rem, 6vw, 4.4rem);
  text-align: center;
}
.contact-quick {
  color: var(--encre);
  display: grid;
  justify-items: center;
  gap: .35rem;
}
.contact-quick__icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #FAF8F5;
  box-shadow: 0 12px 28px rgba(46,42,51,.06);
  font-size: 1.15rem;
}
.contact-quick strong {
  font-family: var(--font-titre);
  font-size: 1.08rem;
  margin-top: .55rem;
}
.contact-quick small {
  color: var(--encre-doux);
  line-height: 1.45;
  font-size: .98rem;
}
@media (max-width: 980px) {
  .contact-reservation__head,
  .contact-reservation__grid {
    grid-template-columns: 1fr;
  }
  .contact-reservation__image {
    min-height: 22rem;
  }
}
@media (max-width: 680px) {
  .contact-reservation__form,
  .contact-quickbar {
    grid-template-columns: 1fr;
  }
  .contact-reservation__head h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }
}

/* Contact : retour à l'unité des sections texte + visuel */
.contact-unified-section {
  background: #fff;
}
.contact-unified {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-unified__main,
.contact-unified__side {
  padding-top: clamp(.5rem, 1vw, 1rem);
}
.contact-unified__main .titre-section {
  max-width: 11.5ch;
  margin-bottom: 1.5rem;
}
.contact-unified__main > p {
  max-width: 38rem;
  color: var(--encre-doux);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-unified__form {
  max-width: 40rem;
}
.contact-unified__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-unified__photo {
  height: clamp(20rem, 34vw, 30rem);
  border-radius: 8px;
  background-image: url("images/165106-bee-colonies-4027054.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 55px rgba(46,42,51,.12);
}
.contact-unified__details {
  display: grid;
  gap: 1.05rem;
  margin-top: 1.35rem;
}
.contact-unified__details div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid rgba(46,42,51,.1);
}
.contact-unified__details strong {
  color: var(--miel-fonce);
  font-family: var(--font-titre);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-unified__details span,
.contact-unified__details a {
  color: var(--encre);
  font-size: 1.05rem;
  line-height: 1.45;
}
.contact-unified__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}
@media (max-width: 920px) {
  .contact-unified {
    grid-template-columns: 1fr;
  }
  .contact-unified__main .titre-section,
  .contact-unified__form {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .contact-unified__fields,
  .contact-unified__details div {
    grid-template-columns: 1fr;
  }
  .contact-unified__details div {
    gap: .35rem;
  }
}

/* Logo image fourni */
.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(7rem, 10vw, 9.2rem);
  height: 3.4rem;
  flex-shrink: 0;
}
.logo__bee,
.logo__txt {
  display: none !important;
}
.logo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}
.site-footer .logo {
  width: clamp(8.5rem, 14vw, 12rem);
  height: 5rem;
}
.site-header .logo {
  width: clamp(6.7rem, 8vw, 8.4rem);
  height: 3.05rem;
}
@media (max-width: 760px) {
  .site-header .logo {
    width: 6.6rem;
    height: 2.9rem;
  }
}

/* Page produits : sélecteur fixe dans le flux et carousel sous contrôle */
.produits-page .produits-categories {
  position: relative !important;
  top: auto !important;
  z-index: 12 !important;
  margin-top: 0 !important;
  margin-bottom: clamp(2.2rem, 4vw, 3.5rem) !important;
}
.produits-page .atelier-miels {
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
}
.produits-page .atelier-miels__wrap {
  padding-top: clamp(2rem, 4vw, 3.25rem) !important;
}
.produits-page .atelier-viewer {
  z-index: 1 !important;
  overflow: hidden !important;
  padding-top: clamp(1.4rem, 3vw, 2.4rem) !important;
}
.produits-page .atelier-carousel {
  padding-top: clamp(2.2rem, 5vw, 4rem) !important;
}
.produits-page .atelier-slide {
  z-index: 1 !important;
}
.produits-page .atelier-slide img,
.produits-page .atelier-slide.is-active img {
  position: relative !important;
  z-index: 1 !important;
  transform-origin: center center !important;
}

/* Produits de la ruche : images plus grandes, sans ombre arrière */
#ruche .product-card__media {
  background: #fff !important;
  min-height: clamp(18rem, 28vw, 24rem) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}
#ruche .product-card__media img {
  width: min(92%, 19rem) !important;
  height: auto !important;
  max-height: 92% !important;
  object-fit: contain !important;
  filter: none !important;
  box-shadow: none !important;
  transform: scale(1.18) !important;
}
#ruche .product-card,
#ruche .product-card:hover {
  box-shadow: none !important;
}
#ruche .product-card__symbol {
  display: none !important;
}

/* Home : contact accès minimaliste */
.home-visit-section {
  background: #FFFCF7;
}
.home-visit {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.home-visit__infos {
  max-width: 36rem;
}
.home-visit__infos .titre-section {
  max-width: 10.5ch;
  margin-bottom: 1.4rem;
}
.home-visit__infos > p {
  color: var(--encre-doux);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.home-visit__meta {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home-visit__meta div {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(46,42,51,.11);
}
.home-visit__meta strong {
  color: var(--miel-fonce);
  font-family: var(--font-titre);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-visit__meta span,
.home-visit__meta a {
  color: var(--encre);
  font-size: 1.05rem;
  line-height: 1.45;
}
.home-visit__map {
  height: clamp(20rem, 34vw, 30rem);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(46,42,51,.1);
  background: #F4E6D1;
}
.home-visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 920px) {
  .home-visit {
    grid-template-columns: 1fr;
  }
  .home-visit__infos {
    max-width: 100%;
  }
}
@media (max-width: 620px) {
  .home-visit__meta div {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
}

/* Home : harmonisation du titre Nos produits avec le trait doré */
.section--jaune .centre .eyebrow {
  color: var(--miel) !important;
}


/* Abeille interactive qui suit le curseur */
.bee-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(3.1rem, 4.8vw, 4.75rem);
  height: clamp(3.1rem, 4.8vw, 4.75rem);
  margin: -2.35rem 0 0 -2.35rem;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-200px, -200px, 0);
  transition: opacity .35s ease;
  z-index: 120;
  will-change: transform;
}
.bee-cursor.is-active {
  opacity: .94;
}
.bee-cursor__orient,
.bee-cursor__bob,
.bee-cursor__stack {
  width: 100%;
  height: 100%;
}
.bee-cursor__orient {
  transition: transform .18s ease-out;
}
.bee-cursor__bob {
  animation: beeCursorBob .8s ease-in-out infinite;
}
.bee-cursor__stack {
  position: relative;
  filter: drop-shadow(0 8px 7px rgba(35, 27, 19, .2));
}
.bee-cursor__stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bee-cursor__wings {
  transform-origin: 59.3% 32%;
  animation: beeCursorFlap .06s ease-in-out infinite alternate;
}
@keyframes beeCursorBob {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}
@keyframes beeCursorFlap {
  from { transform: rotate(-7deg) scaleY(1); }
  to { transform: rotate(13deg) scaleY(.92); }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .bee-cursor { display: none !important; }
}

/* Navigation : logo fourni 3.png */
.site-header .logo::before {
  background-image: none !important;
}

/* Mobile : supprimer le bandeau fantôme sous la navigation */
@media (max-width: 860px) {
  .site-header {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .site-header .nav-liens {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-width: 0 !important;
    box-shadow: none !important;
    opacity: 0;
  }
  .site-header .nav-toggle:checked ~ .nav-liens {
    max-height: 460px !important;
    padding-top: .4rem !important;
    padding-bottom: 1.2rem !important;
    border-width: 1px !important;
    box-shadow: 0 18px 45px rgba(35, 27, 19, .12) !important;
    opacity: 1;
  }
}


/* Identité fictive : ne plus afficher le logo image réel */
.logo::before {
  display: none !important;
}
.logo__bee {
  display: block !important;
}
.logo__txt {
  display: grid !important;
}
.site-header .logo,
.site-footer .logo {
  width: auto !important;
  height: auto !important;
}
.logo__goutte {
  text-transform: none;
}


/* Identité fictive : visuels neutres sans étiquettes reconnaissables */
.visuel-photo--boutique {
  background-image: url("images/165106-bee-colonies-4027054.jpg") !important;
}
.carte__media--photo-lavande,
.carte__media--photo-montagne,
.carte__media--photo-toutes-fleurs,
.carte__media--photo-garrigue,
.carte__media--photo-acacia-cremeux,
.carte__media--photo-acacia {
  background-size: cover !important;
}
.carte__media--photo-lavande { background-image: url("images/pexels-alexasfotos-37727158.jpg") !important; }
.carte__media--photo-montagne { background-image: url("images/165106-bee-colonies-4027054.jpg") !important; }
.carte__media--photo-toutes-fleurs { background-image: url("images/pexels-triemli-28462151.jpg") !important; }
#ruche .product-card__media img {
  opacity: 0 !important;
}
#ruche .product-card:nth-child(1) .product-card__media { background: url("images/pexels-marina-solis-66351996-10989224.jpg") center/cover no-repeat !important; }
#ruche .product-card:nth-child(2) .product-card__media { background: url("images/pexels-o-darny-4081002.jpg") center/cover no-repeat !important; }
#ruche .product-card:nth-child(3) .product-card__media { background: url("images/pexels-ozram-34046391.jpg") center/cover no-repeat !important; }
#ruche .product-card:nth-child(4) .product-card__media { background: url("images/pexels-triemli-28462151.jpg") center/cover no-repeat !important; }


