/* ============================================================
   CROÛTE — Fromagerie Lacanau
   Palette : noir profond · blanc chaud · jaune moutarde
   ============================================================ */

:root {
  --paper: #FDFCF7;
  --paper-2: #F5F0E2;
  --cream: #F1EBD8;
  --ink: #0C0C0C;
  --ink-soft: #1C1C1A;
  --mute: #6B6B65;
  --yellow: #F4C931;
  --yellow-dark: #E5B920;
  --yellow-soft: #FFE688;
  --line: rgba(12, 12, 12, .12);
  --shadow-md: 0 8px 24px -12px rgba(12, 12, 12, .18);
  --shadow-lg: 0 20px 60px -25px rgba(12, 12, 12, .22);
  --shadow-xl: 0 40px 100px -40px rgba(12, 12, 12, .3);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Fraunces', 'Times New Roman', serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-swift: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: multiply;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

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

/* Typographies */
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(4rem, 15vw, 12rem); font-weight: 900; letter-spacing: -0.05em; }
h2 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0; }
em.italic, .italic { font-style: italic; font-weight: 300; color: var(--yellow-dark); }

p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
p.lead { font-family: var(--display); font-style: italic; font-weight: 300; font-size: 1.28rem; line-height: 1.5; color: var(--ink); }

/* Layout */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--yellow);
  transform-origin: 0 0;
  transform: scaleX(0);
  z-index: 1001;
  pointer-events: none;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease-swift); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform 1s var(--ease-swift); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease), transform 1s var(--ease-swift); }
.reveal-right.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.35) 0%, rgba(12,12,12,.05) 70%, transparent 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity .4s var(--ease);
}
.header.scrolled::before { opacity: 0; }
.header.scrolled {
  background: rgba(253, 252, 247, .96);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  transition: color .4s var(--ease);
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.header.scrolled .logo { color: var(--ink); text-shadow: none; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  transition: transform .5s var(--ease);
  text-shadow: none;
  flex-shrink: 0;
}
.logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.logo:hover .logo-mark, .logo:hover .logo-img { transform: rotate(-8deg) scale(1.08); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-text .sub {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: .8;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav a {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  text-shadow: 0 1px 5px rgba(0,0,0,.3);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .4s var(--ease);
}
.nav a:hover::after { width: 100%; }
.header.scrolled .nav a { color: var(--ink); text-shadow: none; }
.nav a:hover { color: var(--yellow-dark); }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(253, 252, 247, .5);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  transform: translateY(-2px);
}
.header .btn { padding: 10px 20px; font-size: .66rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--paper);
  transition: all .3s var(--ease);
}
.header.scrolled .burger span { background: var(--ink); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; text-align: center; padding: 0; }
.mobile-nav li { margin: 22px 0; }
.mobile-nav a {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--paper);
  font-weight: 400;
  font-style: italic;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .btn-yellow { color: var(--ink); font-style: normal; font-family: var(--sans); font-size: .82rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, .55) 0%, rgba(12, 12, 12, .3) 40%, rgba(12, 12, 12, .8) 100%),
    radial-gradient(circle at 15% 40%, rgba(244, 201, 49, .18), transparent 55%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 140px 40px 60px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-top { margin-bottom: 40px; }
.chip {
  display: inline-block;
  padding: 8px 18px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -8px rgba(244, 201, 49, .5);
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: .9;
  margin-bottom: 40px;
}
.hero-title .l1 {
  font-family: var(--display);
  font-size: clamp(5rem, 20vw, 15rem);
  font-weight: 900;
  color: var(--paper);
  letter-spacing: -0.06em;
  line-height: .9;
}
.hero-title .l2 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--paper);
  font-style: italic;
  letter-spacing: -0.02em;
  padding-left: 8%;
  margin-top: 8px;
}
.hero-title em {
  color: var(--yellow);
  font-style: italic;
  font-weight: 300;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-desc {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--paper);
  max-width: 460px;
  line-height: 1.5;
  padding: 16px 20px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Marquee bas hero */
.hero-marquee {
  position: relative;
  z-index: 3;
  background: var(--yellow);
  color: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marqueeSlide 40s linear infinite;
}
.marquee-item {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  color: var(--ink);
}
@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / À PROPOS
   ============================================================ */
.intro { padding: 140px 0 120px; background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 90px;
  align-items: center;
}
.intro-media {
  position: relative;
}
.intro-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  border-radius: 6px;
  box-shadow: var(--shadow-xl);
  background-image: linear-gradient(135deg, var(--paper-2) 0%, var(--cream) 100%);
}
.intro-badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
}
.intro-badge .badge-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.intro-badge .badge-txt {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-top: 4px;
  line-height: 1.2;
}

.intro-content .eyebrow { margin-bottom: 18px; }
.intro-content h2 { margin-bottom: 30px; }
.intro-content p { margin-bottom: 20px; }
.intro-signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mute);
}
.intro-signature .dash {
  color: var(--yellow-dark);
  font-size: 1.5rem;
}

/* Eyebrow util */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--yellow-dark);
}
.eyebrow.yellow { color: var(--yellow); }

/* Sec head */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 { margin-bottom: 24px; }
.sec-head p { color: var(--mute); font-family: var(--display); font-style: italic; font-size: 1.15rem; }
.sec-head.on-dark h2 { color: var(--paper); }
.sec-head.on-dark p { color: rgba(253, 252, 247, .7); }

/* ============================================================
   PRODUCTS / NOS FROMAGES
   ============================================================ */
.products { padding: 140px 0 120px; background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px 34px;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.product-card:hover::before { transform: scaleX(1); }
.product-num {
  position: absolute;
  top: 24px; right: 24px;
  width: 32px; height: 32px;
  border: 1.5px solid var(--yellow-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: .95rem;
  color: var(--yellow-dark);
}
.product-illu {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  color: var(--yellow-dark);
}
.product-illu svg { width: 100%; height: 100%; }
.product-card h3 { margin-bottom: 10px; }
.product-card p { font-size: .95rem; color: var(--mute); line-height: 1.55; }

.products-note {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mute);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
}
.products-note span { color: var(--yellow-dark); margin-right: 6px; }
.products-note a {
  color: var(--yellow-dark);
  border-bottom: 1px solid var(--yellow-dark);
  padding-bottom: 1px;
  font-weight: 500;
  font-style: normal;
  font-family: var(--sans);
  font-size: .9rem;
  letter-spacing: .04em;
}
.products-note a:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   SHOP / LA BOUTIQUE (fond noir)
   ============================================================ */
.shop {
  padding: 140px 0 120px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.shop::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(244, 201, 49, .15), transparent 60%);
  pointer-events: none;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.shop-item {
  text-align: center;
  padding: 30px 22px;
  border: 1px solid rgba(253, 252, 247, .12);
  border-radius: 6px;
  transition: all .4s var(--ease);
  background: rgba(253, 252, 247, .02);
}
.shop-item:hover {
  border-color: var(--yellow);
  background: rgba(244, 201, 49, .06);
  transform: translateY(-4px);
}
.shop-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-icon svg { width: 100%; height: 100%; }
.shop-item h4 {
  color: var(--paper);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.shop-item p {
  color: rgba(253, 252, 247, .7);
  font-size: .92rem;
  line-height: 1.55;
}

/* ============================================================
   PLATEAUX
   ============================================================ */
.plateaux { padding: 140px 0 120px; background: var(--paper); }
.plateaux-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.plateaux-media { position: relative; }
.plateaux-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--yellow);
  border-radius: 6px;
  box-shadow: var(--shadow-xl);
  background-image: linear-gradient(135deg, var(--yellow-soft) 0%, var(--yellow) 100%);
  position: relative;
}
.plateaux-media::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--ink);
  border-radius: 6px;
  z-index: -1;
}

.plateaux-content .eyebrow { margin-bottom: 18px; }
.plateaux-content h2 { margin-bottom: 24px; }
.plateaux-content p.lead { margin-bottom: 40px; }

.plateaux-formules {
  margin-bottom: 40px;
  border-top: 1px solid var(--line);
}
.formule {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.formule:hover { background: var(--cream); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.formule-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
}
.formule-desc {
  font-size: .92rem;
  color: var(--mute);
}
.formule-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--yellow-dark);
  white-space: nowrap;
}

.plateaux-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.plateaux-cta .note {
  font-size: .82rem;
  color: var(--mute);
  font-style: italic;
  font-family: var(--display);
}

/* ============================================================
   GALLERY (nouvelle section — vraies photos)
   ============================================================ */
.gallery { padding: 140px 0 120px; background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}
.g {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform .6s var(--ease);
  cursor: zoom-in;
}
.g:hover { transform: scale(1.02); }
.g::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(12, 12, 12, .3));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.g:hover::after { opacity: 1; }
.g-1 { grid-column: 1 / 8; grid-row: span 4; }
.g-2 { grid-column: 8 / 13; grid-row: span 4; }
.g-3 { grid-column: 1 / 5; grid-row: span 3; }
.g-4 { grid-column: 5 / 9; grid-row: span 3; }
.g-5 { grid-column: 9 / 13; grid-row: span 3; }
.g-6 { grid-column: 1 / 5; grid-row: span 3; }
.g-7 { grid-column: 5 / 9; grid-row: span 3; }
.g-8 { grid-column: 9 / 13; grid-row: span 3; }

/* ============================================================
   REVIEWS (simplifié, sans faux avis)
   ============================================================ */
.reviews { padding: 140px 0 120px; background: var(--cream); }
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.reviews-hero { max-width: 1200px; margin: 0 auto; }
.score-block { text-align: center; margin-bottom: 60px; }
.score-big {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: .9;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.score-big .score-max {
  font-size: .32em;
  color: var(--mute);
  font-style: normal;
  margin-left: 6px;
}
.score-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 18px 0 14px;
  color: var(--yellow);
}
.score-stars svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.score-count {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
}
.score-count a {
  color: var(--yellow-dark);
  border-bottom: 1px solid var(--yellow-dark);
  padding-bottom: 2px;
  transition: color .3s;
}
.score-count a:hover { color: var(--ink); border-color: var(--ink); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--paper);
  padding: 40px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s;
}
.review-card:hover { transform: translateY(-6px); border-color: var(--yellow); }
.review-quote {
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  opacity: .5;
}
.review-card p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 18px 0 24px;
  position: relative;
  z-index: 1;
}
.review-author {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-author strong {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}
.review-author span {
  font-size: .78rem;
  color: var(--mute);
  letter-spacing: .04em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 140px 0 120px; background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-lbl {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 8px;
}
.contact-val {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
}
.contact-val a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s, color .3s;
}
.contact-val a:hover { color: var(--yellow-dark); border-color: var(--yellow); }

.hours { border-collapse: collapse; margin-top: 4px; }
.hours td { padding: 6px 0; font-family: var(--sans); font-size: .95rem; color: var(--ink); font-style: normal; }
.hours td:first-child {
  font-weight: 600;
  color: var(--ink);
  min-width: 92px;
  padding-right: 18px;
}
.hours td:last-child { color: var(--mute); }
.hours tr.closed td { color: var(--mute); text-decoration: line-through; opacity: .7; }
.hours-note {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--mute);
  font-style: italic;
  font-family: var(--display);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
  margin-bottom: 8px;
  font-size: .95rem;
  border-bottom: none !important;
}
.social-link svg { width: 20px; height: 20px; color: var(--yellow-dark); }

.contact-map {
  background: var(--paper-2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-hero {
  text-align: center;
  padding: 40px 20px 60px;
}
.footer-hero .huge {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--yellow);
  letter-spacing: -0.05em;
  line-height: .9;
}
.footer-hero em {
  color: var(--paper);
  font-style: normal;
}
.footer-hero .sub {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(253, 252, 247, .6);
  margin-top: 16px;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(253, 252, 247, .1);
}
.footer-brand .logo { margin-bottom: 22px; color: var(--paper); text-shadow: none; }
.footer-brand .brand.on-black { color: var(--paper); }
.footer-brand .logo-mark.on-black { background: var(--yellow); color: var(--ink); }
.footer .brand-desc { color: rgba(253, 252, 247, .65); font-size: .94rem; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin: 8px 0; }
.footer-col a, .footer-col p {
  color: rgba(253, 252, 247, .75);
  font-size: .92rem;
  transition: color .3s;
  line-height: 1.5;
}
.footer-col p { margin: 6px 0; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(253, 252, 247, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .78rem;
  color: rgba(253, 252, 247, .55);
  flex-wrap: wrap;
}
.footer-bottom .credit strong { color: var(--yellow); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1050px) {
  .intro-grid, .plateaux-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .products-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-map { aspect-ratio: 16/10; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .g-1 { grid-column: 1 / 7; grid-row: span 3; }
  .g-2 { grid-column: 1 / 7; grid-row: span 2; }
  .g-3, .g-4, .g-5, .g-6, .g-7, .g-8 { grid-column: span 3; grid-row: span 2; }
}

@media (max-width: 900px) {
  .nav, .header .btn { display: none; }
  .burger { display: flex; }
  .wrap { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .hero-inner { padding: 120px 24px 40px; }
  .intro, .products, .shop, .plateaux, .reviews, .contact { padding: 90px 0; }
}

/* ============================================================
   RESPONSIVE iPHONE — <= 480px
   Épuré, pro, aucun débordement, scrolls horizontaux pour compacter
   ============================================================ */
@media (max-width: 480px) {
  html { overflow-x: clip; }
  body { overflow-x: clip; max-width: 100vw; }
  * { min-width: 0; }
  img, svg, video, iframe { max-width: 100%; height: auto; }

  .wrap { padding: 0 18px; }
  h1 { font-size: clamp(3rem, 20vw, 4.4rem); line-height: .95; letter-spacing: -0.04em; }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.05; letter-spacing: -0.02em; }
  h3 { font-size: 1.4rem; }
  p  { font-size: .96rem; line-height: 1.6; }
  section { padding: 60px 0; }

  /* HEADER + safe area iPhone (notch) */
  .header { padding: calc(env(safe-area-inset-top) + 12px) 0 12px; }
  .header.scrolled { padding: calc(env(safe-area-inset-top) + 10px) 0 10px; }
  .header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: env(safe-area-inset-top);
    background: rgba(12, 12, 12, .45);
    backdrop-filter: blur(8px);
    pointer-events: none;
    transition: background .4s;
    z-index: -1;
  }
  .header.scrolled::before { background: rgba(253, 252, 247, .96); }
  .header-inner { padding: 0 18px; }
  .logo-mark { width: 38px; height: 38px; font-size: 1.2rem; }
  .logo-img { width: 40px; height: 40px; }
  .logo-text .brand { font-size: 1.1rem; }
  .logo-text .sub { font-size: .52rem; letter-spacing: .26em; margin-top: 3px; }
  .header .btn { padding: 8px 14px; font-size: .62rem; letter-spacing: .12em; }

  /* MOBILE-NAV fullscreen, au-dessus header, safe area */
  .mobile-nav {
    z-index: 200;
    padding: calc(env(safe-area-inset-top) + 50px) 0 calc(env(safe-area-inset-bottom) + 30px);
    overflow-y: auto;
  }
  .mobile-nav ul { width: 100%; padding: 0; }
  .mobile-nav li { margin: 16px 0; }
  .mobile-nav a { font-size: 1.9rem; }
  body.nav-open { position: fixed; width: 100%; overflow: hidden; }

  /* HERO — titre en valeur, CTAs compacts */
  .hero { min-height: 100svh; }
  .hero-inner { padding: calc(env(safe-area-inset-top) + 90px) 20px 40px; }
  .hero-top { margin-bottom: 28px; }
  .chip { font-size: .6rem; padding: 6px 12px; letter-spacing: .14em; white-space: normal; text-align: center; }
  .hero-title { margin-bottom: 26px; }
  .hero-title .l1 { font-size: 4.6rem; }
  .hero-title .l2 { font-size: 1.6rem; padding-left: 6%; margin-top: 4px; }
  .hero-bottom { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero-desc { font-size: .96rem; padding: 12px 16px; max-width: 100%; }
  .hero-ctas { width: 100%; flex-direction: column; gap: 8px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 11px 20px; font-size: .66rem; }

  /* MARQUEE */
  .marquee-item { font-size: .82rem; }
  .hero-marquee { padding: 10px 0; }

  /* SEC HEAD */
  .sec-head { margin-bottom: 34px; }
  .sec-head p { font-size: .98rem; }

  /* INTRO */
  .intro { padding: 60px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-photo { aspect-ratio: 4/3; }
  .intro-badge { width: 90px; height: 90px; bottom: -18px; right: -8px; }
  .intro-badge .badge-num { font-size: 1.6rem; }
  .intro-badge .badge-txt { font-size: .62rem; }
  .intro-content .lead { font-size: 1.02rem; }

  /* NOS FROMAGES — scroll horizontal snap */
  .products { padding: 60px 0 70px; }
  .products-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 18px 20px;
    margin: 0 -18px;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .product-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    padding: 26px 22px 28px;
  }
  .product-illu { width: 66px; height: 66px; margin-bottom: 12px; }
  .products-note { font-size: .92rem; padding: 20px 4px 0; }

  /* LA BOUTIQUE — scroll horizontal snap */
  .shop { padding: 70px 0; }
  .shop-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 18px 16px;
    margin: 0 -18px;
    max-width: none;
  }
  .shop-grid::-webkit-scrollbar { display: none; }
  .shop-item {
    flex: 0 0 60%;
    scroll-snap-align: center;
    padding: 24px 18px;
  }
  .shop-icon { width: 46px; height: 46px; margin-bottom: 14px; }
  .shop-item h4 { font-size: 1.15rem; }
  .shop-item p { font-size: .88rem; }

  /* GALERIE — 2 col avec grande photo top */
  .gallery { padding: 60px 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 8px;
    padding: 0;
  }
  .g-1 { grid-column: 1 / -1; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8 { grid-column: span 1; grid-row: span 2; }

  /* AVIS — score en haut + 3 cartes en scroll horizontal snap */
  .reviews { padding: 60px 0; }
  .score-block { margin-bottom: 32px; }
  .score-big { font-size: 4rem; }
  .score-stars svg { width: 22px; height: 22px; }
  .score-count { font-size: .74rem; letter-spacing: .14em; }
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 18px 18px;
    margin: 0 -18px 30px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
    padding: 30px 22px 24px;
  }
  .review-quote { font-size: 3.2rem; top: 6px; left: 14px; }
  .review-card p { font-size: .96rem; margin: 12px 0 20px; }
  .review-author strong { font-size: .88rem; }
  .review-author span { font-size: .72rem; }
  .reviews-cta { flex-direction: column; gap: 10px; }
  .reviews-cta .btn { width: 100%; }

  /* CONTACT */
  .contact { padding: 70px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { gap: 24px; }
  .contact-block { gap: 14px; align-items: flex-start; }
  .contact-ico { width: 42px; height: 42px; flex-shrink: 0; }
  .contact-ico svg { width: 18px; height: 18px; }
  .contact-lbl { font-size: .62rem; letter-spacing: .24em; margin-bottom: 6px; }
  .contact-val { font-size: 1rem; }
  .hours { width: 100%; }
  .hours td { font-size: .88rem; padding: 4px 0; }
  .hours td:first-child { min-width: 82px; padding-right: 10px; }
  .hours-note { font-size: .78rem; margin-top: 10px; }
  .social-link { display: flex; align-items: center; gap: 8px; margin-right: 0; margin-bottom: 6px; font-size: .92rem; }
  .contact-map { aspect-ratio: 4/3; }

  /* FOOTER — compact 3 col */
  .footer { padding: 40px 0 24px; }
  .footer-hero { padding: 30px 20px 30px; }
  .footer-hero .huge { font-size: 3rem; }
  .footer-hero .sub { font-size: .78rem; letter-spacing: .28em; margin-top: 12px; }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
    padding: 26px 18px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 8px;
  }
  .footer-brand .logo { justify-content: center; margin-bottom: 14px; }
  .footer-brand .brand-desc { margin: 0 auto; max-width: 280px; font-size: .82rem; text-align: center; }
  .footer-col h5 { font-size: .58rem; letter-spacing: .2em; margin-bottom: 10px; }
  .footer-col a, .footer-col p { font-size: .78rem; line-height: 1.5; }
  .footer-col li { margin: 4px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: .66rem; padding: 12px 18px 0; }

  /* Eyebrow / label */
  .eyebrow { font-size: .64rem; letter-spacing: .24em; }
}

/* iPhone SE / mini — <= 380px */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero-title .l1 { font-size: 4rem; }
  .hero-title .l2 { font-size: 1.5rem; }
  .footer-hero .huge { font-size: 2.6rem; }
  .score-big { font-size: 3.4rem; }
  .product-card { flex-basis: 82%; }
  .shop-item { flex-basis: 66%; }
  .review-card { flex-basis: 86%; }
}

/* ============================================================
   LIGHTBOX — album photo cliquable (galerie)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, .95);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-img {
  width: 92%;
  height: 82%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity .25s;
}
.lightbox button {
  position: absolute;
  background: rgba(253, 252, 247, .12);
  color: var(--paper);
  border: 1px solid rgba(253, 252, 247, .3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox button:hover, .lightbox button:active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.lightbox .lb-close { top: max(18px, calc(env(safe-area-inset-top) + 12px)); right: 18px; font-size: 1.6rem; }
.lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; line-height: 1; }
.lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; line-height: 1; }
@media (max-width: 480px) {
  .lightbox .lb-img { width: 96%; height: 70%; }
  .lightbox button { width: 40px; height: 40px; }
}
