@charset "UTF-8";
@font-face {
  font-family: "Cormorant Garamond";
  src: local("Cormorant Garamond"), url("../fonts/CormorantGaramond-VariableFont_wght.woff2") format("woff2"), url("../fonts/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: local("Cormorant Garamond Italic"), url("../fonts/CormorantGaramond-Italic-VariableFont_wght.woff2") format("woff2"), url("../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "IM Fell DW Pica";
  src: local("IM Fell DW Pica"), url("../fonts/IMFellDWPica-Regular.woff2") format("woff2"), url("../fonts/IMFellDWPica-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IM Fell DW Pica";
  src: local("IM Fell DW Pica Italic"), url("../fonts/IMFellDWPica-Italic.woff2") format("woff2"), url("../fonts/IMFellDWPica-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
/* vars.scss */
/* ----------- Général ----------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
}

/* ----------- Header Desktop ----------- */
.header-desktop {
  height: 100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
}

.header-desktop nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.header-desktop nav a {
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: black;
  padding: 0 10px;
}

.header-desktop nav img {
  height: 180px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ----------- Header Responsive ----------- */
.header-responsive {
  display: none;
  height: 100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 40px;
  justify-content: space-between;
  align-items: center;
}

.header-left img {
  height: 130px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.burger {
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: black;
}

/* ----------- Menu Burger ----------- */
#nav-menu {
  position: fixed;
  top: 100px;
  right: -100%;
  width: 50%;
  height: calc(100vh - 100px);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-top: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 98;
}

#nav-menu.show {
  right: 0;
}

#nav-menu a {
  text-decoration: none;
  font-size: 25px;
  color: black;
  padding: 10px 0px 10px 100px;
  width: 100%;
  font-family: "IM Fell DW Pica";
}

/* ----------- Responsive Rules ----------- */
@media screen and (max-width: 1023.98px) {
  .header-desktop {
    display: none;
  }
  .header-responsive {
    display: flex;
  }
  #nav-menu img {
    display: none;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  /* ----------- Menu Burger ----------- */
  #nav-menu {
    position: fixed;
    top: 100px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 100px);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 98;
  }
  #nav-menu.show {
    right: 0;
  }
  #nav-menu a {
    text-decoration: none;
    font-size: 17px;
    color: black;
    padding: 10px 0px 10px 80px;
    width: 100%;
    font-family: "IM Fell DW Pica";
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  cursor: pointer;
}

.btn-beige {
  border: #C6AD8F 1px solid;
  background: white;
  color: #C6AD8F;
  border-radius: 4px;
  height: 40px;
  width: 150px;
  font-size: 1.3rem;
  font-weight: bold;
}

.btn-bordeau {
  background: #64172B;
  color: white;
  border-radius: 4px;
  border: none;
  height: 40px;
  width: 150px;
}

h1 {
  font-family: "IM Fell DW Pica", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.75rem;
}

h2 {
  font-family: "IM Fell DW Pica", serif;
  font-style: normal;
  font-size: 2.3rem;
}

h3 {
  font-family: "IM Fell DW Pica", serif;
  font-style: normal;
  font-size: 1.6rem;
}

h4 {
  font-family: "IM Fell DW Pica", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
}

p,
li {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 1rem;
  margin: 0.3rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  p,
  li {
    font-size: 1.2rem;
    margin: 0.3rem;
  }
}
#mentions .legal-page {
  --legal-bg: #f8f4ee;
  --legal-surface: #fffdf9;
  --legal-text: #2f241c;
  --legal-muted: #6f6258;
  --legal-border: #e6d7c8;
  --legal-accent: #a97142;
  --legal-accent-dark: #7d5330;
  --legal-shadow: 0 18px 45px rgba(61, 41, 25, 0.08);
  --legal-radius: 24px;
  --legal-max: 1100px;
  background: radial-gradient(circle at top left, rgba(169, 113, 66, 0.08), transparent 28%), linear-gradient(180deg, #fbf7f2 0%, var(--legal-bg) 100%);
  color: var(--legal-text);
}
#mentions .legal-page,
#mentions .legal-page * {
  box-sizing: border-box;
}
#mentions .legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem 3rem;
}
#mentions .legal-hero::before {
  content: "";
  position: absolute;
  inset: auto -6rem -4rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(169, 113, 66, 0.08);
  filter: blur(10px);
  pointer-events: none;
}
#mentions .legal-hero__inner,
#mentions .legal-content {
  width: min(100%, var(--legal-max));
  margin: 0 auto;
}
#mentions .legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(169, 113, 66, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--legal-accent-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
#mentions .legal-eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--legal-accent);
}
#mentions .legal-hero h1 {
  margin: 0 0 1rem;
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--legal-text);
}
#mentions .legal-hero p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  color: var(--legal-muted);
}
#mentions .legal-content {
  padding: 0 1.5rem 5rem;
}
#mentions .legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 2rem;
}
#mentions .legal-summary__item {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--legal-border);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.85);
  box-shadow: 0 8px 22px rgba(61, 41, 25, 0.04);
}
#mentions .legal-summary__item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--legal-accent-dark);
  font-size: 0.95rem;
}
#mentions .legal-summary__item span {
  color: var(--legal-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
#mentions .legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}
#mentions .legal-main {
  display: grid;
  gap: 1.25rem;
}
#mentions .legal-card {
  padding: 1.75rem;
  border: 1px solid var(--legal-border);
  border-radius: var(--legal-radius);
  background: var(--legal-surface);
  box-shadow: var(--legal-shadow);
}
#mentions .legal-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--legal-text);
}
#mentions .legal-card p,
#mentions .legal-card li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--legal-muted);
}
#mentions .legal-card p + p,
#mentions .legal-card p + ul,
#mentions .legal-card ul + p,
#mentions .legal-card ul + ul,
#mentions .legal-card p + .legal-note {
  margin-top: 1rem;
}
#mentions .legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
}
#mentions .legal-card li + li {
  margin-top: 0.5rem;
}
#mentions .legal-note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--legal-accent);
  border-radius: 0 14px 14px 0;
  background: #f6eee5;
  color: var(--legal-text);
}
#mentions .legal-note strong {
  color: var(--legal-accent-dark);
}
#mentions .legal-aside {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 1rem;
}
#mentions .legal-nav,
#mentions .legal-help {
  padding: 1.4rem;
  border: 1px solid var(--legal-border);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 10px 30px rgba(61, 41, 25, 0.05);
}
#mentions .legal-nav h2,
#mentions .legal-help h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--legal-text);
}
#mentions .legal-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#mentions .legal-nav li + li {
  margin-top: 0.65rem;
}
#mentions .legal-nav a {
  color: var(--legal-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
#mentions .legal-nav a:hover,
#mentions .legal-nav a:focus-visible {
  color: var(--legal-accent-dark);
  transform: translateX(2px);
}
#mentions .legal-help p {
  margin: 0 0 1rem;
  color: var(--legal-muted);
  line-height: 1.7;
}
#mentions .legal-help a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--legal-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}
#mentions .legal-help a:hover,
#mentions .legal-help a:focus-visible {
  background: var(--legal-accent-dark);
  transform: translateY(-1px);
}
#mentions .legal-page a {
  color: var(--legal-accent-dark);
}
#mentions .legal-page a:hover,
#mentions .legal-page a:focus-visible {
  color: var(--legal-accent);
}
#mentions .mot-couleur {
  color: var(--legal-accent);
}
@media (max-width: 980px) {
  #mentions .legal-summary,
  #mentions .legal-grid {
    grid-template-columns: 1fr;
  }
  #mentions .legal-aside {
    position: static;
  }
}
@media (max-width: 640px) {
  #mentions .legal-hero {
    padding: 3.5rem 1rem 2.2rem;
  }
  #mentions .legal-content {
    padding: 0 1rem 4rem;
  }
  #mentions .legal-card,
  #mentions .legal-nav,
  #mentions .legal-help {
    padding: 1.2rem;
    border-radius: 18px;
  }
  #mentions .legal-card p,
  #mentions .legal-card li {
    line-height: 1.7;
  }
}

/* --------------- PAGE 404 ------------------ */
.page404 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding: 2rem;
  gap: 2rem;
}
.page404 > img {
  max-width: 100%;
  width: 35rem; /* ≈ 560px max */
  height: auto;
  border-radius: 0.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.page404 article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  border: 1px solid #C6AD8F;
  border-radius: 0.25rem;
  max-width: 25rem; /* ≈ 400px */
  width: 100%;
  padding: 2rem;
  gap: 1.5rem;
}
.page404 .btn-link {
  border: #C6AD8F 1px solid;
  background: white;
  color: #C6AD8F;
  border-radius: 4px;
  height: 40px;
  width: 150px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
}

/* ------------- PAGE ACCUEIL - P1 ---------- */
body.js-anim-ready #P1 [data-stagger] > h1,
body.js-anim-ready #P1 [data-stagger] > h2,
body.js-anim-ready #P1 [data-stagger] > h3,
body.js-anim-ready #P1 [data-stagger] > h4,
body.js-anim-ready #P1 [data-stagger] > p,
body.js-anim-ready #P1 [data-stagger] > li,
body.js-anim-ready #P1 [data-stagger] > a,
body.js-anim-ready #P1 [data-stagger] > .P1_separateur {
  opacity: 0;
  transform: translateY(0.9rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--stagger-index, 0) * 110ms);
}
body.js-anim-ready #P1 [data-stagger].is-visible > h1,
body.js-anim-ready #P1 [data-stagger].is-visible > h2,
body.js-anim-ready #P1 [data-stagger].is-visible > h3,
body.js-anim-ready #P1 [data-stagger].is-visible > h4,
body.js-anim-ready #P1 [data-stagger].is-visible > p,
body.js-anim-ready #P1 [data-stagger].is-visible > li,
body.js-anim-ready #P1 [data-stagger].is-visible > a,
body.js-anim-ready #P1 [data-stagger].is-visible > .P1_separateur {
  opacity: 1;
  transform: translateY(0);
}

body.js-anim-ready #P4 [data-photo-stagger] img {
  opacity: 0;
  transform: translateY(1rem) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--stagger-index, 0) * 120ms);
}
body.js-anim-ready #P4 [data-photo-stagger].is-visible img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.js-anim-ready h1.el {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

body.js-anim-ready h1.el.go {
  opacity: 1;
  transform: translateY(0);
}

#P3 img[data-parallax] {
  --parallax-shift: 0px;
  transform: translate3d(0, var(--parallax-shift), 0);
  will-change: transform;
}

#P1 figure {
  width: 100%;
  position: relative;
}
#P1 figure img {
  width: 100%;
  min-height: 30svh;
  max-height: 95svh;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 0.375rem solid #C6AD8F;
  -o-object-position: 0 60%;
     object-position: 0 60%;
}
#P1 figure figcaption {
  color: white;
  position: absolute;
  top: 25rem;
  margin: 3rem;
}
#P1 figure figcaption p {
  font-size: clamp(1.8rem, 2vw + 1rem, 3.2rem);
  font-family: "IM Fell DW Pica", serif;
}
#P1 .trois-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15rem;
  padding: 20svh;
}
#P1 .trois-card div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  flex: 1 1 18rem;
  max-width: 18rem;
}
#P1 .trois-card div img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
#P1 .trois-card div .btn-link {
  background: #64172B;
  color: white;
  border-radius: 4px;
  border: none;
  height: 40px;
  width: 150px;
  cursor: pointer;
}
#P1 .trois-card .cadre-gauche,
#P1 .trois-card .cadre-gauche2,
#P1 .trois-card .cadre-milieu {
  border: 0.125rem solid #C6AD8F;
  width: 18rem;
  height: 24rem;
  position: absolute;
}
#P1 .trois-card .cadre-gauche {
  margin-top: -2rem;
  margin-left: -37rem;
}
#P1 .trois-card .cadre-gauche2 {
  margin-top: -2rem;
  margin-left: -50rem;
}
#P1 .trois-card .cadre-milieu {
  margin-top: -2rem;
  margin-left: 37rem;
}
#P1 .beige {
  background: #C6AD8F;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 6rem 3rem;
  gap: 2rem;
}
#P1 .beige .P1cta1 {
  background: #64172B;
  color: white;
  border-radius: 4px;
  border: none;
  height: 40px;
  width: 150px;
  cursor: pointer;
}
#P1 .beige .text1,
#P1 .beige .text2 {
  width: 45%;
}
#P1 .beige .text1 img,
#P1 .beige .text2 img {
  width: 100%;
  height: auto;
  max-height: 60svh;
  -o-object-fit: cover;
     object-fit: cover;
}
#P1 .beige .text1 article,
#P1 .beige .text2 article {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#P1 .beige .text1 ul,
#P1 .beige .text2 ul {
  list-style: none;
}
#P1 .beige .text1 article {
  width: 70%;
  align-items: center;
}
#P1 .beige .text2 article {
  width: 90%;
}
#P1 .conseils {
  width: 100%;
  min-height: 35svh;
}
#P1 .conseils h3 {
  text-align: center;
  margin: 3rem;
}
#P1 .conseils .deux-articles {
  margin: 6rem;
}
#P1 .conseils .deux-articles .is-visible ul {
  list-style: none;
}
#P1 .conseils article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  min-height: 35svh;
  margin-top: 3rem;
}
#P1 .conseils article .article-bas div {
  margin-left: 5rem;
}
#P1 .conseils article img {
  width: 100%;
  max-width: 48rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 2rem;
  margin-left: 5rem;
}
#P1 .conseils article img:nth-child(2) {
  margin-top: 2rem;
  margin-left: -3rem;
}
#P1 .conseils article div {
  border: 0.125rem solid #C6AD8F;
  min-height: 38rem;
  width: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  margin-left: -2rem;
  padding: 4rem;
}
#P1 .conseils article div p {
  text-align: center;
  width: 22rem;
}
#P1 .conseils article div .btn-link {
  border: #C6AD8F 1px solid;
  background: white;
  color: #C6AD8F;
  border-radius: 4px;
  height: 40px;
  width: 150px;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1.875rem;
  width: 175px;
  cursor: pointer;
}
#P1 .gris {
  background: #64172B;
  width: 100%;
  min-height: 37.5svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 13rem;
}
#P1 .gris h3 {
  color: white;
  margin: 3rem;
}
#P1 .gris ul {
  list-style: none;
  color: white;
  margin: 0.625rem 4rem;
}
#P1 .reseaux {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6rem;
  margin-top: -2rem;
}
#P1 .reseaux div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -6.875rem;
  margin-left: 0.625rem;
  border: 0.125rem solid #C6AD8F;
  height: 46.875rem;
  width: 28.125rem;
}
#P1 .reseaux div a {
  text-decoration: none;
}
#P1 .reseaux div p {
  color: #64172B;
  font-size: 1.25rem;
  text-align: center;
  margin: 1.875rem;
}
#P1 .reseaux div img {
  width: 100%;
  max-width: 21.875rem;
  height: auto;
  max-height: 37.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------- PAGE FROMAGERIE - P2 ---------- */
#P2 figure {
  width: 100%;
  position: relative;
}
#P2 figure img {
  width: 100%;
  min-height: 30svh;
  max-height: 95svh;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 0.375rem solid #C6AD8F;
}
#P2 figure figcaption {
  color: white;
  position: absolute;
  top: clamp(22rem, 45vh, 31rem);
  margin: 3rem;
}
#P2 h2,
#P2 h3 {
  margin: 3.75rem clamp(3rem, 10vw, 9.375rem);
}
#P2 h2,
#P2 h4 {
  text-align: center;
}
#P2 .deux-articles {
  margin: clamp(4rem, 10vw, 9rem);
}
#P2 .deux-articles h4 {
  margin: 3.75rem clamp(3rem, 10vw, 9.375rem);
}
#P2 {
  /* ---------------- LISTES ---------------- */
}
#P2 .listes {
  display: flex;
  gap: 5%;
  align-items: center;
}
#P2 .listes .liste-chez-nous h4 {
  margin: 1rem;
}
#P2 .listes .liste-chez-nous .liste-proposition {
  margin: 1rem clamp(3rem, 10vw, 9rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  list-style: none;
  padding-left: 0;
}
#P2 .listes .liste-chez-nous .liste-proposition li::before {
  content: "✓ ";
  color: #C6AD8F;
  font-weight: bold;
}
#P2 .listes img {
  height: clamp(18rem, 35vw, 30rem);
  -o-object-fit: cover;
     object-fit: cover;
}
#P2 .liste-fromages {
  margin: clamp(4rem, 10vw, 9rem);
  display: flex;
  gap: 10%;
}
#P2 .liste-fromages img {
  height: clamp(14rem, 25vw, 20rem);
  -o-object-fit: cover;
     object-fit: cover;
}
#P2 .liste-fromages h4 {
  margin: 1rem;
}
#P2 .liste-fromages .liste-animaux {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
}
#P2 .liste-fromages .liste-animaux li::before {
  content: "✓ ";
  color: #C6AD8F;
  font-weight: bold;
}
#P2 {
  /* ---------------- BLOC GRIS ---------------- */
}
#P2 .P2-bloc-gris {
  min-height: 43.75rem;
  background: #64172B;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#P2 .P2-bloc-gris h4 {
  color: white;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10%;
}
#P2 .P2-bloc-gris .P2-separateur {
  border: 0.125rem solid #C6AD8F;
  width: 100%;
  margin-top: 6.25rem;
  position: absolute;
}
#P2 {
  /* ---------------- CTA ---------------- */
}
#P2 .P2cta {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 65%;
  padding: 3rem 0 2rem;
}
#P2 .P2cta__ligne {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #64172b, #d4c9b6, #c6ad8f);
}
#P2 .P2cta a {
  flex-shrink: 0;
  border: 1px solid #c6ad8f;
  background: white;
  color: #c6ad8f;
  border-radius: 4px;
  height: 40px;
  padding: 0 1.5rem;
  min-width: 140px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
#P2 .P2cta a:hover {
  background: #c6ad8f;
  color: white;
  transition: background 0.2s ease, color 0.2s ease;
}
#P2 {
  /* ---------------- GRID ---------------- */
}
#P2 .bloc-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  justify-content: center;
  grid-auto-rows: 200px;
  grid-auto-columns: 200px;
  gap: 15px;
}
#P2 .bloc-grid .grid1,
#P2 .bloc-grid .grid2,
#P2 .bloc-grid .grid3,
#P2 .bloc-grid .grid4,
#P2 .bloc-grid .grid5,
#P2 .bloc-grid .grid6,
#P2 .bloc-grid .grid7,
#P2 .bloc-grid .grid8,
#P2 .bloc-grid .grid9,
#P2 .bloc-grid .grid10,
#P2 .bloc-grid .grid11,
#P2 .bloc-grid .grid12,
#P2 .bloc-grid .grid13,
#P2 .bloc-grid .grid14,
#P2 .bloc-grid .grid15,
#P2 .bloc-grid .grid16,
#P2 .bloc-grid .grid17,
#P2 .bloc-grid .grid18,
#P2 .bloc-grid .grid19,
#P2 .bloc-grid .grid20,
#P2 .bloc-grid .grid21 {
  position: relative;
  overflow: hidden;
}
#P2 .bloc-grid .grid1 {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
#P2 .bloc-grid .grid1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#P2 .bloc-grid .grid2 {
  grid-column: 3/span 1;
  grid-row: 1/span 2;
}
#P2 .bloc-grid .grid2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#P2 .bloc-grid .grid3 {
  grid-column: 4/span 1;
}
#P2 .bloc-grid .grid3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#P2 .bloc-grid .grid4 {
  grid-column: 4/span 1;
  grid-row: 2/span 1;
  background: #C6AD8F;
}
#P2 .bloc-grid .grid5 {
  grid-column: 1/span 1;
  grid-row: 3/span 2;
  border: 2px solid #d4c9b6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
#P2 .bloc-grid .grid5 p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
#P2 .bloc-grid .grid6 {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  background: #64172B;
}
#P2 .bloc-grid .grid7 {
  grid-column: 3/span 2;
  grid-row: 3/span 1;
  border: 2px solid #d4c9b6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
#P2 .bloc-grid .grid7 p {
  font-size: 1.2rem;
  text-align: center;
}
#P2 .bloc-grid .grid8 img,
#P2 .bloc-grid .grid9 img,
#P2 .bloc-grid .grid12 img,
#P2 .bloc-grid .grid13 img,
#P2 .bloc-grid .grid14 img,
#P2 .bloc-grid .grid16 img,
#P2 .bloc-grid .grid18 img,
#P2 .bloc-grid .grid19 img,
#P2 .bloc-grid .grid21 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#P2 .bloc-grid .grid8 {
  grid-column: 2/span 2;
  grid-row: 4/span 1;
}
#P2 .bloc-grid .grid9 {
  grid-column: 4/span 1;
  grid-row: 4/span 1;
}
#P2 .bloc-grid .grid10 {
  grid-column: 1/span 1;
  grid-row: 5/span 1;
  background: #C6AD8F;
}
#P2 .bloc-grid .grid11 {
  grid-column: 2/span 1;
  grid-row: 5/span 1;
  border: 2px solid #d4c9b6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
#P2 .bloc-grid .grid11 p {
  font-size: 1rem;
  text-align: center;
}
#P2 .bloc-grid .grid12 {
  grid-column: 3/span 1;
  grid-row: 5/span 1;
}
#P2 .bloc-grid .grid13 {
  grid-column: 4/span 1;
  grid-row: 5/span 1;
}
#P2 .bloc-grid .grid14 {
  grid-column: 1/span 2;
  grid-row: 6/span 1;
}
#P2 .bloc-grid .grid15 {
  grid-column: 3/span 1;
  grid-row: 6/span 1;
  background: #64172B;
}
#P2 .bloc-grid .grid16 {
  grid-column: 4/span 1;
  grid-row: 6/span 1;
}
#P2 .bloc-grid .grid17 {
  grid-column: 1/span 2;
  grid-row: 7/span 1;
  border: 2px solid #d4c9b6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
#P2 .bloc-grid .grid17 p {
  font-size: 1.2rem;
  text-align: center;
}
#P2 .bloc-grid .grid18 {
  grid-column: 3/span 2;
  grid-row: 7/span 1;
}
#P2 .bloc-grid .grid19 {
  grid-column: 1/span 1;
  grid-row: 8/span 1;
}
#P2 .bloc-grid .grid20 {
  grid-column: 2/span 1;
  grid-row: 8/span 1;
  background: #C6AD8F;
}
#P2 .bloc-grid .grid21 {
  grid-column: 3/span 2;
  grid-row: 8/span 1;
}
#P2 {
  /* ---------------- FLIP CARDS ---------------- */
}
#P2 .section-flip {
  display: flex;
  gap: 3%;
  margin: clamp(4rem, 10vw, 9rem);
}
#P2 .section-flip img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#P2 .section-flip .flip-card {
  width: 18.75rem;
  height: 25rem;
  perspective: 62.5rem;
}
#P2 .section-flip .flip-card-interieur {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
#P2 .section-flip .flip-card:hover .flip-card-interieur {
  transform: rotateY(180deg);
}
#P2 .section-flip .flip-card-recto,
#P2 .section-flip .flip-card-verso {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}
#P2 .section-flip .flip-card-verso {
  background-color: #C6AD8F;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#P2 .section-flip .flip-card-verso h2 {
  margin: 1.5rem;
  font-size: 1.5rem;
}
#P2 .section-flip .flip-card-verso p {
  margin: 3rem;
}
#P2 {
  /* ---------------- TEXTES ---------------- */
}
#P2 .textes-occasion {
  display: flex;
  flex-direction: column;
  margin: clamp(4rem, 10vw, 9rem);
}
#P2 .textes-occasion ul {
  list-style: none;
  padding-left: 0;
  width: 70%;
}
#P2 .textes-occasion ul li::before {
  content: "✓ ";
  color: #C6AD8F;
  font-weight: bold;
}
#P2 .textes-occasion h4 {
  margin: 3.75rem clamp(3rem, 10vw, 9.375rem);
}
#P2 .textes-occasion .texte-mont-or {
  display: flex;
  margin-bottom: 2rem;
}
#P2 .textes-occasion img {
  height: clamp(20rem, 40vw, 34rem);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------- PAGE CHARCUTERIE - P3 ---------- */
#P3 {
  width: 100%;
  --beige-cadre: #c6ad8f;
  --beige-bg: #e8dcc8;
  --blanc: #ffffff;
  --texte-fonce: #3a2a1a;
  --texte-moyen: #5a4a3a;
  --cadre-border: 0.125rem solid var(--beige-cadre);
  --rayon: 0.3125rem;
  --gap-bloc: 8%;
  --img-width: clamp(16rem, 40vw, 30rem);
  --section-margin: 8rem auto;
  --wrapper-max: 75rem;
}
#P3 figure {
  width: 100%;
  position: relative;
}
#P3 figure img {
  width: 100%;
  height: clamp(24rem, 90svh, 50rem);
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 0.375rem solid var(--beige-cadre);
}
#P3 figure figcaption {
  color: var(--blanc);
  position: absolute;
  top: clamp(18rem, 40vh, 25rem);
  margin: 3rem;
}
#P3 .card-one {
  display: flex;
  align-items: center;
  margin: clamp(8rem, 15vw, 20rem);
}
#P3 .card-one > img {
  border-radius: var(--rayon);
  -o-object-fit: cover;
     object-fit: cover;
  width: clamp(18rem, 60vw, 43.75rem);
  height: auto;
  flex-shrink: 0;
}
#P3 .card-one article {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.0625rem solid var(--beige-cadre);
  background: var(--blanc);
  border-radius: var(--rayon);
  width: 25rem;
  min-height: 31.25rem;
  gap: 1.875rem;
  padding: 2.5rem;
  margin-left: clamp(-14rem, -19vw, -4rem);
  position: relative;
  z-index: 2;
}
#P3 .bloc-gauche-wrapper-4 .bloc-gauche-4, #P3 .bloc-droite-wrapper-3 .bloc-droite-3, #P3 .bloc-gauche-wrapper-2 .bloc-gauche-2, #P3 .bloc-droite-wrapper .bloc-droite {
  display: flex;
  align-items: center;
  width: 85%;
  margin: 8rem auto;
  gap: var(--gap-bloc);
}
#P3 .bloc-gauche-wrapper-4 .bloc-gauche-4 img, #P3 .bloc-droite-wrapper-3 .bloc-droite-3 img, #P3 .bloc-gauche-wrapper-2 .bloc-gauche-2 img, #P3 .bloc-droite-wrapper .bloc-droite img {
  width: var(--img-width);
  aspect-ratio: 6/7;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--rayon);
  flex-shrink: 0;
}
#P3 .bloc-gauche-wrapper-4 .bloc-gauche-4 article, #P3 .bloc-droite-wrapper-3 .bloc-droite-3 article, #P3 .bloc-gauche-wrapper-2 .bloc-gauche-2 article, #P3 .bloc-droite-wrapper .bloc-droite article {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
#P3 .liste-charcuterie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding-left: 0;
}
#P3 .liste-charcuterie li::before {
  content: "✓ ";
  font-weight: bold;
  color: var(--beige-cadre);
}
#P3 .bloc-droite-wrapper,
#P3 .bloc-gauche-wrapper-2,
#P3 .bloc-droite-wrapper-3,
#P3 .bloc-gauche-wrapper-4 {
  position: relative;
  max-width: var(--wrapper-max);
  margin: var(--section-margin);
  padding: 0 1rem;
}
#P3 .bloc-droite-wrapper::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  width: 66%;
  height: 107%;
  border: var(--cadre-border);
  z-index: 0;
  pointer-events: none;
}
#P3 .bloc-droite-wrapper .bloc-droite {
  position: relative;
  z-index: 2;
  flex-direction: row;
}
#P3 .bloc-gauche-wrapper-2::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 0;
  width: 65%;
  height: 90%;
  border: var(--cadre-border);
  z-index: 0;
  pointer-events: none;
}
#P3 .bloc-gauche-wrapper-2 .bloc-gauche-2 {
  position: relative;
  z-index: 2;
  flex-direction: row;
}
#P3 .bloc-droite-wrapper-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 66%;
  height: 104%;
  border: var(--cadre-border);
  z-index: 0;
  pointer-events: none;
}
#P3 .bloc-droite-wrapper-3 .bloc-droite-3 {
  position: relative;
  z-index: 2;
  flex-direction: row;
}
#P3 .bloc-droite-wrapper-3 .bloc-droite-3 img {
  margin-top: 2rem;
}
#P3 .bloc-gauche-wrapper-4::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 0;
  width: 65%;
  height: 60%;
  border: var(--cadre-border);
  z-index: 0;
  pointer-events: none;
}
#P3 .bloc-gauche-wrapper-4 .bloc-gauche-4 {
  position: relative;
  z-index: 2;
  flex-direction: row;
}
#P3 .bloc-gauche-wrapper-4 .bloc-gauche-4 img {
  aspect-ratio: 6/7;
}
#P3 .bloc-gauche-wrapper-4 .bloc-gauche-4 article p {
  margin-top: 0.75rem;
}
#P3 .bloc-gauche-wrapper-4 .P3cta2 {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 3rem 0 2rem;
}
#P3 .bloc-gauche-wrapper-4 .P3cta2__ligne {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #64172b, #d4c9b6, #c6ad8f);
}
#P3 .bloc-gauche-wrapper-4 .P3cta2 a {
  flex-shrink: 0;
  border: 1px solid #c6ad8f;
  background: white;
  color: #c6ad8f;
  border-radius: 4px;
  height: 40px;
  padding: 0 1.5rem;
  min-width: 140px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
#P3 .bloc-gauche-wrapper-4 .P3cta2 a:hover {
  background: #c6ad8f;
  color: white;
  transition: background 0.2s ease, color 0.2s ease;
}
#P3 .separateur1,
#P3 .separateur3 {
  height: 4rem;
}

/* -------------- PAGE EPICERIE - P4 ----------- */
#P4 {
  width: 100%;
}
#P4 figure {
  width: 100%;
  position: relative;
}
#P4 figure img {
  width: 100%;
  height: clamp(24rem, 90svh, 50rem);
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 0.375rem solid #C6AD8F;
}
#P4 figure figcaption {
  color: white;
  position: absolute;
  top: clamp(18rem, 40vh, 25rem);
  margin: 3rem;
}
#P4 h2 {
  font-family: "IM Fell DW Pica", serif;
  text-align: center;
  margin: 5rem;
}
#P4 .P4-texte-presentation {
  margin: auto;
  padding: 3rem 3rem 6rem;
  text-align: center;
  width: 60%;
}
#P4 .trois-articles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: center;
}
#P4 .trois-articles .P4-separateur1 {
  background: linear-gradient(to right, #64172b, #d4c9b6, #c6ad8f);
  height: 2px;
  position: absolute;
  width: 100%;
  transform: translate(0, -150px);
}
#P4 .trois-articles .bloc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
#P4 .trois-articles .bloc article {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#P4 .trois-articles .bloc article ul {
  margin: 1rem 3rem;
  width: 18.75rem;
}
#P4 .trois-articles .bloc article ul li {
  list-style: none;
}
#P4 .trois-articles .bloc article h4 {
  margin: 3rem;
  width: 18.75rem;
}
#P4 .trois-articles .bloc article p {
  width: 18.75rem;
}
#P4 .trois-articles .bloc article .p-texte-presentation {
  margin: 6rem;
}
#P4 .trois-articles .bloc article img {
  width: 18.75rem;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  margin: 0 auto;
  border-radius: 0.3125rem;
}
#P4 .trois-articles .bloc article h3 {
  color: #0f0e0e;
  font-size: 2rem;
  font-family: "IM Fell DW Pica", serif;
  width: 18.75rem;
  margin: 2rem;
}
#P4 .bloc-gris {
  background: #64172B;
  width: 100%;
  height: 50vh;
  padding: 0.625rem;
}
#P4 .bloc-gris .bloc-texte-beige {
  border: 0.125rem solid #C6AD8F;
  margin: 3.25rem;
  padding: 3.125rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#P4 .bloc-gris h4 {
  color: #fff;
}
#P4 .trois-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  gap: 3.125rem;
}
#P4 .trois-img img {
  width: 18.75rem;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
}
#P4 .bloc-beige {
  height: 60vh;
  display: flex;
  background: #C6AD8F;
}
#P4 .bloc-beige img {
  width: 31.25rem;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 3.125rem;
  border-radius: 0.3125rem;
  margin-top: -3.75rem;
  z-index: 1;
}
#P4 .bloc-beige article {
  display: flex;
  justify-content: center;
  align-items: false;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3rem 3rem 3rem 6rem;
}
#P4 .bloc-beige article ul li {
  list-style: none;
}
#P4 .deux-card {
  width: 100%;
  height: 70vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 3.125rem;
}
#P4 .deux-card img {
  width: 25rem;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
#P4 .deux-card .cadre-haut,
#P4 .deux-card .cadre-bas {
  border: 0.125rem solid #C6AD8F;
  width: 25rem;
  height: 50vh;
  position: absolute;
}
#P4 .deux-card .cadre-haut {
  transform: translate(17.5rem, 3.125rem);
}
#P4 .deux-card .cadre-bas {
  transform: translate(-17.5rem, -3.125rem);
}
#P4 .P4cta1, #P4 .P4cta2 {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 65%;
  padding: 3rem 0 2rem;
}
#P4 .P4cta1__ligne, #P4 .P4cta2__ligne {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #64172b, #d4c9b6, #c6ad8f);
}
#P4 .P4cta1 a, #P4 .P4cta2 a {
  flex-shrink: 0;
  border: 1px solid #c6ad8f;
  background: white;
  color: #c6ad8f;
  border-radius: 4px;
  height: 40px;
  padding: 0 1.5rem;
  min-width: 140px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
#P4 .P4cta1 a:hover, #P4 .P4cta2 a:hover {
  background: #c6ad8f;
  color: white;
  transition: background 0.2s ease, color 0.2s ease;
}
#P4 .redirection {
  margin: 9rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* -------------- PAGE CONSEILS - P5 ----------- */
#P5 ul {
  margin: 1rem 15rem 8rem;
  list-style: none;
  padding-left: 0;
}
#P5 ul li::before {
  content: "✓ ";
  color: #63002a;
  margin: 0.3rem;
}
#P5 figure {
  width: 100%;
  position: relative;
}
#P5 figure img {
  width: 100%;
  height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 0.375rem solid #C6AD8F;
}
#P5 figure figcaption {
  color: white;
  position: absolute;
  top: 26rem;
  margin: 3.125rem;
}
#P5 figure figcaption h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
#P5 h2 {
  text-align: center;
  margin: 3.75rem;
}
#P5 article img {
  height: 50vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#P5 article h3,
#P5 article h4,
#P5 article p {
  margin: 3.75rem 15rem;
}

.P5cta1 {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 65%;
  padding: 3rem 0 2rem;
}
.P5cta1__ligne {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #64172b, #d4c9b6, #c6ad8f);
}
.P5cta1 a {
  flex-shrink: 0;
  border: 1px solid #c6ad8f;
  background: white;
  color: #c6ad8f;
  border-radius: 4px;
  height: 40px;
  padding: 0 1.5rem;
  min-width: 140px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
.P5cta1 a:hover {
  background: #c6ad8f;
  color: white;
  transition: background 0.2s ease, color 0.2s ease;
}

/* --------- PAGE CONTACT - P6 -------------- */
#P6 .fond-gris {
  background: #64172B;
  display: flex;
  justify-content: false;
  align-items: false;
  flex-direction: row;
  padding: 50px;
  height: 900px;
  position: relative;
}
#P6 .hero-contact {
  width: 100%;
  height: 780px;
}
#P6 .hero-contact img {
  height: 95vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 0.375rem solid #C6AD8F;
}
#P6 .questions {
  width: 100%;
  margin: 6rem 0;
}
#P6 .questions h1 {
  margin: 9rem;
  text-align: center;
  font-size: 3rem;
}
#P6 .questions p {
  text-align: center;
  margin: 1rem 9rem 2rem;
}
#P6 .card-contact1 {
  border: #C6AD8F 2px solid;
  width: 400px;
  height: 655px;
  margin-left: 277px;
  position: absolute;
  z-index: 1;
}
#P6 .card-contact1 form {
  color: white;
  display: flex;
  justify-content: false;
  align-items: false;
  flex-direction: column;
  margin: 20px;
  gap: 20px;
}
#P6 .card-contact1 form label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
}
#P6 .card-contact1 form input {
  font-family: "Cormorant Garamond", sans-serif;
  height: 33px;
  padding: 0.5rem;
}
#P6 .card-contact1 form #message {
  height: 300px;
  width: 90%;
  padding: 0.5rem;
  font-family: "Cormorant Garamond", sans-serif;
}
#P6 .card-contact1 form button {
  height: 40px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: none;
  background: #C6AD8F;
  color: white;
  cursor: pointer;
}
#P6 .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#P6 .sr-only-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
#P6 .flash-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.32);
  z-index: 10000;
  padding: 1rem;
}
#P6 .flash-modal__dialog {
  position: relative;
  width: min(100%, 34rem);
  background: #fff;
  color: #1f2937;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 1.75rem 1.25rem 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
#P6 .flash-modal__dialog--success {
  border-color: #14532d;
}
#P6 .flash-modal__dialog--warning {
  border-color: #92400e;
}
#P6 .flash-modal__dialog--error {
  border-color: #7f1d1d;
}
#P6 .flash-modal__message {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}
#P6 .flash-modal__close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
#P6 .card-contact2 {
  border: #C6AD8F 2px solid;
  background: #64172B;
  display: flex;
  justify-content: center;
  align-items: false;
  flex-direction: column;
  padding: 50px;
  gap: 30px;
  color: white;
  width: 400px;
  height: 500px;
  position: absolute;
  z-index: 2;
  top: 312px;
  left: 690px;
  text-align: center;
}
#P6 .plan {
  text-align: center;
}
#P6 .plan article {
  text-align: center;
  margin-top: 6rem;
}
#P6 .plan h3 {
  margin: 5rem 0 3rem 0;
}
#P6 .plan h2 {
  margin: 3rem 15rem;
  font-size: 1.6rem;
}
#P6 .plan iframe {
  margin-top: 3rem;
  width: 100%;
  border: none;
}
#P6 .commandes,
#P6 .acces {
  margin: 3rem 15rem;
  text-align: center;
}
#P6 .commandes ul,
#P6 .acces ul {
  list-style: none;
  text-align: center;
}

/* --------------- Focus clavier ------------------ */
:focus-visible {
  outline: 2px solid #64172B;
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------- Animations (accessibilité) ------------------ */
@media (prefers-reduced-motion: reduce) {
  /* Flip cards */
  .flip-card-interieur {
    transition: none;
  }
  .flip-card-interieur h2 {
    font-size: 1.5rem;
  }
  /* Menu burger slide */
  #nav-menu {
    transition: none;
  }
  body.js-anim-ready h1.el,
  body.js-anim-ready h1.el.go {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body.js-anim-ready #P1 [data-stagger] > h1,
  body.js-anim-ready #P1 [data-stagger] > h2,
  body.js-anim-ready #P1 [data-stagger] > h3,
  body.js-anim-ready #P1 [data-stagger] > h4,
  body.js-anim-ready #P1 [data-stagger] > p,
  body.js-anim-ready #P1 [data-stagger] > li,
  body.js-anim-ready #P1 [data-stagger] > a,
  body.js-anim-ready #P1 [data-stagger] > .P1_separateur {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body.js-anim-ready #P4 [data-photo-stagger] img {
    opacity: 1;
    transform: none;
    transition: none;
  }
  #P3 img[data-parallax] {
    transform: none;
    will-change: auto;
  }
}
/* --------------- Bouton retour haut & imports ------------------ */
/* vars.scss */
.bulle-flottante {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0));
  bottom: calc(16px + env(safe-area-inset-bottom, 0) + clamp(44px, 8vw, 54px) + 14px);
  z-index: 9999;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.bulle-flottante__btn {
  inline-size: clamp(44px, 8vw, 54px);
  block-size: clamp(44px, 8vw, 54px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c9ab89;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  cursor: pointer;
  animation: pulse 2.5s infinite;
}

.bulle-flottante__btn svg {
  inline-size: 28px;
  block-size: 28px;
}

.bulle-flottante__btn:hover {
  background-color: #64172B;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.bulle-flottante__btn:active {
  transform: scale(0.95);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.bulle-flottante__toast {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background-color: #111827;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bulle-flottante__toast[hidden] {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.bulle-flottante__modal[hidden] {
  display: none;
}

.bulle-flottante__modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 9998;
  animation: fadeIn 0.3s ease forwards;
}

.bulle-flottante__modal-content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  max-width: 320px;
  width: 90%;
  font-family: "IM Fell DW Pica", serif;
  text-align: left;
  animation: popIn 0.25s ease-out forwards;
}

.bulle-flottante__modal-content p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #111827;
  font-weight: 500;
}

.bulle-flottante__option {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #1f2937;
}

.bulle-flottante__option input {
  margin-right: 0.5rem;
  accent-color: #64172B;
}

.bulle-flottante__option small {
  display: block;
  margin-left: 1.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.bulle-flottante__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bulle-flottante__modal-actions button {
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.bulle-flottante__modal-actions button:active {
  transform: scale(0.97);
}

.bulle-flottante__modal-actions button[data-action=validate] {
  background: #64172B;
  color: #fff;
}

.bulle-flottante__modal-actions button[data-action=validate]:hover {
  background: #64172B;
}

.bulle-flottante__modal-actions button[data-action=cancel] {
  background: #e5e7eb;
  color: #111827;
}

.bulle-flottante__modal-actions button[data-action=cancel]:hover {
  background: #d1d5db;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(201, 171, 137, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(201, 171, 137, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(201, 171, 137, 0.4);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bulle-flottante__btn {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 480px) {
  .bulle-flottante {
    right: calc(12px + env(safe-area-inset-right, 0));
  }
}
/* vars.scss */
.btn-scroll {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0));
  bottom: calc(16px + env(safe-area-inset-bottom, 0));
  inline-size: clamp(44px, 8vw, 54px);
  block-size: clamp(44px, 8vw, 54px);
  display: none;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-scroll img {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-scroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .btn-scroll {
    right: calc(12px + env(safe-area-inset-right, 0));
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-scroll {
    transition: none;
  }
}
/* ===== FOOTER ===== */
footer {
  margin-top: clamp(40px, 6vw, 80px);
  background: white; /* sombre moderne */
  padding: clamp(28px, 4vw, 48px) 16px 14px;
}

/* conteneur principal (ton <footer> > <div>) */
footer > div {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr 360px; /* logo / nav / infos */
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

/* Logo */
footer .logo {
  display: block;
  width: min(300px, 100%);
  height: auto;
  filter: brightness(1.05);
}

/* Séparateurs : fins et discrets */
footer .separateur {
  height: 1px;
  margin: 10px 0;
  background: linear-gradient(to right, #64172b, #d4c9b6, #c6ad8f);
}

/* NAV */
footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

footer nav a {
  color: black;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.25;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

footer nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Infos (horaires + réseaux) */
footer .infos {
  display: grid;
  gap: 14px;
}

footer .horaire p {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

/* Réseaux */
footer .reseaux-img {
  display: flex;
  gap: 12px;
  align-items: center;
}

footer .reseaux-img a {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

footer .reseaux-img a:hover {
  transform: translateY(-2px);
}

footer .reseaux-img img {
  display: block;
}

/* Mentions (ton <section class="mentions">) */
footer .mentions {
  max-width: 1200px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid #64172B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

footer .mentions p {
  margin: 0;
  font-size: 0.9rem;
}

footer .mentions a {
  color: black;
  text-decoration: none;
  font-size: 0.9rem;
}

footer .mentions a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  footer > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  /* Séparateur moderne */
  footer .separateur {
    height: 1px;
    width: 100%;
    margin: 8px 0;
    background: linear-gradient(to right, #64172b, #d4c9b6, #c6ad8f);
  }
  /* Logo centré */
  footer > div > a {
    display: flex;
    justify-content: center;
  }
  footer .logo {
    width: min(260px, 100%);
  }
  /* Navigation plus moderne */
  footer nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
  }
  footer nav a {
    padding: 10px 12px;
    color: #64172B;
  }
  /* infos */
  footer .infos {
    display: grid;
    gap: 14px;
    text-align: center;
  }
  footer .reseaux-img {
    justify-content: center;
  }
  footer .mentions {
    border: none;
    text-align: center;
  }
  footer .mentions .lien {
    text-align: center;
  }
}
/* vars.scss */
.btn-scroll {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0));
  bottom: calc(16px + env(safe-area-inset-bottom, 0));
  inline-size: clamp(44px, 8vw, 54px);
  block-size: clamp(44px, 8vw, 54px);
  display: none;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-scroll img {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-scroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .btn-scroll {
    right: calc(12px + env(safe-area-inset-right, 0));
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-scroll {
    transition: none;
  }
}
/* vars.scss */
@media (min-width: 751px) and (max-width: 1023.98px) {
  p {
    font-size: 1.1rem;
  }
}
@media (min-width: 751px) and (max-width: 1023.98px) {
  #mentions h1, #mentions h2 {
    margin: 80px 80px;
  }
  #mentions article {
    margin: 60px 80px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  .page404 {
    flex-direction: column;
    text-align: center;
  }
  .page404 > img {
    width: 80%;
    max-width: 28rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P1 figure img {
    max-height: 80svh;
  }
  #P1 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P1 figure figcaption > h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }
  #P1 figure figcaption > p {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
  }
  #P1 .trois-card {
    gap: 6rem;
    padding: 12svh 4rem;
  }
  #P1 .trois-card div {
    flex: 1 1 14rem;
    max-width: 16rem;
  }
  #P1 .trois-card .cadre-gauche {
    width: 16rem;
    height: 21rem;
    margin-top: -2rem;
    margin-left: -27rem;
  }
  #P1 .trois-card .cadre-gauche2 {
    width: 16rem;
    height: 21rem;
    margin-top: -2rem;
    margin-left: -30rem;
  }
  #P1 .trois-card .cadre-milieu {
    width: 16rem;
    height: 21rem;
    margin-top: -2rem;
    margin-left: 27rem;
  }
  #P1 .beige {
    flex-direction: column;
    align-items: center;
    padding: 4rem 3rem;
  }
  #P1 .beige .text1,
  #P1 .beige .text2 {
    width: 100%;
    max-width: 42rem;
  }
  #P1 .beige .text1 img,
  #P1 .beige .text2 img {
    max-height: 50svh;
  }
  #P1 .beige .text1 article,
  #P1 .beige .text2 article {
    width: 90%;
  }
  #P1 .conseils h3 {
    margin: 2.5rem;
  }
  #P1 .conseils .deux-articles {
    margin: 3rem 2rem;
  }
  #P1 .conseils .deux-articles .article-haut,
  #P1 .conseils .deux-articles .article-bas {
    flex-direction: column;
    height: auto;
  }
  #P1 .conseils .deux-articles .article-haut img,
  #P1 .conseils .deux-articles .article-bas img {
    width: 100%;
    max-width: 36rem;
    height: 38svh;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 0;
    margin-bottom: 2rem;
  }
  #P1 .conseils .deux-articles .article-haut div,
  #P1 .conseils .deux-articles .article-bas div {
    width: 100%;
    min-height: auto;
    padding: 3rem 2rem;
    margin-left: 0;
  }
  #P1 .conseils .deux-articles .article-haut div p,
  #P1 .conseils .deux-articles .article-bas div p {
    width: 100%;
    transform: none;
  }
  #P1 .conseils .deux-articles .article-bas div {
    margin-left: 0;
  }
  #P1 .gris {
    padding-bottom: 6rem;
  }
  #P1 .gris p {
    margin: 1rem 5rem;
  }
  #P1 .reseaux-sociaux {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  #P1 .reseaux {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 0;
  }
  #P1 .reseaux div {
    height: 42svh;
    width: clamp(18rem, 40vw, 26rem);
    margin-top: -4rem;
  }
  #P1 .reseaux div img {
    max-width: 100%;
    -o-object-position: 10% 15%;
       object-position: 10% 15%;
    height: 30svh;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P2 figure img {
    max-height: 80svh;
  }
  #P2 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P2 figure figcaption h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }
  #P2 h2 {
    margin: 3rem 3rem;
    text-align: center;
  }
  #P2 .deux-articles {
    margin: 3rem 3rem;
  }
  #P2 .deux-articles h4 {
    margin: 2.5rem 2rem;
    text-align: center;
  }
  #P2 .listes {
    flex-direction: column-reverse;
    align-items: center;
  }
  #P2 .listes img {
    padding: 2rem;
    width: 100%;
    max-width: 36rem;
    height: auto;
  }
  #P2 .listes .liste-chez-nous {
    margin: 1rem 2rem;
  }
  #P2 .listes .liste-chez-nous .liste-proposition {
    margin: 1rem 2rem;
  }
  #P2 .liste-fromages {
    flex-direction: column;
    margin: 3rem 3rem;
  }
  #P2 .liste-fromages img {
    max-height: 20rem;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #P2 .liste-fromages h4 {
    margin: 1.5rem 1rem;
    text-align: center;
  }
  #P2 .bloc-grid {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 0.75rem;
    padding: 1.5rem;
  }
  #P2 .bloc-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  #P2 .bloc-grid .grid1, #P2 .bloc-grid .grid2, #P2 .bloc-grid .grid3, #P2 .bloc-grid .grid4, #P2 .bloc-grid .grid5, #P2 .bloc-grid .grid6, #P2 .bloc-grid .grid7, #P2 .bloc-grid .grid8,
  #P2 .bloc-grid .grid9, #P2 .bloc-grid .grid10, #P2 .bloc-grid .grid11, #P2 .bloc-grid .grid12, #P2 .bloc-grid .grid13, #P2 .bloc-grid .grid14, #P2 .bloc-grid .grid15,
  #P2 .bloc-grid .grid16, #P2 .bloc-grid .grid17, #P2 .bloc-grid .grid18, #P2 .bloc-grid .grid19, #P2 .bloc-grid .grid20, #P2 .bloc-grid .grid21 {
    position: relative;
    overflow: hidden;
    min-height: 10rem;
  }
  #P2 .bloc-grid .grid1 img, #P2 .bloc-grid .grid2 img, #P2 .bloc-grid .grid3 img, #P2 .bloc-grid .grid4 img, #P2 .bloc-grid .grid5 img, #P2 .bloc-grid .grid6 img, #P2 .bloc-grid .grid7 img, #P2 .bloc-grid .grid8 img,
  #P2 .bloc-grid .grid9 img, #P2 .bloc-grid .grid10 img, #P2 .bloc-grid .grid11 img, #P2 .bloc-grid .grid12 img, #P2 .bloc-grid .grid13 img, #P2 .bloc-grid .grid14 img, #P2 .bloc-grid .grid15 img,
  #P2 .bloc-grid .grid16 img, #P2 .bloc-grid .grid17 img, #P2 .bloc-grid .grid18 img, #P2 .bloc-grid .grid19 img, #P2 .bloc-grid .grid20 img, #P2 .bloc-grid .grid21 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  #P2 .bloc-grid .grid5, #P2 .bloc-grid .grid7, #P2 .bloc-grid .grid11, #P2 .bloc-grid .grid17 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  #P2 .bloc-grid .grid5 p, #P2 .bloc-grid .grid7 p, #P2 .bloc-grid .grid11 p, #P2 .bloc-grid .grid17 p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.5;
    text-align: center;
  }
  #P2 .P2cta {
    padding: 2rem 1rem 1.5rem;
  }
  #P2 .P2-bloc-gris {
    height: auto;
    padding: 4rem 2rem;
    flex-direction: column;
  }
  #P2 .P2-bloc-gris h4 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-align: center;
    margin-bottom: 3rem;
  }
  #P2 .P2-bloc-gris .P2-separateur {
    display: none;
  }
  #P2 .section-flip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 2rem;
  }
  #P2 .section-flip .flip-card {
    width: clamp(12rem, 40vw, 18rem);
    height: 22rem;
  }
  #P2 .section-flip .flip-card-verso h2 {
    font-size: 1.1rem;
    margin: 1rem;
  }
  #P2 .section-flip .flip-card-verso p {
    margin: 1rem;
  }
  #P2 .textes-occasion {
    margin: 3rem 3rem;
  }
  #P2 .textes-occasion h4 {
    margin: 2rem 1rem;
    text-align: center;
  }
  #P2 .textes-occasion ul, #P2 .textes-occasion p {
    width: 100%;
    margin: 1rem;
  }
  #P2 .texte-mont-or {
    flex-direction: column;
    align-items: center;
  }
  #P2 .texte-mont-or div {
    margin: 1.5rem;
  }
  #P2 .texte-mont-or img {
    width: 100%;
    max-height: 28rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #P3 {
    --img-width: clamp(14rem, 38vw, 22rem);
    --gap-bloc: 5%;
    --section-margin: 5rem auto;
    --wrapper-max: 95vw;
  }
  #P3 h2 {
    font-size: 1.3rem;
  }
  #P3 h3 {
    font-size: 1.2rem;
  }
  #P3 figure img {
    height: clamp(20rem, 80svh, 36rem);
  }
  #P3 .card-one {
    margin: 5rem 3rem;
  }
  #P3 .card-one > img {
    width: clamp(16rem, 50vw, 32rem);
  }
  #P3 .card-one article {
    width: 20rem;
    min-height: 26rem;
    padding: 2rem;
    gap: 1.25rem;
    margin-left: clamp(-10rem, -15vw, -3rem);
  }
  #P3 .bloc-droite-wrapper,
  #P3 .bloc-gauche-wrapper-2,
  #P3 .bloc-droite-wrapper-3,
  #P3 .bloc-gauche-wrapper-4 {
    margin: var(--section-margin);
    max-width: var(--wrapper-max);
  }
  #P3 .bloc-droite-wrapper::before,
  #P3 .bloc-droite-wrapper-3::before {
    width: 65%;
    height: 107%;
  }
  #P3 .bloc-droite-wrapper-3::before {
    top: -20px;
  }
  #P3 .bloc-gauche-wrapper-2::before {
    width: 65%;
    height: 105%;
    top: -1rem;
  }
  #P3 .bloc-gauche-wrapper-4::before {
    width: 65%;
    height: 75%;
    top: -3rem;
  }
  #P3 .bloc-droite,
  #P3 .bloc-gauche-2,
  #P3 .bloc-droite-3,
  #P3 .bloc-gauche-4 {
    width: 90%;
    margin: 8rem auto;
    gap: var(--gap-bloc);
  }
  #P3 .bloc-gauche-wrapper-4 .bloc-gauche-4 img {
    aspect-ratio: 5/6;
  }
  #P3 .bloc-gauche-wrapper-4 .P3cta2 {
    padding: 2rem 1rem 1.5rem;
  }
  #P3 .separateur1,
  #P3 .separateur3 {
    height: 2.5rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P4 figure img {
    max-height: 80svh;
  }
  #P4 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P4 figure figcaption h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }
  #P4 h2 {
    margin: 2rem;
    text-align: center;
  }
  #P4 .P4-texte-presentation {
    width: 80%;
    padding: 3rem 3rem 5rem;
  }
  #P4 .trois-articles {
    flex-direction: column;
    align-items: center;
  }
  #P4 .trois-articles .P4-separateur1 {
    display: none;
  }
  #P4 .trois-articles .bloc {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  #P4 .trois-articles .bloc article {
    max-width: 22rem;
  }
  #P4 .trois-articles .bloc article img {
    height: 35vh;
  }
  #P4 .P4cta1 {
    padding: 2rem 1rem 1.5rem;
  }
  #P4 .bloc-gris {
    height: auto;
    padding: 2rem;
  }
  #P4 .bloc-gris .bloc-texte-beige {
    margin: 1rem;
    padding: 2rem;
  }
  #P4 .trois-img {
    flex-wrap: wrap;
    height: auto;
    margin: 3rem 2rem;
    gap: 2rem;
  }
  #P4 .trois-img img {
    height: 32vh;
    width: clamp(14rem, 40vw, 22rem);
  }
  #P4 .bloc-beige {
    flex-direction: column;
    height: auto;
    align-items: center;
  }
  #P4 .bloc-beige img {
    width: clamp(18rem, 65vw, 36rem);
    height: auto;
    max-height: 50vh;
    padding: 2rem;
    margin-top: 0;
  }
  #P4 .bloc-beige article {
    margin: 2rem;
  }
  #P4 .bloc-beige article ul {
    list-style: none;
  }
  #P4 .deux-card {
    height: auto;
    flex-wrap: wrap;
    padding: 3rem 0;
    gap: 4rem;
  }
  #P4 .deux-card img {
    width: clamp(14rem, 40vw, 22rem);
    height: 38vh;
  }
  #P4 .deux-card .cadre-haut {
    width: clamp(14rem, 40vw, 22rem);
    height: 38vh;
    transform: translate(clamp(10rem, 20vw, 14rem), 1.5rem);
  }
  #P4 .deux-card .cadre-bas {
    width: clamp(14rem, 40vw, 22rem);
    height: 38vh;
    transform: translate(clamp(-11rem, -20vw, -14rem), -1.5rem);
  }
  #P4 .redirection {
    margin: 4rem 2rem;
  }
  #P4 .P4cta2 {
    padding: 2rem 1rem 1.5rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P5 figure img {
    height: 80vh;
  }
  #P5 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P5 article h3, #P5 article h4, #P5 article p, #P5 article ul {
    margin: 2.5rem 4rem;
  }
  #P5 article img {
    height: 38vh;
  }
  #P5 .P5cta1 {
    padding: 2rem 1rem 1.5rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P6 .hero-contact {
    height: auto;
  }
  #P6 .hero-contact img {
    height: 65vh;
  }
  #P6 .questions {
    margin: 8rem 0;
  }
  #P6 .questions h1 {
    font-size: 2.4rem;
    margin: 3rem;
    text-align: center;
  }
  #P6 .questions p {
    text-align: center;
    margin: 1rem 4rem 2rem;
  }
  #P6 .fond-gris {
    height: auto;
    padding: 2rem;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
  }
  #P6 .fond-gris .card-contact1 {
    position: relative;
    width: clamp(18rem, 40vw, 34rem);
    height: auto;
    margin-left: -170px;
  }
  #P6 .fond-gris .card-contact1 form {
    margin: 1.5rem;
  }
  #P6 .fond-gris .card-contact1 form #message {
    width: 100%;
    height: 220px;
  }
  #P6 .fond-gris .card-contact2 {
    position: relative;
    width: 310px;
    height: auto;
    top: 5px;
    left: -154px;
    margin-top: 0;
    padding: 2.5rem;
  }
  #P6 .fond-gris .card-contact2 h2 {
    font-size: 1.5rem;
    margin: 1.5rem;
  }
  #P6 .fond-gris .card-contact2 p {
    margin: 0.5rem;
  }
  #P6 .plan h2 {
    margin: 2rem 3rem !important;
    font-size: 1.5rem;
  }
  #P6 .plan h3 {
    text-align: center;
    margin: 2rem;
    font-size: 1.3rem;
  }
  #P6 .plan p {
    text-align: center;
    margin: 1.5rem;
  }
  #P6 .acces ul {
    text-align: start;
  }
  #P6 .commandes,
  #P6 .acces {
    margin: 3rem 4rem;
    text-align: start;
  }
}
/* vars.scss */
body {
  overflow-x: clip;
}

#mentions {
  height: auto;
  padding-top: 100px; /* conservé */
}

#mentions h1, #mentions h2 {
  margin: 100px 150px; /* conservé pour desktop */
}

#mentions h1 {
  font-size: 1.75rem;
}

#mentions h2 {
  font-size: 1rem;
}

#mentions article {
  text-align: justify;
  margin: 80px 150px; /* conservé pour desktop */
}

#mentions .mot-couleur {
  color: rgb(23, 58, 154);
  font-weight: bold;
}

#mentions {
  /* ==== Responsive seulement si l'écran rétrécit ==== */
  /* Tablette paysage et petits laptops */
}

@media (max-width: 1023.98px) {
  #mentions h1, #mentions h2 {
    margin: 80px 60px;
  }
  #mentions article {
    margin: 60px 60px;
  }
}
#mentions {
  /* Tablette portrait / grands mobiles */
}

@media (max-width: 767.98px) {
  #mentions h1, #mentions h2 {
    margin: 60px 24px;
  }
  #mentions article {
    margin: 40px 24px;
  }
}
#mentions {
  /* Très petits mobiles */
}

@media (max-width: 399.98px) {
  #mentions h1, #mentions h2 {
    margin: 48px 16px;
  }
  #mentions article {
    margin: 32px 16px;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  .page404 {
    flex-direction: column;
    text-align: center;
  }
  .page404 > img {
    width: 100%;
    max-width: 20rem;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  #P1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #P1 figure img {
    height: 75svh;
  }
  #P1 figure figcaption {
    top: clamp(21rem, 35vh, 25rem);
  }
  #P1 figure figcaption > h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }
  #P1 figure figcaption > p {
    font-size: clamp(1.4rem, 2vw + 0.5rem, 1.7rem);
  }
  #P1 .trois-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2.5rem;
    height: auto;
    justify-content: center;
    align-items: center;
    max-width: 15.5rem;
    padding: 2rem 0;
  }
  #P1 .trois-card div {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex: 1 1 8.5rem;
    max-width: 12.5rem;
  }
  #P1 .trois-card div img {
    width: 100%;
    aspect-ratio: 135/153;
    width: 10rem;
    height: 10rem;
    -o-object-fit: cover;
       object-fit: cover;
    transform: translate(0.5625rem, -1rem);
  }
  #P1 .trois-card div .btn-link {
    height: 1.625rem;
    width: 6.3125rem;
    font-size: 1rem;
    padding: 20px;
    border-radius: 2px;
  }
  #P1 .trois-card .cadre-gauche {
    width: 9rem;
    height: 9rem;
    margin-top: -18rem;
    margin-left: -1rem;
  }
  #P1 .trois-card .cadre-milieu {
    width: 9rem;
    height: 9rem;
    margin-top: 14rem;
    margin-left: -1rem;
  }
  #P1 .beige {
    padding: 0rem;
    display: flex;
    flex-direction: column;
  }
  #P1 .beige .text1,
  #P1 .beige .text2 {
    width: 100%;
  }
  #P1 .beige .text1 img,
  #P1 .beige .text2 img {
    width: 100%;
    height: 50svh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #P1 .beige .text1 article,
  #P1 .beige .text2 article {
    width: 100%;
    padding: 3rem;
  }
  #P1 .conseils .deux-articles {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin: 0;
  }
  #P1 .conseils .deux-articles .article-haut div {
    padding-top: 14.25rem;
    margin-top: 3rem;
    margin-left: 0rem;
  }
  #P1 .conseils .deux-articles .article-haut div h3 {
    margin: 2rem 0rem 8rem 0rem;
  }
  #P1 .conseils .deux-articles .article-haut div p {
    margin: 0rem;
    width: 100%;
    text-align: start;
  }
  #P1 .conseils .deux-articles .article-haut div .is-visible ul {
    margin-top: -2rem;
    margin-bottom: -8rem;
  }
  #P1 .conseils .deux-articles .article-haut div .is-visible p {
    width: 100%;
  }
  #P1 .conseils .deux-articles .article-bas div {
    padding-top: 1.25rem;
    margin-top: -3rem;
    margin-left: 0rem;
  }
  #P1 .conseils .deux-articles .article-bas div .btn-link {
    margin-top: -6.125rem;
  }
  #P1 .conseils .deux-articles .article-bas img {
    margin-top: 2rem;
  }
  #P1 .conseils .deux-articles .article-bas .is-visible ul {
    margin-top: -2rem;
    margin-bottom: -8rem;
  }
  #P1 .conseils .deux-articles .article-bas .is-visible h3 {
    margin: 2rem 0rem -3rem 0rem;
  }
  #P1 .conseils .deux-articles .article-bas .is-visible .btn-link {
    margin-top: -23rem;
  }
  #P1 .conseils .deux-articles .article-haut,
  #P1 .conseils .deux-articles .article-bas {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    height: auto;
  }
  #P1 .conseils .deux-articles .article-haut img,
  #P1 .conseils .deux-articles .article-bas img {
    width: 100%;
    max-width: 45vh;
    height: 39svh;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 0rem;
  }
  #P1 .conseils .deux-articles .article-haut div,
  #P1 .conseils .deux-articles .article-bas div {
    width: 17rem;
    min-height: 41rem;
    padding-top: 0rem;
  }
  #P1 .conseils .deux-articles .article-haut div p,
  #P1 .conseils .deux-articles .article-bas div p {
    width: 100%;
    transform: translate(0, -7.875rem);
  }
  #P1 .conseils .deux-articles .is-visible ul {
    font-size: 1.2rem;
  }
  #P1 .gris {
    padding-bottom: 3rem;
  }
  #P1 .gris p {
    margin: 1rem 2rem;
  }
  #P1 .gris ul {
    margin: 0.625rem 2rem;
  }
  #P1 .reseaux-sociaux {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #P1 .reseaux {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0rem;
  }
  #P1 .reseaux div {
    height: 60svh;
    width: 35svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  #P1 .reseaux div img {
    width: 100%;
    max-width: 45svh;
    -o-object-position: 10% -20%;
       object-position: 10% -20%;
    height: 50svh;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 0.7rem;
  }
  #P1 .reseaux div p {
    margin: 1rem;
    font-size: 1rem;
    color: black;
    text-align: center;
    font-family: "IM Fell DW Pica", serif;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  #P2 figure img {
    height: 75svh;
  }
  #P2 figure figcaption {
    top: clamp(17rem, 35vh, 25rem);
    margin: 1rem;
  }
  #P2 figure figcaption h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }
  #P2 h2 {
    margin: 4rem 2rem;
    text-align: center;
  }
  #P2 .deux-articles {
    margin: 3rem 2rem;
  }
  #P2 .deux-articles h4 {
    margin: 3rem 0rem;
    text-align: center;
  }
  #P2 .listes {
    display: flex;
    flex-direction: column-reverse;
  }
  #P2 .listes img {
    padding: 2rem;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #P2 .listes .liste-chez-nous {
    margin: 1rem;
  }
  #P2 .listes .liste-chez-nous .liste-proposition {
    margin: 1rem;
  }
  #P2 .liste-fromages {
    margin: 0;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #P2 .liste-fromages h4 {
    margin: 2rem 3rem;
    text-align: center;
  }
  #P2 .liste-fromages img {
    height: auto;
    width: 100%;
    max-height: 16rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #P2 {
    /* ================= GRID ADAPTÉ MOBILE ================= */
  }
  #P2 .bloc-grid {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 0.75rem;
    padding: 1.25rem;
    justify-content: stretch;
    align-items: stretch;
  }
  #P2 .bloc-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  #P2 .bloc-grid .grid1, #P2 .bloc-grid .grid2, #P2 .bloc-grid .grid3, #P2 .bloc-grid .grid4, #P2 .bloc-grid .grid5, #P2 .bloc-grid .grid6, #P2 .bloc-grid .grid7, #P2 .bloc-grid .grid8,
  #P2 .bloc-grid .grid9, #P2 .bloc-grid .grid10, #P2 .bloc-grid .grid11, #P2 .bloc-grid .grid12, #P2 .bloc-grid .grid13, #P2 .bloc-grid .grid14, #P2 .bloc-grid .grid15,
  #P2 .bloc-grid .grid16, #P2 .bloc-grid .grid17, #P2 .bloc-grid .grid18, #P2 .bloc-grid .grid19, #P2 .bloc-grid .grid20, #P2 .bloc-grid .grid21 {
    position: relative;
    overflow: hidden;
  }
  #P2 .bloc-grid .grid1 img, #P2 .bloc-grid .grid2 img, #P2 .bloc-grid .grid3 img, #P2 .bloc-grid .grid4 img, #P2 .bloc-grid .grid5 img, #P2 .bloc-grid .grid6 img, #P2 .bloc-grid .grid7 img, #P2 .bloc-grid .grid8 img,
  #P2 .bloc-grid .grid9 img, #P2 .bloc-grid .grid10 img, #P2 .bloc-grid .grid11 img, #P2 .bloc-grid .grid12 img, #P2 .bloc-grid .grid13 img, #P2 .bloc-grid .grid14 img, #P2 .bloc-grid .grid15 img,
  #P2 .bloc-grid .grid16 img, #P2 .bloc-grid .grid17 img, #P2 .bloc-grid .grid18 img, #P2 .bloc-grid .grid19 img, #P2 .bloc-grid .grid20 img, #P2 .bloc-grid .grid21 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  #P2 .bloc-grid .grid5, #P2 .bloc-grid .grid7, #P2 .bloc-grid .grid11, #P2 .bloc-grid .grid17 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  #P2 .bloc-grid .grid5 p, #P2 .bloc-grid .grid7 p, #P2 .bloc-grid .grid11 p, #P2 .bloc-grid .grid17 p {
    font-size: clamp(1rem, 3.6vw, 1.1rem);
    line-height: 1.5;
    text-align: center;
  }
  #P2 .bloc-grid .grid6, #P2 .bloc-grid .grid10, #P2 .bloc-grid .grid15, #P2 .bloc-grid .grid20 {
    min-height: 5rem;
  }
  #P2 {
    /* ================= CTA ================= */
  }
  #P2 .P2cta {
    padding: 1.5rem 1rem 1rem;
  }
  #P2 .P2cta__ligne {
    min-width: 2rem;
  }
  #P2 .P2cta a {
    font-size: 1rem;
    min-width: 120px;
  }
  #P2 {
    /* ================= BLOC GRIS ================= */
  }
  #P2 .P2-bloc-gris {
    height: auto;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #P2 .P2-bloc-gris h4 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    text-align: center;
    margin-bottom: 2rem;
  }
  #P2 .P2-bloc-gris .P2-separateur {
    display: none;
  }
  #P2 {
    /* ================= FLIP CARDS ================= */
  }
  #P2 .section-flip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto;
    width: min(100%, 22rem);
  }
  #P2 .section-flip .flip-card {
    width: 45%;
    height: 16rem;
  }
  #P2 .section-flip .flip-card .flip-card-verso p {
    font-size: 0.8rem;
    margin: 0.5rem;
  }
  #P2 .section-flip .flip-card .flip-card-verso h2 {
    font-size: 0.9rem;
    margin: 0.8rem;
  }
  #P2 {
    /* ================= TEXTES ================= */
  }
  #P2 .textes-occasion {
    margin: 1rem;
  }
  #P2 .textes-occasion h4 {
    margin: 2rem;
    text-align: center;
  }
  #P2 .textes-occasion ul, #P2 .textes-occasion p {
    margin: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 1rem;
  }
  #P2 .texte-mont-or {
    display: flex;
    flex-direction: column;
  }
  #P2 .texte-mont-or div {
    margin: 1rem;
  }
  #P2 .texte-mont-or img {
    width: 100%;
    height: auto;
    max-height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  #P3 {
    --beige-cadre: #c6ad8f;
    --cadre-border: 0.125rem solid var(--beige-cadre);
    --rayon: 0.3125rem;
    --section-margin: 3rem auto;
    --wrapper-max: 100%;
  }
  #P3 figure img {
    height: clamp(16rem, 55svh, 26rem);
  }
  #P3 figure figcaption {
    top: auto;
    bottom: 2rem;
    margin: 1.5rem;
  }
  #P3 .card-one {
    flex-direction: column;
    margin: 2rem;
    align-items: stretch;
  }
  #P3 .card-one > img {
    width: 100%;
    height: 18rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: var(--rayon) var(--rayon) 0 0;
  }
  #P3 .card-one article {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    border-radius: 0 0 var(--rayon) var(--rayon);
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
    align-items: flex-start;
    z-index: auto;
  }
  #P3 .bloc-droite-wrapper,
  #P3 .bloc-gauche-wrapper-2,
  #P3 .bloc-droite-wrapper-3,
  #P3 .bloc-gauche-wrapper-4 {
    max-width: var(--wrapper-max);
    margin: var(--section-margin);
    padding: 0 1rem;
  }
  #P3 .bloc-droite-wrapper::before,
  #P3 .bloc-droite-wrapper-3::before {
    top: auto;
    bottom: 0;
    left: 9px;
    width: 90%;
    height: 90%;
  }
  #P3 .bloc-gauche-wrapper-2::before,
  #P3 .bloc-gauche-wrapper-4::before {
    top: auto;
    bottom: 0;
    right: 0;
    left: 9px;
    width: 90%;
    height: 90%;
  }
  #P3 .bloc-droite,
  #P3 .bloc-gauche-2,
  #P3 .bloc-droite-3,
  #P3 .bloc-gauche-4 {
    display: flex !important;
    flex-direction: column !important;
    width: 95%;
    margin: 5rem auto;
    gap: 0;
    position: relative;
    z-index: 2;
  }
  #P3 .bloc-droite img,
  #P3 .bloc-gauche-2 img,
  #P3 .bloc-droite-3 img,
  #P3 .bloc-gauche-4 img {
    width: 100%;
    aspect-ratio: 4/3;
  }
  #P3 .bloc-droite article,
  #P3 .bloc-gauche-2 article,
  #P3 .bloc-droite-3 article,
  #P3 .bloc-gauche-4 article {
    width: 100%;
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
  }
  #P3 .bloc-droite article,
  #P3 .bloc-droite-3 article {
    order: 2;
  }
  #P3 .bloc-droite img,
  #P3 .bloc-droite-3 img {
    order: 1;
    margin-top: 0 !important;
  }
  #P3 .liste-charcuterie {
    gap: 0.6rem;
  }
  #P3 .bloc-gauche-wrapper-4 .P3cta2 {
    padding: 1.5rem 1rem 1rem;
  }
  #P3 .bloc-gauche-wrapper-4 .P3cta2__ligne {
    min-width: 2rem;
  }
  #P3 .bloc-gauche-wrapper-4 .P3cta2 a {
    font-size: 1rem;
    min-width: 120px;
  }
  #P3 .separateur1,
  #P3 .separateur3 {
    height: 1rem;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  #P4 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #P4 figure img {
    height: 75svh;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #P4 figure figcaption {
    top: clamp(21rem, 35vh, 25rem);
    margin: 1rem;
  }
  #P4 figure figcaption h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }
  #P4 h2 {
    margin: 1rem;
    text-align: center;
  }
  #P4 .P4-texte-presentation {
    padding: 3rem 1rem 4rem;
    width: 100%;
    text-align: start;
  }
  #P4 .trois-articles {
    flex-direction: column;
  }
  #P4 .trois-articles .P4-separateur1 {
    position: relative;
    top: 50rem;
    transform: translate(0px, 3px);
  }
  #P4 .trois-articles .bloc {
    flex-direction: column;
    gap: 2rem;
  }
  #P4 .P4cta1 {
    padding: 1.5rem 1rem 1rem;
  }
  #P4 .P4cta1__ligne {
    min-width: 2rem;
  }
  #P4 .P4cta1 a {
    font-size: 1rem;
    min-width: 120px;
  }
  #P4 .bloc-gris {
    height: auto;
    padding: 1.625rem;
  }
  #P4 .bloc-gris .bloc-texte-beige {
    margin: 2px;
    padding: 2.125rem;
  }
  #P4 .trois-img {
    flex-direction: column;
    height: auto;
    margin: 3rem;
  }
  #P4 .trois-img img {
    height: 28vh;
    width: 27vh;
  }
  #P4 .bloc-beige {
    flex-direction: column;
    height: auto;
    align-items: center;
    width: 100%;
  }
  #P4 .bloc-beige img {
    width: 46vh;
    height: 55vh;
    padding: 2rem;
  }
  #P4 .bloc-beige article {
    margin: 3rem 1rem;
  }
  #P4 .bloc-beige article ul {
    list-style: none;
    font-size: 1.2rem;
  }
  #P4 .deux-card {
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    height: auto;
    width: 100%;
    gap: 0.5rem;
  }
  #P4 .deux-card img {
    width: 20vh;
    height: 25vh;
    margin: 2rem 0;
  }
  #P4 .deux-card .cadre-haut {
    transform: translate(5rem, -1.5rem);
    height: 24vh;
    width: 20vh;
  }
  #P4 .deux-card .cadre-bas {
    height: 24vh;
    width: 20vh;
    transform: translate(-5rem, 1rem);
  }
  #P4 .redirection {
    margin: 2rem;
    height: auto;
  }
  #P4 .P4cta2 {
    padding: 1.5rem 1rem 1rem;
  }
  #P4 .P4cta2__ligne {
    min-width: 2rem;
  }
  #P4 .P4cta2 a {
    font-size: 1rem;
    min-width: 120px;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  #P5 figure img {
    height: 75svh;
  }
  #P5 figure figcaption {
    top: clamp(21rem, 35vh, 25rem);
    margin: 1rem;
  }
  #P5 article h3, #P5 article h4, #P5 article p, #P5 article ul {
    margin: 2rem;
  }
  #P5 article img {
    height: 30vh;
  }
  #P5 .P5cta1 {
    padding: 1.5rem 1rem 1rem;
  }
  #P5 .P5cta1__ligne {
    min-width: 2rem;
  }
  #P5 .P5cta1 a {
    font-size: 1rem;
    min-width: 120px;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  #P6 h3, #P6 h2 {
    text-align: start;
  }
  #P6 .hero-contact {
    height: 550px;
  }
  #P6 .hero-contact img {
    height: 75svh;
  }
  #P6 .questions {
    margin: 0;
  }
  #P6 .questions h1 {
    margin: 2rem;
    text-align: start;
    font-size: 2rem;
    color: black;
  }
  #P6 .questions p {
    text-align: start;
    margin: 2rem 2rem 2rem;
  }
  #P6 .fond-gris {
    height: 1040px;
  }
  #P6 .fond-gris .card-contact1 {
    width: 240px;
    height: 555px;
    top: 420px;
    margin-left: 0;
    position: absolute;
  }
  #P6 .fond-gris .card-contact1 form {
    margin: 20px;
  }
  #P6 .fond-gris .card-contact1 form #message {
    width: 100%;
  }
  #P6 .fond-gris .card-contact2 {
    height: 345px;
    width: 305px;
    top: 370px;
    left: 15px;
    margin-top: -350px;
    padding: 5px;
    border: none;
  }
  #P6 .fond-gris .card-contact2 h2 {
    font-size: 1.6rem;
    margin: 2rem;
  }
  #P6 .fond-gris .card-contact2 p {
    margin: 0.3rem;
  }
  #P6 .plan h2 {
    margin: 2rem !important;
    font-size: 1.4rem;
  }
  #P6 .plan h3 {
    margin: 2rem;
    font-size: 1.4rem;
  }
  #P6 .plan p {
    text-align: start;
    margin: 2rem;
  }
  #P6 .plan ul {
    text-align: start;
    margin: 2rem;
    list-style: none;
  }
  #P6 .commandes, #P6 .acces {
    margin: 2rem;
  }
  #P6 .commandes p, #P6 .acces p {
    text-align: start;
  }
  #P6 .commandes ul, #P6 .acces ul {
    text-align: start;
  }
}
/* vars.scss */
@media (min-width: 751px) and (max-width: 1023.98px) {
  p {
    font-size: 1.1rem;
  }
}
@media (min-width: 751px) and (max-width: 1023.98px) {
  #mentions h1, #mentions h2 {
    margin: 80px 80px;
  }
  #mentions article {
    margin: 60px 80px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  .page404 {
    flex-direction: column;
    text-align: center;
  }
  .page404 > img {
    width: 80%;
    max-width: 28rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P1 figure img {
    max-height: 80svh;
  }
  #P1 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P1 figure figcaption > h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }
  #P1 figure figcaption > p {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
  }
  #P1 .trois-card {
    gap: 6rem;
    padding: 12svh 4rem;
  }
  #P1 .trois-card div {
    flex: 1 1 14rem;
    max-width: 16rem;
  }
  #P1 .trois-card .cadre-gauche {
    width: 16rem;
    height: 21rem;
    margin-top: -2rem;
    margin-left: -27rem;
  }
  #P1 .trois-card .cadre-gauche2 {
    width: 16rem;
    height: 21rem;
    margin-top: -2rem;
    margin-left: -30rem;
  }
  #P1 .trois-card .cadre-milieu {
    width: 16rem;
    height: 21rem;
    margin-top: -2rem;
    margin-left: 27rem;
  }
  #P1 .beige {
    flex-direction: column;
    align-items: center;
    padding: 4rem 3rem;
  }
  #P1 .beige .text1,
  #P1 .beige .text2 {
    width: 100%;
    max-width: 42rem;
  }
  #P1 .beige .text1 img,
  #P1 .beige .text2 img {
    max-height: 50svh;
  }
  #P1 .beige .text1 article,
  #P1 .beige .text2 article {
    width: 90%;
  }
  #P1 .conseils h3 {
    margin: 2.5rem;
  }
  #P1 .conseils .deux-articles {
    margin: 3rem 2rem;
  }
  #P1 .conseils .deux-articles .article-haut,
  #P1 .conseils .deux-articles .article-bas {
    flex-direction: column;
    height: auto;
  }
  #P1 .conseils .deux-articles .article-haut img,
  #P1 .conseils .deux-articles .article-bas img {
    width: 100%;
    max-width: 36rem;
    height: 38svh;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 0;
    margin-bottom: 2rem;
  }
  #P1 .conseils .deux-articles .article-haut div,
  #P1 .conseils .deux-articles .article-bas div {
    width: 100%;
    min-height: auto;
    padding: 3rem 2rem;
    margin-left: 0;
  }
  #P1 .conseils .deux-articles .article-haut div p,
  #P1 .conseils .deux-articles .article-bas div p {
    width: 100%;
    transform: none;
  }
  #P1 .conseils .deux-articles .article-bas div {
    margin-left: 0;
  }
  #P1 .gris {
    padding-bottom: 6rem;
  }
  #P1 .gris p {
    margin: 1rem 5rem;
  }
  #P1 .reseaux-sociaux {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  #P1 .reseaux {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 0;
  }
  #P1 .reseaux div {
    height: 42svh;
    width: clamp(18rem, 40vw, 26rem);
    margin-top: -4rem;
  }
  #P1 .reseaux div img {
    max-width: 100%;
    -o-object-position: 10% 15%;
       object-position: 10% 15%;
    height: 30svh;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P2 figure img {
    max-height: 80svh;
  }
  #P2 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P2 figure figcaption h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }
  #P2 h2 {
    margin: 3rem 3rem;
    text-align: center;
  }
  #P2 .deux-articles {
    margin: 3rem 3rem;
  }
  #P2 .deux-articles h4 {
    margin: 2.5rem 2rem;
    text-align: center;
  }
  #P2 .listes {
    flex-direction: column-reverse;
    align-items: center;
  }
  #P2 .listes img {
    padding: 2rem;
    width: 100%;
    max-width: 36rem;
    height: auto;
  }
  #P2 .listes .liste-chez-nous {
    margin: 1rem 2rem;
  }
  #P2 .listes .liste-chez-nous .liste-proposition {
    margin: 1rem 2rem;
  }
  #P2 .liste-fromages {
    flex-direction: column;
    margin: 3rem 3rem;
  }
  #P2 .liste-fromages img {
    max-height: 20rem;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #P2 .liste-fromages h4 {
    margin: 1.5rem 1rem;
    text-align: center;
  }
  #P2 .bloc-grid {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 0.75rem;
    padding: 1.5rem;
  }
  #P2 .bloc-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  #P2 .bloc-grid .grid1, #P2 .bloc-grid .grid2, #P2 .bloc-grid .grid3, #P2 .bloc-grid .grid4, #P2 .bloc-grid .grid5, #P2 .bloc-grid .grid6, #P2 .bloc-grid .grid7, #P2 .bloc-grid .grid8,
  #P2 .bloc-grid .grid9, #P2 .bloc-grid .grid10, #P2 .bloc-grid .grid11, #P2 .bloc-grid .grid12, #P2 .bloc-grid .grid13, #P2 .bloc-grid .grid14, #P2 .bloc-grid .grid15,
  #P2 .bloc-grid .grid16, #P2 .bloc-grid .grid17, #P2 .bloc-grid .grid18, #P2 .bloc-grid .grid19, #P2 .bloc-grid .grid20, #P2 .bloc-grid .grid21 {
    position: relative;
    overflow: hidden;
    min-height: 10rem;
  }
  #P2 .bloc-grid .grid1 img, #P2 .bloc-grid .grid2 img, #P2 .bloc-grid .grid3 img, #P2 .bloc-grid .grid4 img, #P2 .bloc-grid .grid5 img, #P2 .bloc-grid .grid6 img, #P2 .bloc-grid .grid7 img, #P2 .bloc-grid .grid8 img,
  #P2 .bloc-grid .grid9 img, #P2 .bloc-grid .grid10 img, #P2 .bloc-grid .grid11 img, #P2 .bloc-grid .grid12 img, #P2 .bloc-grid .grid13 img, #P2 .bloc-grid .grid14 img, #P2 .bloc-grid .grid15 img,
  #P2 .bloc-grid .grid16 img, #P2 .bloc-grid .grid17 img, #P2 .bloc-grid .grid18 img, #P2 .bloc-grid .grid19 img, #P2 .bloc-grid .grid20 img, #P2 .bloc-grid .grid21 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  #P2 .bloc-grid .grid5, #P2 .bloc-grid .grid7, #P2 .bloc-grid .grid11, #P2 .bloc-grid .grid17 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  #P2 .bloc-grid .grid5 p, #P2 .bloc-grid .grid7 p, #P2 .bloc-grid .grid11 p, #P2 .bloc-grid .grid17 p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.5;
    text-align: center;
  }
  #P2 .P2cta {
    padding: 2rem 1rem 1.5rem;
  }
  #P2 .P2-bloc-gris {
    height: auto;
    padding: 4rem 2rem;
    flex-direction: column;
  }
  #P2 .P2-bloc-gris h4 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-align: center;
    margin-bottom: 3rem;
  }
  #P2 .P2-bloc-gris .P2-separateur {
    display: none;
  }
  #P2 .section-flip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 2rem;
  }
  #P2 .section-flip .flip-card {
    width: clamp(12rem, 40vw, 18rem);
    height: 22rem;
  }
  #P2 .section-flip .flip-card-verso h2 {
    font-size: 1.1rem;
    margin: 1rem;
  }
  #P2 .section-flip .flip-card-verso p {
    margin: 1rem;
  }
  #P2 .textes-occasion {
    margin: 3rem 3rem;
  }
  #P2 .textes-occasion h4 {
    margin: 2rem 1rem;
    text-align: center;
  }
  #P2 .textes-occasion ul, #P2 .textes-occasion p {
    width: 100%;
    margin: 1rem;
  }
  #P2 .texte-mont-or {
    flex-direction: column;
    align-items: center;
  }
  #P2 .texte-mont-or div {
    margin: 1.5rem;
  }
  #P2 .texte-mont-or img {
    width: 100%;
    max-height: 28rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #P3 {
    --img-width: clamp(14rem, 38vw, 22rem);
    --gap-bloc: 5%;
    --section-margin: 5rem auto;
    --wrapper-max: 95vw;
  }
  #P3 h2 {
    font-size: 1.3rem;
  }
  #P3 h3 {
    font-size: 1.2rem;
  }
  #P3 figure img {
    height: clamp(20rem, 80svh, 36rem);
  }
  #P3 .card-one {
    margin: 5rem 3rem;
  }
  #P3 .card-one > img {
    width: clamp(16rem, 50vw, 32rem);
  }
  #P3 .card-one article {
    width: 20rem;
    min-height: 26rem;
    padding: 2rem;
    gap: 1.25rem;
    margin-left: clamp(-10rem, -15vw, -3rem);
  }
  #P3 .bloc-droite-wrapper,
  #P3 .bloc-gauche-wrapper-2,
  #P3 .bloc-droite-wrapper-3,
  #P3 .bloc-gauche-wrapper-4 {
    margin: var(--section-margin);
    max-width: var(--wrapper-max);
  }
  #P3 .bloc-droite-wrapper::before,
  #P3 .bloc-droite-wrapper-3::before {
    width: 65%;
    height: 107%;
  }
  #P3 .bloc-droite-wrapper-3::before {
    top: -20px;
  }
  #P3 .bloc-gauche-wrapper-2::before {
    width: 65%;
    height: 105%;
    top: -1rem;
  }
  #P3 .bloc-gauche-wrapper-4::before {
    width: 65%;
    height: 75%;
    top: -3rem;
  }
  #P3 .bloc-droite,
  #P3 .bloc-gauche-2,
  #P3 .bloc-droite-3,
  #P3 .bloc-gauche-4 {
    width: 90%;
    margin: 8rem auto;
    gap: var(--gap-bloc);
  }
  #P3 .bloc-gauche-wrapper-4 .bloc-gauche-4 img {
    aspect-ratio: 5/6;
  }
  #P3 .bloc-gauche-wrapper-4 .P3cta2 {
    padding: 2rem 1rem 1.5rem;
  }
  #P3 .separateur1,
  #P3 .separateur3 {
    height: 2.5rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P4 figure img {
    max-height: 80svh;
  }
  #P4 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P4 figure figcaption h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }
  #P4 h2 {
    margin: 2rem;
    text-align: center;
  }
  #P4 .P4-texte-presentation {
    width: 80%;
    padding: 3rem 3rem 5rem;
  }
  #P4 .trois-articles {
    flex-direction: column;
    align-items: center;
  }
  #P4 .trois-articles .P4-separateur1 {
    display: none;
  }
  #P4 .trois-articles .bloc {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  #P4 .trois-articles .bloc article {
    max-width: 22rem;
  }
  #P4 .trois-articles .bloc article img {
    height: 35vh;
  }
  #P4 .P4cta1 {
    padding: 2rem 1rem 1.5rem;
  }
  #P4 .bloc-gris {
    height: auto;
    padding: 2rem;
  }
  #P4 .bloc-gris .bloc-texte-beige {
    margin: 1rem;
    padding: 2rem;
  }
  #P4 .trois-img {
    flex-wrap: wrap;
    height: auto;
    margin: 3rem 2rem;
    gap: 2rem;
  }
  #P4 .trois-img img {
    height: 32vh;
    width: clamp(14rem, 40vw, 22rem);
  }
  #P4 .bloc-beige {
    flex-direction: column;
    height: auto;
    align-items: center;
  }
  #P4 .bloc-beige img {
    width: clamp(18rem, 65vw, 36rem);
    height: auto;
    max-height: 50vh;
    padding: 2rem;
    margin-top: 0;
  }
  #P4 .bloc-beige article {
    margin: 2rem;
  }
  #P4 .bloc-beige article ul {
    list-style: none;
  }
  #P4 .deux-card {
    height: auto;
    flex-wrap: wrap;
    padding: 3rem 0;
    gap: 4rem;
  }
  #P4 .deux-card img {
    width: clamp(14rem, 40vw, 22rem);
    height: 38vh;
  }
  #P4 .deux-card .cadre-haut {
    width: clamp(14rem, 40vw, 22rem);
    height: 38vh;
    transform: translate(clamp(10rem, 20vw, 14rem), 1.5rem);
  }
  #P4 .deux-card .cadre-bas {
    width: clamp(14rem, 40vw, 22rem);
    height: 38vh;
    transform: translate(clamp(-11rem, -20vw, -14rem), -1.5rem);
  }
  #P4 .redirection {
    margin: 4rem 2rem;
  }
  #P4 .P4cta2 {
    padding: 2rem 1rem 1.5rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P5 figure img {
    height: 80vh;
  }
  #P5 figure figcaption {
    top: clamp(18rem, 38vh, 26rem);
    margin: 2rem;
  }
  #P5 article h3, #P5 article h4, #P5 article p, #P5 article ul {
    margin: 2.5rem 4rem;
  }
  #P5 article img {
    height: 38vh;
  }
  #P5 .P5cta1 {
    padding: 2rem 1rem 1.5rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023.98px) {
  #P6 .hero-contact {
    height: auto;
  }
  #P6 .hero-contact img {
    height: 65vh;
  }
  #P6 .questions {
    margin: 8rem 0;
  }
  #P6 .questions h1 {
    font-size: 2.4rem;
    margin: 3rem;
    text-align: center;
  }
  #P6 .questions p {
    text-align: center;
    margin: 1rem 4rem 2rem;
  }
  #P6 .fond-gris {
    height: auto;
    padding: 2rem;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
  }
  #P6 .fond-gris .card-contact1 {
    position: relative;
    width: clamp(18rem, 40vw, 34rem);
    height: auto;
    margin-left: -170px;
  }
  #P6 .fond-gris .card-contact1 form {
    margin: 1.5rem;
  }
  #P6 .fond-gris .card-contact1 form #message {
    width: 100%;
    height: 220px;
  }
  #P6 .fond-gris .card-contact2 {
    position: relative;
    width: 310px;
    height: auto;
    top: 5px;
    left: -154px;
    margin-top: 0;
    padding: 2.5rem;
  }
  #P6 .fond-gris .card-contact2 h2 {
    font-size: 1.5rem;
    margin: 1.5rem;
  }
  #P6 .fond-gris .card-contact2 p {
    margin: 0.5rem;
  }
  #P6 .plan h2 {
    margin: 2rem 3rem !important;
    font-size: 1.5rem;
  }
  #P6 .plan h3 {
    text-align: center;
    margin: 2rem;
    font-size: 1.3rem;
  }
  #P6 .plan p {
    text-align: center;
    margin: 1.5rem;
  }
  #P6 .acces ul {
    text-align: start;
  }
  #P6 .commandes,
  #P6 .acces {
    margin: 3rem 4rem;
    text-align: start;
  }
}/*# sourceMappingURL=style.css.map */