/* ==========================================================================
   Le P'tit Panier — v4 « Terroir, mais classe »
   Éditorial premium : blanc cassé, or, beige, ocre. Aucune scène épinglée —
   le scroll n'est jamais bloqué ; les médias 360° sont en colonnes sticky.
   ========================================================================== */

:root {
  --blanc: #fdfbf6;
  --ivoire: #f7f1e6;
  --beige: #efe5d2;
  --sable: #e4d5b8;
  --or: #b3914f;
  --or-clair: #d8c08c;
  --ocre: #9a6c26;
  --encre: #2b2117;
  --encre-douce: #7c6c57;
  --hairline: rgba(179, 145, 79, 0.38);
  --hairline-soft: rgba(179, 145, 79, 0.22);
  --fonce: #211a11;
  --shadow: 0 24px 70px rgba(43, 33, 23, 0.12);
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

/* L'attribut hidden doit toujours l'emporter sur un display: de la feuille —
   sinon un élément masqué par JS reste visible (piège déjà rencontré sur le
   choix des fromages et la ligne « appareil prêté »). */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

html.cine {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--encre);
  background: var(--blanc);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
  color: var(--encre);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ocre);
}

p {
  margin: 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 10px);
}

.kicker {
  margin: 0 0 18px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ocre);
}

.kicker::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 14px;
  background: var(--hairline);
}

/* --------------------------------------------------------------------------
   Barre de progression
   -------------------------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  transform: scaleX(0);
  transform-origin: left center;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
  padding: 10px clamp(20px, 4.5vw, 70px);
  background: rgba(253, 251, 246, 0.85);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(1.05);
  transition: background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(253, 251, 246, 0.96);
  border-bottom-color: var(--hairline-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  color: var(--encre);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--or);
  transition: right 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--encre);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.lang-switch span,
.lang-switch a {
  padding-bottom: 2px;
  color: var(--encre-douce);
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.lang-switch span[aria-current] {
  color: var(--encre);
  border-bottom-color: var(--hairline);
}

.lang-switch a:hover {
  color: var(--ocre);
  border-bottom-color: var(--ocre);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  background: var(--encre);
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  color: var(--ivoire);
  background: var(--fonce);
}

.button-dark:hover {
  background: var(--ocre);
}

.button-line {
  color: var(--encre);
  border-color: var(--hairline);
  background: transparent;
}

.button-line:hover {
  border-color: var(--ocre);
  color: var(--ocre);
}

.header-cta {
  padding: 11px 22px;
  font-size: 11.5px;
}

.text-button {
  align-self: start;
  padding: 0 0 3px;
  border: none;
  border-bottom: 1px solid var(--hairline);
  background: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--encre);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-button:hover {
  color: var(--ocre);
  border-color: var(--ocre);
}

.text-link {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1px;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--ocre);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
  padding: calc(var(--header-h) + 24px) clamp(20px, 4.5vw, 70px) 90px;
}

.hero-bg {
  position: absolute;
  inset: -12% 0 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  will-change: transform;
}

html.js .hero-bg img {
  animation: hero-zoom 2400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-zoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 58% 52% at 50% 46%, rgba(253, 251, 246, 0.38), transparent 70%),
    linear-gradient(180deg, rgba(253, 251, 246, 0.3), rgba(253, 251, 246, 0.04) 38%, rgba(247, 241, 230, 0.32) 86%, var(--ivoire));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
}

.hero-logo {
  width: clamp(92px, 10vw, 136px);
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 26px rgba(43, 33, 23, 0.18));
}

.hero .kicker::after {
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 52ch;
  margin: 24px auto 0;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--encre);
  text-shadow: 0 1px 18px rgba(253, 251, 246, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.hero-facade {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4.5vw, 64px);
  bottom: clamp(30px, 6vh, 56px);
  width: clamp(150px, 14vw, 210px);
  padding: 10px 10px 12px;
  background: rgba(253, 251, 246, 0.9);
  border: 1px solid var(--hairline-soft);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(43, 33, 23, 0.16);
  transform: rotate(2.5deg);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.hero-facade:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 24px 54px rgba(43, 33, 23, 0.2);
}

.hero-facade img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 7px;
}

.hero-facade span {
  display: block;
  margin-top: 9px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--encre-douce);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: block;
  width: 1px;
  height: 52px;
  overflow: hidden;
}

.hero-scroll span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--ocre));
  animation: scroll-cue 2200ms cubic-bezier(0.6, 0, 0.3, 1) infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

@media (prefers-reduced-motion: reduce) {
  html.js .hero-bg img,
  .hero-scroll span {
    animation: none;
  }
}

@media (max-width: 1023px) {
  .hero-facade,
  .hero-scroll {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Sections — gabarit
   -------------------------------------------------------------------------- */

.section {
  padding: clamp(60px, 7.5vw, 104px) clamp(20px, 4.5vw, 70px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto clamp(46px, 6vw, 80px);
  text-align: center;
}

.section-heading .kicker::after {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.heading-note {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--encre-douce);
}

/* --------------------------------------------------------------------------
   Scènes produits — sections éditoriales compactes. La vidéo (frames
   scrubbées) vit dans un bloc cadré, chaque scène a sa forme et son fond ;
   les bandes se touchent, pas de blanc entre elles. Aucun pin ni sticky.
   -------------------------------------------------------------------------- */

.scene {
  padding: clamp(52px, 6.5vw, 88px) clamp(20px, 4.5vw, 70px);
}

.scene-viewport {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  max-width: 1220px;
  margin: 0 auto;
}

.scene-right .scene-media {
  order: 2;
}

/* fonds : chaque scène a sa bande, elles s'enchaînent sans blanc */
#fromagerie {
  background: var(--ivoire);
}

.scene-dark {
  background:
    radial-gradient(ellipse at 18% 12%, rgba(154, 108, 38, 0.28), transparent 55%),
    var(--fonce);
}

#planches {
  background: var(--beige);
}

/* Bloc média cadré — plus petit que l'écran, donc toujours net */
.scene-media {
  position: relative;
  height: clamp(400px, 56vh, 600px);
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  box-shadow: 0 26px 70px rgba(43, 33, 23, 0.18);
}

/* une forme par scène */
#fromagerie .scene-media {
  border-radius: 300px 300px var(--radius) var(--radius);
}

#fondue .scene-media {
  border-radius: calc(var(--radius) * 1.6);
  border-color: rgba(216, 192, 140, 0.35);
}

#planches .scene-media {
  border-radius: 24px 150px 24px 150px;
}

.scene-media > img,
.scene-media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-media > img {
  object-fit: cover;
}

.scene-copy {
  max-width: 560px;
  line-height: 1.6;
}

/* Scène sombre : mêmes encres, inversées dans la palette de la maison */
.scene-dark .kicker {
  color: var(--or-clair);
}

.scene-dark .kicker::after {
  background: rgba(216, 192, 140, 0.45);
}

.scene-dark h2,
.scene-dark .menu-list span {
  color: var(--ivoire);
}

.scene-dark h2 em {
  color: var(--or-clair);
}

.scene-dark .scene-lead,
.scene-dark .menu-list small,
.scene-dark .scene-note {
  color: rgba(247, 241, 230, 0.66);
}

.scene-dark .menu-list i {
  border-bottom-color: rgba(216, 192, 140, 0.35);
}

.scene-dark .scene-note {
  border-left-color: rgba(216, 192, 140, 0.45);
}

.scene-dark .list-title {
  color: var(--or-clair);
}

.scene-copy .kicker {
  margin-bottom: 12px;
}

.scene-copy .kicker::after {
  margin-top: 10px;
}

.scene-copy h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  margin-bottom: 12px;
}

.scene-lead {
  font-size: 15px;
  color: var(--encre-douce);
}

.scene-copy .list-title {
  margin: 18px 0 10px;
}

.scene-note {
  margin-top: 14px;
  padding-left: 16px;
  border-left: 1px solid var(--hairline);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--encre-douce);
}

.scene-copy .button {
  margin-top: 18px;
  padding: 12px 26px;
}

/* Formule intégrée à la scène : détail, prix et réservation directe */

.scene-formula {
  margin-top: 14px;
  padding: 13px 16px 12px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(253, 251, 246, 0.5);
}

.scene-dark .scene-formula {
  background: rgba(247, 241, 230, 0.06);
  border-color: rgba(216, 192, 140, 0.32);
}

.scene-dark .scene-formula h3 {
  color: var(--ivoire);
}

.scene-dark .scene-formula .price em {
  color: var(--or-clair);
}

.scene-dark .scene-formula .price span,
.scene-dark .scene-formula > p {
  color: rgba(247, 241, 230, 0.6);
}

.scene-dark .text-button {
  color: var(--or-clair);
  border-bottom-color: rgba(216, 192, 140, 0.5);
}

.scene-dark .text-button:hover {
  color: var(--ivoire);
  border-bottom-color: var(--ivoire);
}

/* Prix forfaitaire (planches) : pas de mention « / pers. » */
.scene-formula.is-flat .price span {
  letter-spacing: 0.08em;
}

/* Nouveauté dans une liste produit */
.menu-list li.is-new span::after {
  content: "Nouveau";
  display: inline-block;
  margin-left: 9px;
  padding: 2px 8px 1px;
  border-radius: 999px;
  background: var(--ocre);
  color: var(--blanc);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Vidéo intégrée à une carte formule */
.formula-video {
  position: relative;
  margin: 14px 0 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--fonce);
  aspect-ratio: 16 / 9;
}

.formula-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formula-video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(33, 26, 17, 0.15), rgba(33, 26, 17, 0.45));
  transition: background 220ms ease;
}

.formula-video-cover:hover {
  background: rgba(33, 26, 17, 0.5);
}

.formula-video-cover .gallery-video-play {
  width: 52px;
  height: 52px;
}

.formula-video-cover .gallery-video-play::before {
  border-width: 9px 0 9px 15px;
  margin-left: 4px;
}

.formula-video-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 251, 246, 0.95);
}

.formula-video.is-active .formula-video-cover {
  display: none;
}

.scene-formula + .scene-formula {
  margin-top: 10px;
}

.scene-formula header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.scene-formula h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre);
}

.scene-formula .price {
  white-space: nowrap;
}

.scene-formula .price em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  font-weight: 500;
  color: var(--ocre);
}

.scene-formula .price span {
  margin-left: 4px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-douce);
}

.scene-formula > p {
  margin-top: 3px;
  font-size: 13.5px;
  color: var(--encre-douce);
}

.scene-formula .text-button {
  margin-top: 10px;
}

/* Canvas des séquences d'images (frames des vidéos Flow) */

[data-frames] canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 500ms ease;
  z-index: 1;
}

[data-frames].has-frames canvas {
  opacity: 1;
}

[data-frames].has-frames > img {
  opacity: 0;
}

.aside-note {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 1px solid var(--hairline);
  font-size: 14.5px;
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--encre-douce);
}

/* Listes « carte de menu » */

.list-title {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ocre);
  margin: 0 0 18px;
}

.list-title:not(:first-child) {
  margin-top: 40px;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-list span {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  white-space: nowrap;
}

.menu-list i {
  flex: 1;
  border-bottom: 1px dotted var(--hairline);
  transform: translateY(-4px);
}

.menu-list small {
  font-size: 14px;
  color: var(--encre-douce);
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
  text-align: right;
}

.menu-list b {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ocre);
}

.menu-list-stack {
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.menu-list-stack li {
  display: block;
}

.menu-list-stack span {
  display: block;
  font-size: 17.5px;
  white-space: normal;
}

.menu-list-stack small {
  display: block;
  font-size: 13.5px;
  text-align: left;
  font-family: var(--serif);
  font-style: italic;
  color: var(--encre-douce);
}

.menu-list-compact {
  gap: 9px;
}

.menu-list-compact span {
  font-size: 18px;
}

.menu-list-compact small {
  font-size: 14.5px;
}

.menu-list-2col {
  grid-template-columns: 1fr 1fr;
  gap: 13px 30px;
}

.menu-list-compact.menu-list-2col {
  gap: 8px 24px;
}

.menu-list-compact.menu-list-2col li {
  padding-bottom: 7px;
}

.menu-list-2col li {
  border-bottom: 1px dotted var(--hairline-soft);
  padding-bottom: 10px;
}

@media (max-width: 540px) {
  .menu-list-2col {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   La cave
   -------------------------------------------------------------------------- */

.cave-section {
  background: var(--ivoire);
}

.cave-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.cave-intro h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  margin-bottom: 22px;
}

.cave-intro > p {
  color: var(--encre-douce);
}

.cave-figure {
  position: relative;
  margin: 38px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.cave-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  will-change: transform;
}

.cave-lists {
  padding: clamp(28px, 3vw, 46px);
  background: var(--blanc);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   La boutique — grille éditoriale + vidéo pleine largeur
   -------------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(170px, 21vw, 280px);
  gap: clamp(14px, 1.6vw, 20px);
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item.is-wide {
  grid-column: span 2;
}

.gallery-item.is-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 18px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 251, 246, 0.95);
  background: linear-gradient(180deg, transparent, rgba(33, 26, 17, 0.55));
}

.gallery-video {
  max-width: 1180px;
  margin: clamp(14px, 1.6vw, 20px) auto 0;
}

.gallery-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--fonce);
}

.gallery-video-frame iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* Sans src, l'iframe est inerte : la molette/le trackpad ne sont jamais
     captés par son document et le scroll de la page ne bloque plus. */
  pointer-events: none;
}

.gallery-video.is-active .gallery-video-frame iframe {
  pointer-events: auto;
}

.gallery-video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.gallery-video-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 26, 17, 0.12), rgba(33, 26, 17, 0.32));
  transition: background 220ms ease;
}

.gallery-video-cover:hover::after {
  background: rgba(33, 26, 17, 0.4);
}

.gallery-video-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(253, 251, 246, 0.92);
  box-shadow: 0 16px 40px rgba(33, 26, 17, 0.35);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-video-cover:hover .gallery-video-play {
  transform: scale(1.08);
}

.gallery-video-play::before {
  content: "";
  margin-left: 5px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--fonce);
}

.gallery-video.is-active .gallery-video-cover {
  display: none;
}

.gallery-video figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-douce);
}

.video-fallback {
  display: none;
  margin: 10px auto 0;
  font-size: 13px;
  color: var(--ocre);
  border-bottom: 1px solid var(--hairline);
  width: max-content;
}

.gallery-video.is-local-file .gallery-video-frame {
  display: none;
}

.gallery-video.is-local-file .video-fallback {
  display: block;
}

/* --------------------------------------------------------------------------
   À propos
   -------------------------------------------------------------------------- */

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
}

/* PNG détouré, flottant — aucun cadre */
.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(43, 33, 23, 0.22));
}

.about-copy h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  margin-bottom: 22px;
}

.about-copy p:not(.kicker) {
  color: var(--encre-douce);
  max-width: 56ch;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--encre);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
}

.about-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ocre);
  stroke-width: 1.4;
}

.about-instagram:hover {
  color: var(--ocre);
}

/* --------------------------------------------------------------------------
   Les avis
   -------------------------------------------------------------------------- */

.reviews-section {
  background: var(--ivoire);
}

.reviews-score {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: var(--encre-douce);
}

.reviews-stars {
  color: var(--or);
  letter-spacing: 0.12em;
  font-size: 17px;
}

.reviews-score strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--ocre);
}

.reviews-grid {
  columns: 3 300px;
  column-gap: clamp(16px, 2vw, 24px);
  max-width: 1180px;
  margin: 0 auto;
}

.review {
  break-inside: avoid;
  margin: 0 0 clamp(16px, 2vw, 24px);
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--blanc);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
}

.review-stars {
  margin-bottom: 10px;
  color: var(--or);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.review p:not(.review-stars) {
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.5;
  color: var(--encre);
}

.review cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--encre);
}

.review cite span {
  display: block;
  margin-top: 3px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--encre-douce);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 40px);
}

/* --------------------------------------------------------------------------
   Réservation
   -------------------------------------------------------------------------- */

.reservation-section {
  background:
    radial-gradient(ellipse at 12% 8%, rgba(216, 192, 140, 0.22), transparent 50%),
    var(--beige);
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5.5vw, 90px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.reservation-intro h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  margin-bottom: 22px;
}

.reservation-intro > p {
  color: var(--encre-douce);
}

.reservation-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.reservation-steps li {
  position: relative;
  padding-left: 56px;
  counter-increment: step;
  color: var(--encre-douce);
}

.reservation-steps strong {
  color: var(--encre);
  font-weight: 500;
}

.reservation-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--or);
}

.reservation-alt {
  margin-top: 30px;
  font-size: 15px;
}

.reservation-alt a {
  font-weight: 500;
  border-bottom: 1px solid var(--hairline);
}

.reservation-card {
  background: var(--blanc);
  border: 1px solid var(--hairline-soft);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: var(--shadow);
  padding: clamp(26px, 3vw, 42px);
}

/* ---------- réservation en trois étapes ---------- */

.booking {
  display: grid;
  gap: 22px;
}

/* fil d'étapes */

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.booking-steps li {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding-top: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-douce);
  border-top: 2px solid var(--hairline-soft);
  transition: color 220ms ease, border-color 220ms ease;
}

.booking-steps li span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--blanc);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--encre-douce);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.booking-steps li.is-done {
  border-top-color: var(--or);
  color: var(--ocre);
}

.booking-steps li.is-done span {
  background: var(--or-clair);
  border-color: var(--or);
  color: var(--fonce);
}

.booking-steps li.is-current {
  border-top-color: var(--fonce);
  color: var(--encre);
}

.booking-steps li.is-current span {
  background: var(--fonce);
  border-color: var(--fonce);
  color: var(--ivoire);
}

/* corps de l'étape */

.booking-step {
  display: grid;
  gap: 16px;
  animation: step-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .booking-step { animation: none; }
}

.booking-step-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.booking-fields .wide {
  grid-column: 1 / -1;
}

.booking-fields label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--encre-douce);
}

.booking-fields label > span small {
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 300;
}

.booking-fields input,
.booking-fields select,
.booking-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--hairline-soft);
  background: var(--blanc);
  color: var(--encre);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.02em;
  resize: vertical;
}

.booking-fields input:focus-visible,
.booking-fields select:focus-visible,
.booking-fields textarea:focus-visible {
  outline: 1px solid var(--or);
  outline-offset: 1px;
  border-color: var(--or);
}

/* groupes de produits */

.picker-group + .picker-group {
  margin-top: 4px;
}

.picker-legend {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre);
}

.picker-legend small {
  margin-left: 8px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 300;
  color: var(--encre-douce);
}

.picker-row {
  border-bottom: 1px solid var(--hairline-soft);
}

.picker-row:last-child {
  border-bottom: 0;
}

.picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
}

.picker-label {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.picker-label strong {
  font-weight: 400;
  font-size: 15px;
  color: var(--encre);
}

.picker-label span {
  font-size: 12.5px;
  color: var(--encre-douce);
}

/* sélecteur de quantité */

.stepper {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--hairline-soft);
  border-radius: 999px;
  overflow: hidden;
  background: var(--blanc);
}

.stepper-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  color: var(--encre);
  transition: background 160ms ease, color 160ms ease;
}

.stepper-btn:hover {
  background: var(--ivoire);
  color: var(--ocre);
}

.stepper input {
  width: 34px;
  padding: 0;
  border: 0;
  background: none;
  text-align: center;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--encre);
  -moz-appearance: textfield;
  appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper input:focus-visible {
  outline: 1px solid var(--or);
  outline-offset: -1px;
}

/* options d'une formule choisie */

.picker-options {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  padding: 13px 15px 15px;
  border-radius: 12px;
  background: rgba(247, 241, 230, 0.75);
  border: 1px solid var(--hairline-soft);
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.option-row .picker-label strong {
  font-size: 13.5px;
}

.option-row .picker-label span {
  font-size: 12px;
  max-width: 34ch;
}

.option-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--encre);
  cursor: pointer;
}

.option-check input {
  width: auto;
  accent-color: var(--ocre);
}

.option-cheeses-title {
  margin: 0 0 8px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocre);
}

.option-cheeses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
}

.option-hint {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--encre-douce);
}

.picker-toggle {
  padding: 9px 18px;
  border: 1px dashed var(--hairline);
  border-radius: 999px;
  background: none;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocre);
  transition: border-color 180ms ease, background 180ms ease;
}

.picker-toggle:hover {
  border-color: var(--ocre);
  background: rgba(247, 241, 230, 0.7);
}

/* récapitulatif de l'étape 3 */

.recap {
  padding: 15px 17px;
  border-radius: 12px;
  background: rgba(247, 241, 230, 0.75);
  border: 1px solid var(--hairline-soft);
}

.recap:empty {
  display: none;
}

.recap-title {
  margin: 0 0 9px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre);
}

.recap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.recap-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--encre-douce);
}

.recap-list b {
  font-weight: 500;
  color: var(--encre);
  white-space: nowrap;
}

.recap-when {
  margin: 10px 0 0;
  padding-top: 9px;
  border-top: 1px solid var(--hairline-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15.5px;
  color: var(--encre);
}

.step-note {
  margin: 0;
  padding-left: 15px;
  border-left: 2px solid var(--or);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--encre-douce);
}

/* pied du formulaire */

.booking-foot {
  display: grid;
  gap: 14px;
}

.booking-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px 12px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.booking-total span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--encre-douce);
}

.booking-total strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: var(--ocre);
}

.booking-nav {
  display: flex;
  gap: 10px;
}

.booking-nav .button {
  flex: 1;
}

.form-error {
  margin: 0;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(165, 56, 47, 0.09);
  border: 1px solid rgba(165, 56, 47, 0.32);
  color: #a5382f;
  font-size: 14px;
}

.booking-legal {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--encre-douce);
}

.reservation-lead-time {
  margin-top: 22px;
  padding: 11px 16px;
  border-left: 2px solid var(--or);
  background: rgba(253, 251, 246, 0.6);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--encre);
}

.modal-ref {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocre);
}

.modal-note {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--encre-douce);
}

@media (max-width: 560px) {
  .booking-fields,
  .option-cheeses-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps li {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .option-row {
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }
}

/* --------------------------------------------------------------------------
   Infos pratiques
   -------------------------------------------------------------------------- */

.practical-section {
  position: relative;
  background: url("assets/site/infos-bg.jpg") center / cover no-repeat;
}

.practical-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(253, 251, 246, 0.4), transparent 55%),
    rgba(253, 251, 246, 0.82);
}

.practical-section > * {
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(26px, 3vw, 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.info-item {
  padding: 22px clamp(20px, 2.2vw, 28px) 26px;
  background: rgba(253, 251, 246, 0.7);
  border: 1px solid var(--hairline-soft);
  border-top: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.info-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 14.5px;
  color: var(--encre-douce);
}

/* --------------------------------------------------------------------------
   Questions fréquentes
   -------------------------------------------------------------------------- */

.faq-section {
  background: var(--ivoire);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--hairline-soft);
}

.faq-item:first-child {
  border-top: 1px solid var(--hairline-soft);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 20px 46px 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 500;
  color: var(--encre);
  transition: color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--ocre);
}

/* Croix qui pivote en signe moins à l'ouverture */
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 15px;
  height: 1px;
  background: var(--or);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item[open] summary {
  color: var(--ocre);
}

.faq-item p {
  padding: 0 46px 22px 0;
  margin: -4px 0 0;
  font-size: 15.5px;
  color: var(--encre-douce);
  max-width: 68ch;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(60px, 7vw, 100px) clamp(20px, 4.5vw, 70px);
  background: var(--fonce);
  color: rgba(247, 241, 230, 0.78);
  font-weight: 300;
}

.site-footer h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--ivoire);
  margin: 16px 0 10px;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--or-clair);
}

.site-footer p {
  font-size: 14.5px;
  max-width: 34ch;
}

.site-footer address {
  font-style: normal;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-contact a,
.site-footer address a {
  color: rgba(247, 241, 230, 0.9);
  width: max-content;
  border-bottom: 1px solid rgba(216, 192, 140, 0.4);
  padding-bottom: 1px;
  transition: color 180ms ease;
}

.footer-contact a:hover,
.site-footer address a:hover {
  color: var(--or-clair);
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 26, 17, 0.55);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(540px, 100%);
  max-height: 86svh;
  overflow: auto;
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid var(--hairline-soft);
  background: var(--blanc);
  padding: 38px 38px 34px;
}

.modal-panel h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.summary-box {
  display: grid;
  gap: 9px;
  padding: 20px;
  border-radius: 12px;
  background: var(--ivoire);
  border: 1px solid var(--hairline-soft);
  font-size: 14.5px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline-soft);
  background: var(--blanc);
  font-size: 20px;
  color: var(--encre);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Révélations
   -------------------------------------------------------------------------- */

[data-reveal] {
  --reveal-delay: 0ms;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease var(--reveal-delay), transform 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html.js [data-hero-line] {
  opacity: 0;
  translate: 0 24px;
  filter: blur(7px);
}

html.js.hero-in [data-hero-line] {
  opacity: 1;
  translate: none;
  filter: none;
  transition:
    opacity 950ms ease var(--line-delay, 0ms),
    translate 950ms cubic-bezier(0.22, 1, 0.36, 1) var(--line-delay, 0ms),
    filter 950ms ease var(--line-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  html.js [data-hero-line] {
    opacity: 1;
    transform: none;
    translate: none;
    filter: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1260px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav.is-open {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 26px 20px;
    background: rgba(253, 251, 246, 0.98);
    border-bottom: 1px solid var(--hairline-soft);
  }

  .site-nav.is-open a {
    padding: 15px 0;
    border-bottom: 1px solid var(--hairline-soft);
    font-size: 13px;
  }

  .site-nav.is-open a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 880px) {
  .header-phone {
    display: none;
  }

  .site-header {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 19px;
    gap: 8px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 10.5px;
  }

  .scene {
    padding-left: 18px;
    padding-right: 18px;
  }

  .scene-viewport {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .scene-media,
  .scene-right .scene-media {
    order: -1;
    height: clamp(260px, 52vw, 380px);
  }

  #fromagerie .scene-media {
    border-radius: 180px 180px var(--radius) var(--radius);
  }

  #planches .scene-media {
    border-radius: 18px 90px 18px 90px;
  }

  .scene-copy {
    max-width: none;
  }

  .cave-grid,
  .about-section,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(130px, 26vw, 200px);
  }

  .about-photo {
    max-width: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .booking-form,
  .cheese-picker,
  .customer-block {
    grid-template-columns: 1fr;
  }
}
