/* =========================================================
   Mon Poulet Adoré — styles des sections enrichies + animations
   (chargé après styles.css)
   ========================================================= */

/* ---- Système d'animation GSAP (pré-masquage sûr) ----
   .anim-ready n'est posée que si le JS tourne ; le JS retire la
   classe si GSAP est absent -> le contenu reste toujours visible. */
.anim-ready [data-anim] { opacity: 0; will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .anim-ready [data-anim] { opacity: 1 !important; transform: none !important; }
}

/* ---- Indicateur de défilement du hero ---- */
.hero__scroll {
  position: absolute; left: 50%; bottom: var(--space-5); translate: -50% 0;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute);
}
.hero__scroll span {
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.4s var(--ease) infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: .3; scale: 1 .6; } 50% { opacity: 1; scale: 1 1; } }
@media (max-width: 880px) { .hero__scroll { display: none; } }

/* ---- Bandeau défilant (marquee) — rouge de l'enseigne ---- */
.marquee {
  background: var(--red); color: var(--cream);
  padding-block: var(--space-4); overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(0,0,0,.14);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: var(--space-5);
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic;
  color: color-mix(in srgb, var(--cream) 92%, transparent);
}
.marquee__track .dot { color: color-mix(in srgb, var(--cream) 60%, var(--red)); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- Savoir-faire : étiquette flottante ---- */
.savoir .story__photo { aspect-ratio: 4 / 5; }
.story__media { position: relative; overflow: visible; }
.savoir .story__photo, .quality__photo { overflow: hidden; }
.story__tag {
  position: absolute; left: var(--space-4); bottom: var(--space-4);
  background: color-mix(in srgb, var(--ink) 90%, transparent);
  color: var(--paper); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
}

/* ---- Qualité / provenance ---- */
.quality__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-6), 5vw, var(--space-9)); align-items: center; }
.quality__photo { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.quality__photo img { width: 100%; height: 100%; object-fit: cover; }
.quality__list { list-style: none; margin: var(--space-5) 0 0; padding: 0; display: grid; gap: var(--space-3); }
.quality__list li { display: flex; align-items: flex-start; gap: var(--space-3); color: var(--ink); font-weight: 500; }
.quality__list span {
  flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: var(--radius-pill);
  background: var(--gold-soft); position: relative;
}
.quality__list span::after {
  content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px;
  border: solid var(--gold-deep); border-width: 0 2px 2px 0; rotate: 45deg;
}
@media (max-width: 880px) {
  .quality__grid { grid-template-columns: 1fr; }
  .quality__media { order: -1; max-width: 460px; }
}

/* ---- Réserver ---- */
.reserve { background:
  radial-gradient(120% 80% at 90% 0%, rgba(198,137,47,.10), transparent 55%), var(--paper); }
.steps {
  list-style: none; margin: 0 0 var(--space-8); padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
}
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm); position: relative;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--gold); font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; margin-bottom: var(--space-4);
}
.step h3 { font-size: 1.3rem; margin-bottom: var(--space-2); }
.step p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.step a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }

.pricing, .schedule { margin-top: var(--space-8); }
.pricing__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4);
  flex-wrap: wrap; margin-bottom: var(--space-5);
  padding-bottom: var(--space-4); border-bottom: 1px solid var(--line);
}
.pricing__head h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.pricing__note {
  font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}
[data-placeholder] {
  background: var(--gold-soft); color: var(--gold-deep);
  padding: 4px 12px; border-radius: var(--radius-pill); border: 1px dashed var(--gold);
  font-weight: 600;
}

.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column; gap: var(--space-2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color .2s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.price-card h4 { font-size: 1.3rem; }
.price-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; flex: 1; }
.price-card__tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-deep);
  background: var(--gold-soft); padding: 3px 10px; border-radius: var(--radius-pill);
  margin-bottom: var(--space-1);
}
.price-card__price {
  font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); font-weight: 600;
  margin-top: var(--space-3);
}
.price-card__price small { font-family: var(--font-sans); font-size: .8rem; color: var(--ink-mute); font-weight: 500; margin-left: 4px; }
.price-card__price [data-price] { color: var(--gold-deep); letter-spacing: .05em; }
.price-card--feature { background: var(--ink); border-color: var(--ink); }
.price-card--feature h4, .price-card--feature .price-card__price { color: var(--paper); }
.price-card--feature p { color: color-mix(in srgb, var(--paper) 78%, transparent); }
.price-card--feature .price-card__tag { background: color-mix(in srgb, var(--gold) 25%, transparent); color: var(--gold); }
.price-card--feature .price-card__price [data-price] { color: var(--gold); }
.price-card--combo { border-style: dashed; border-color: var(--gold); }

.schedule__grid { display: grid; gap: var(--space-2); }
.schedule__row {
  display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.schedule__day { font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.schedule__town { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.schedule__hours { font-variant-numeric: tabular-nums; color: var(--ink-soft); font-weight: 500; }
.reserve__cta { margin-top: var(--space-6); }
@media (max-width: 820px) { .steps, .pricing__grid { grid-template-columns: 1fr; } }
@media (min-width: 601px) and (max-width: 920px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .schedule__row { grid-template-columns: 1fr auto; }
  .schedule__town { grid-column: 1 / -1; order: 3; }
}

/* ---- Recettes ---- */
.recipes__grid { display: grid; gap: var(--space-4); max-width: 52rem; margin-inline: auto; }
.recipe {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color .2s ease;
}
.recipe[open] { box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.recipe summary {
  list-style: none; cursor: pointer; padding: var(--space-5) var(--space-6);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--space-1) var(--space-4);
}
.recipe summary::-webkit-details-marker { display: none; }
.recipe__kicker {
  grid-column: 1; font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-deep);
}
.recipe__title { grid-column: 1; grid-row: 2; font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); font-weight: 600; }
.recipe__chev {
  grid-column: 2; grid-row: 1 / span 2; width: 30px; height: 30px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); position: relative; transition: background-color .2s ease, rotate var(--dur) var(--ease);
}
.recipe__chev::after {
  content: ""; position: absolute; left: 9px; top: 10px; width: 8px; height: 8px;
  border: solid var(--ink); border-width: 0 2px 2px 0; rotate: 45deg;
}
.recipe[open] .recipe__chev { rotate: 180deg; background: var(--gold-soft); }
.recipe__body {
  padding: var(--space-5) var(--space-6) var(--space-6);
  border-top: 1px solid var(--line);
}
.recipe__intro { color: var(--ink-soft); font-style: italic; }
.recipe__body h4 { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin: var(--space-4) 0 var(--space-2); }
.recipe__body ul, .recipe__body ol { margin: 0; padding-left: var(--space-5); color: var(--ink-soft); }
.recipe__body li { margin-bottom: var(--space-2); }
.recipes__foot { text-align: center; margin: var(--space-6) auto 0; max-width: 40rem; }

/* ---- Vidéos Instagram ---- */
.videos { background: var(--paper-2); }
.videos__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); align-items: start; }
.video-embed {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--paper); border: 1px solid var(--line);
}
.video-embed iframe { width: 100%; height: 560px; display: block; border: 0; background: var(--paper); }
.videos__foot { text-align: center; margin-top: var(--space-7); }
@media (max-width: 1100px) { .videos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .videos__grid { grid-template-columns: 1fr; } .video-embed iframe { height: 640px; } }

/* ---- Contact : mascotte ---- */
.contact__card { position: relative; }
.contact__mascot {
  position: absolute; top: calc(-1 * var(--space-7)); right: var(--space-5);
  width: 88px; height: 88px; border-radius: 20px; overflow: hidden;
  background: #14100B; box-shadow: var(--shadow-lg); rotate: 6deg;
  border: 3px solid var(--ink);
}
.contact__mascot img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Bande enseigne (photo de la devanture rouge) ---- */
.brandband {
  position: relative; height: clamp(320px, 48vw, 520px); overflow: hidden;
  background: var(--red);
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.brandband__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
}
.brandband::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,10,8,.55) 100%);
}
.brandband__cap {
  position: relative; z-index: 1; margin: 0; padding: var(--space-7) var(--space-6);
  color: var(--cream);
}
.brandband__cap .eyebrow { color: var(--cream); }
.brandband__cap .eyebrow::before { background: var(--cream); }
.brandband__cap p {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem); max-width: 20ch; line-height: 1.2;
}

/* ---- Touches rouges sobres sur l'existant ---- */
.market-card::before { background: linear-gradient(90deg, var(--gold), var(--red)); }
.price-card--feature .price-card__tag,
.recipe__kicker { /* garder l'or ; le rouge reste réservé aux bandeaux */ }
.hero__badge-float { border-left: 3px solid var(--red); }
.story__quote { border-left-color: var(--red); }

/* =========================================================
   PLUS DE ROUGE & BLANC — le rouge devient l'accent principal,
   les surfaces passent au blanc franc (bistro rouge/blanc).
   ========================================================= */
:root { --paper: #FCFAF5; }              /* fond un rien plus blanc */
.btn { --btn-bg: var(--red); }
.btn:hover { background: var(--red-deep); }
.eyebrow { color: var(--red); }
.eyebrow::before { background: var(--red); }
.nav__links a::after { background: var(--red); }
.nav__phone:hover { border-color: var(--red); background: var(--red-soft); }
.site-header.scrolled { box-shadow: 0 2px 0 0 var(--red), 0 6px 20px rgba(43,33,24,.06); }

.hero { background:
  radial-gradient(120% 90% at 82% 12%, rgba(176,32,30,.12), transparent 55%),
  radial-gradient(120% 120% at 8% 100%, rgba(176,32,30,.10), transparent 50%),
  linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.hero__seal { background: color-mix(in srgb, var(--red-soft) 65%, #fff);
  border-color: var(--red-soft); color: var(--red-deep); }
.hero h1 em { color: var(--red); }

.step, .market-card { background: #fff; }
.step__num { background: var(--red); color: #fff; }
.step a { color: var(--red-deep); }
.market-card::before { background: var(--red); }
.market-card__day, .market-card__ico { color: var(--red-deep); }
.market-card:hover { border-color: color-mix(in srgb, var(--red) 30%, #fff); }

.section-head h2 .accent, .story__quote { border-left-color: var(--red); }
.qa__q::before { color: var(--red); }
.recipe__kicker, .recipe__body h4 { color: var(--red-deep); }
.recipe[open] .recipe__chev { background: var(--red-soft); }
.recipe[open], .recipe:hover { border-color: color-mix(in srgb, var(--red) 25%, #fff); }
.contact__phone { color: var(--gold); }        /* reste doré sur fond sombre (lisibilité) */
.social-btn:hover { border-color: var(--red); }

/* =========================================================
   Menu (carte des tarifs) — blanc + rouge
   ========================================================= */
.menu {
  margin-top: var(--space-8); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(var(--space-5), 4vw, var(--space-8));
}
.menu__head { text-align: center; margin-bottom: var(--space-7); }
.menu__head h3 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.menu__head p { margin: var(--space-2) 0 0; color: var(--ink-mute); }
.menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-6), 5vw, var(--space-9)); }
.menu__cat {
  font-family: var(--font-sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
  margin: var(--space-6) 0 var(--space-2); padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--red);
}
.menu__col > .menu__cat:first-child { margin-top: 0; }
.menu__list { list-style: none; margin: 0; padding: 0; }
.menu__list li {
  display: flex; align-items: baseline; gap: var(--space-3);
  padding: var(--space-3) 0; border-bottom: 1px dotted var(--line-strong);
}
.menu__list li:last-child { border-bottom: 0; }
.menu__name { font-family: var(--font-display); font-size: 1.14rem; color: var(--ink); }
.menu__name em {
  font-style: normal; font-family: var(--font-sans); font-weight: 700;
  font-size: .62rem; letter-spacing: .08em; vertical-align: middle; margin-left: 8px;
  background: var(--red); color: #fff; padding: 2px 8px; border-radius: var(--radius-pill);
}
.menu__price {
  margin-left: auto; font-family: var(--font-display); font-weight: 600;
  font-size: 1.18rem; color: var(--red); white-space: nowrap; font-variant-numeric: tabular-nums;
}
.menu__price small { font-family: var(--font-sans); font-size: .72rem; color: var(--ink-mute); font-weight: 500; }
.menu__item--star {
  background: var(--red-soft); margin-inline: calc(-1 * var(--space-4));
  padding-inline: var(--space-4); border-radius: var(--radius-sm); border-bottom-color: transparent !important;
}
@media (max-width: 720px) { .menu__grid { grid-template-columns: 1fr; gap: var(--space-2); } }

/* =========================================================
   Provenance — blanc, photo + points rouges
   ========================================================= */
.provenance {
  margin-top: var(--space-7); display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 0; align-items: stretch; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.provenance__media { min-height: 100%; }
.provenance__photo { height: 100%; min-height: 320px; overflow: hidden; }
.provenance__photo img { width: 100%; height: 100%; object-fit: cover; }
.provenance__body { padding: clamp(var(--space-6), 4vw, var(--space-8)); align-self: center; }
.provenance__body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: var(--space-4); }
.provenance__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.provenance__list li { position: relative; padding-left: var(--space-5); color: var(--ink-soft); }
.provenance__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px;
  border-radius: 50%; background: var(--red);
}
.provenance__list strong { color: var(--red-deep); }
@media (max-width: 760px) {
  .provenance { grid-template-columns: 1fr; }
  .provenance__photo { min-height: 260px; }
}

/* =========================================================
   Vidéos Instagram — recadrées : on ne garde que l'image
   (on masque l'en-tête profil et les boutons/légende).
   ========================================================= */
.videos { background: var(--paper-2); }
.video-embed {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius-lg); background: #000; border: 0; box-shadow: var(--shadow-lg);
}
.video-embed iframe {
  position: absolute; left: 50%; top: -54px; translate: -50% 0;
  width: 100%; height: calc(100% + 230px); border: 0; background: #000;
}
@media (max-width: 560px) { .video-embed iframe { height: calc(100% + 260px); } }

/* Façade « cliquer pour charger » (RGPD : Instagram chargé au clic) */
.video-facade {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-4); cursor: pointer; color: var(--cream); text-align: center;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(176,32,30,.35), transparent 60%),
    linear-gradient(160deg, #241009, #14100b);
  transition: box-shadow var(--dur) var(--ease);
}
.video-facade:hover { box-shadow: var(--shadow-lg), 0 0 0 2px var(--red) inset; }
.video-facade__play {
  width: 66px; height: 66px; border-radius: 50%; background: var(--red);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease);
}
.video-facade:hover .video-facade__play { transform: scale(1.08); }
.video-facade__play svg { width: 28px; height: 28px; color: #fff; margin-left: 3px; }
.video-facade__label { font-weight: 600; letter-spacing: .02em; font-size: 1rem; }
.video-facade:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.videos__consent {
  text-align: center; margin-top: var(--space-5); font-size: .85rem; color: var(--ink-mute);
}

/* =========================================================
   Parallaxe sûre — les photos débordent légèrement leur cadre
   pour éviter les bandes vides au décalage.
   ========================================================= */
img[data-parallax] { height: 116% !important; object-fit: cover; object-position: center; }

/* jours des horaires en rouge (cohérence) */
.schedule__day { color: var(--red-deep); }

/* ---- Compléments responsive ---- */
@media (max-width: 880px) {
  .quality__body h2, .savoir h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .brandband { align-items: flex-end; }
}

/* Cartes marche devenues cliquables (vers les pages ville) */
.market-card--link {
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.market-card--link .market-card__note { flex: 1; }
.market-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--space-4); font-size: .88rem; font-weight: 600;
  color: var(--red-deep);
}
.market-card__more::after {
  content: ""; width: 12px; height: 12px; flex: none;
  border: solid currentColor; border-width: 0 2px 2px 0;
  transform: rotate(-45deg); transition: translate var(--dur) var(--ease);
}
.market-card--link:hover .market-card__more::after { translate: 4px 0; }

/* CORRECTIF : la regle .btn{--btn-bg:red} ci-dessus ecrasait le bouton fantome */
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }

/* Facade video : vraie photo en fond (l'iframe Instagram ne charge qu'au clic) */
.video-facade { position: relative; overflow: hidden; }
.video-facade__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 700ms var(--ease), filter 400ms var(--ease);
  filter: brightness(.62) saturate(1.05);
}
.video-facade::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,8,6,.10) 0%, rgba(20,8,6,.55) 100%);
}
.video-facade:hover .video-facade__poster { transform: scale(1.05); filter: brightness(.72) saturate(1.1); }
.video-facade__play, .video-facade__label { position: relative; z-index: 2; }
.video-facade__label { text-shadow: 0 1px 10px rgba(0,0,0,.6); }

/* =========================================================
   REFONTE DU RYTHME (esthetique)
   ========================================================= */

/* --- Pied de la section Reserver --- */
.reserve__foot {
  margin-top: var(--space-7);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding: var(--space-5) var(--space-6);
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.reserve__foot p { margin: 0; color: var(--ink); font-weight: 500; }

/* --- Provenance devenue section autonome (image a droite) --- */
.provenance-section { background: var(--paper-2); }
.provenance-section .provenance {
  margin-top: 0; background: transparent; border: 0; box-shadow: none;
  border-radius: 0; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(var(--space-6), 5vw, var(--space-9));
}
.provenance-section .provenance__body { padding: 0; }
.provenance-section .provenance__body h2 { font-size: clamp(1.8rem, 4.4vw, 2.8rem); margin-bottom: var(--space-5); }
.provenance-section .provenance__photo {
  min-height: 0; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.provenance-section .provenance__list { gap: var(--space-4); }
.provenance-section .provenance__list li { font-size: 1.05rem; }
@media (max-width: 760px) {
  .provenance-section .provenance { grid-template-columns: 1fr; }
  .provenance-section .provenance__media { max-width: 440px; }
}

/* --- Horaires sur les cartes marche --- */
.market-card__hours {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--space-2); font-size: .92rem; font-weight: 600;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.market-card__hours::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex: none;
}

/* --- Citation pleine largeur (moment fort, casse le rythme) --- */
.pullquote {
  background: var(--red); color: var(--cream);
  padding-block: clamp(var(--space-8), 9vw, var(--space-10));
  position: relative; overflow: hidden;
}
.pullquote::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 15% 0%, rgba(255,255,255,.10), transparent 60%);
}
.pullquote__inner { position: relative; text-align: center; max-width: 44rem; }
.pullquote__mark {
  display: block; font-family: var(--font-display); font-size: clamp(4rem, 12vw, 7rem);
  line-height: .6; color: color-mix(in srgb, var(--cream) 45%, transparent);
  margin-bottom: var(--space-3);
}
.pullquote blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 4.6vw, 3rem); line-height: 1.22; letter-spacing: -.015em;
}
.pullquote__auteur {
  margin: var(--space-6) 0 0; font-size: .84rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 80%, transparent);
}

/* --- Interview : tete avec portrait --- */
.interview__tete {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(var(--space-5), 4vw, var(--space-7));
  align-items: center; margin-bottom: var(--space-8);
}
.interview__portrait {
  width: clamp(110px, 16vw, 176px); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff; flex: none;
}
.interview__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.interview__tete h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
.interview__chapo { margin: var(--space-4) 0 0; color: var(--ink-soft); max-width: 46ch; }
@media (max-width: 620px) {
  .interview__tete { grid-template-columns: 1fr; text-align: left; }
}

/* --- Interview : suite depliable --- */
.interview__suite { margin-top: var(--space-4); }
.interview__suite summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-5); border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill); font-weight: 600; color: var(--ink);
  transition: border-color .2s ease, background-color .2s ease;
}
.interview__suite summary::-webkit-details-marker { display: none; }
.interview__suite summary:hover { border-color: var(--red); background: var(--red-soft); }
.interview__chev {
  width: 10px; height: 10px; border: solid currentColor; border-width: 0 2px 2px 0;
  transform: rotate(45deg); transition: transform var(--dur) var(--ease); margin-top: -4px;
}
.interview__suite[open] .interview__chev { transform: rotate(-135deg); margin-top: 2px; }
.interview__suite[open] summary { margin-bottom: var(--space-4); }
.interview__credit {
  margin-top: var(--space-7); text-align: center; font-style: italic;
  color: var(--ink-mute); font-family: var(--font-display);
}
