/* =========================================================
   Alex'exception, boulangerie artisanale
   Design system & styles
   ========================================================= */

:root {
  /* Base */
  --cream:      #faf4ea;
  --cream-2:    #f3e9d8;
  --espresso:   #2b1b12;
  --espresso-2: #21140d;
  --ink:        #2a2018;
  --muted:      #7a6a5b;
  --line:       rgba(43, 27, 18, .12);
  --white:      #ffffff;

  /* Accent (surchargé par les ambiances) */
  --wheat:      #c79a3f;
  --wheat-soft: #e3c884;
  --crust:      #b4592a;

  /* Typo */
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* Mesures */
  --container: 1180px;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -28px rgba(43, 27, 18, .45);
  --shadow-sm: 0 10px 30px -18px rgba(43, 27, 18, .4);
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

/* Ambiances (sélecteur en bas à gauche) */
html[data-amb="bourgogne"] {
  --wheat:      #c0902f;
  --wheat-soft: #e2c07d;
  --crust:      #8d2436;
}
html[data-amb="champetre"] {
  --wheat:      #a98b3f;
  --wheat-soft: #cdbf86;
  --crust:      #6b7a44;
  --espresso:   #2f2a1d;
  --espresso-2: #241f15;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--crust); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--crust);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Icônes Lucide */
.lucide, [data-lucide] { width: 1.05em; height: 1.05em; stroke-width: 1.85; vertical-align: -.16em; }

/* Texture grain globale */
.grain {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typographie ---------- */
.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--espresso);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--crust);
  margin-bottom: .9rem;
}
.kicker .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  opacity: .85;
}
.muted { color: var(--muted); }

/* ---------- Boutons ---------- */
.btn {
  --btn-pad: .85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: var(--btn-pad);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--lg { --btn-pad: 1.05rem 2rem; font-size: 1rem; }

.btn--primary {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--crust);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(180, 89, 42, .55);
}
.btn--ghost {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(43, 27, 18, .35);
}
.btn--ghost:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-3px);
}

/* ---------- Topbar ---------- */
.topbar { background: var(--espresso); color: var(--cream-2); font-size: .82rem; position: relative; z-index: 2; }
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: .85rem; padding: .55rem 24px; flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item svg { width: 14px; height: 14px; color: var(--wheat-soft); }
.topbar__sep { opacity: .4; }
.topbar__link { transition: color .2s; }
.topbar__link:hover { color: var(--wheat-soft); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 234, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(43, 27, 18, .5); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  position: relative;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--espresso);
  color: var(--wheat-soft);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}
.brand__seed {
  position: absolute; top: 8px; right: 9px;
  width: 5px; height: 5px;
  background: var(--crust);
  border-radius: 50%;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif); font-weight: 700; font-size: 1.3rem;
  color: var(--espresso); letter-spacing: -.01em;
}
.brand__apos { color: var(--crust); }
.brand__name--light { color: var(--cream); font-size: 1.5rem; }
.brand__tag {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links > a:not(.btn) {
  font-size: .94rem; font-weight: 500; color: var(--ink);
  position: relative; padding-bottom: 3px;
}
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--crust);
  transition: width .3s var(--ease);
}
.nav__links > a:not(.btn):hover::after,
.nav__links > a.is-active::after { width: 100%; }
.nav__links > a.is-active { color: var(--crust); }
.nav__cta svg { width: 15px; height: 15px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--espresso); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden; color: var(--cream);
}
.hero__bg {
  position: absolute; inset: -8% 0 0 0;
  background-image: url("https://images.unsplash.com/photo-1568254183919-78a4f43a2877?auto=format&fit=crop&w=1800&q=80");
  background-size: cover; background-position: center; will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 12, 7, .74) 0%, rgba(20, 12, 7, .52) 42%, rgba(20, 12, 7, .9) 100%),
    linear-gradient(100deg, rgba(20, 12, 7, .7), rgba(20, 12, 7, .34) 65%, rgba(20, 12, 7, .52));
}
.hero__content {
  position: relative; z-index: 2; width: 100%;
  padding-block: 7rem 3rem;
  display: flex; flex-direction: column; justify-content: center; gap: 3rem;
}
.hero__top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem 3.5rem; flex-wrap: wrap;
}
.hero__head { flex: 1 1 440px; }
.hero__head .hero__title { margin-bottom: 0; }
.hero__aside { flex: 0 1 360px; padding-bottom: .35rem; }
.hero__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.4rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(250, 244, 234, .18);
}
.hero__head, .hero__aside { text-shadow: 0 2px 16px rgba(0, 0, 0, .5); }
.hero__eyebrow {
  font-size: .85rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--wheat-soft); margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem); line-height: 1.02;
  letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.hero__title em { color: var(--wheat-soft); font-style: italic; }
.hero__lead {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem); font-weight: 300;
  color: rgba(250, 244, 234, .9); margin-bottom: 1.3rem;
}
.hero__features { display: flex; flex-direction: column; gap: .7rem; }
.hero__features li {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .94rem; font-weight: 500; color: rgba(250, 244, 234, .95);
}
.hero__features svg { width: 18px; height: 18px; color: var(--wheat-soft); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__actions .btn--ghost { color: var(--cream); border-color: rgba(250,244,234,.5); }
.hero__actions .btn--ghost:hover { background: var(--cream); color: var(--espresso); }

.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .6rem 1.1rem; background: rgba(250, 244, 234, .12);
  border: 1px solid rgba(250, 244, 234, .25); border-radius: 999px;
  font-size: .9rem; backdrop-filter: blur(6px);
}
.hero__dot {
  width: 9px; height: 9px; border-radius: 50%; background: #6fcf6f;
  box-shadow: 0 0 0 0 rgba(111, 207, 111, .6); animation: pulse 2.2s infinite;
}
.hero__dot.is-closed { background: #e07a5f; animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(111, 207, 111, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(111, 207, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 207, 111, 0); }
}

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(250, 244, 234, .55); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--cream); border-radius: 2px; animation: scrollWheel 1.8s infinite;
}
@keyframes scrollWheel {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--espresso); color: var(--cream);
  overflow: hidden; white-space: nowrap; padding: .9rem 0;
  border-block: 1px solid rgba(250,244,234,.08); position: relative; z-index: 2;
}
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; animation: marquee 32s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: rgba(250,244,234,.92);
}
.marquee__track b { width: 7px; height: 7px; background: var(--wheat-soft); transform: rotate(45deg); border-radius: 1px; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- L'heure du four (signature) ---------- */
.oven { padding-block: clamp(4rem, 8vw, 6.5rem); background: var(--cream-2); position: relative; z-index: 2; }
.oven__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.oven__panel {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.8rem); box-shadow: var(--shadow);
}
.oven__head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.6rem; }
.oven__pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--crust);
  box-shadow: 0 0 0 0 rgba(180,89,42,.5); animation: pulse2 2s infinite;
}
@keyframes pulse2 {
  0% { box-shadow: 0 0 0 0 rgba(180,89,42,.5); }
  70% { box-shadow: 0 0 0 9px rgba(180,89,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,89,42,0); }
}
.oven__live { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--crust); }
.oven__live svg { width: 15px; height: 15px; }
.oven__clock {
  margin-left: auto; font-family: var(--serif); font-weight: 700; font-size: 1.4rem;
  color: var(--espresso); font-variant-numeric: tabular-nums;
}
.oven__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .9rem; }
.oven__desc { color: var(--muted); max-width: 46ch; margin-bottom: 1.4rem; }
.oven__items { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.8rem; }
.oven__items li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--cream-2); color: var(--ink); font-weight: 500; font-size: .9rem;
  padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--line);
}
.oven__items li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--crust); }
.oven__foot { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.oven__note { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--muted); }
.oven__note svg { width: 14px; height: 14px; }
.oven__media { position: relative; }
.oven__media img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.oven__moment {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(43,27,18,.82); color: var(--cream); backdrop-filter: blur(6px);
  padding: .55rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 500;
}

/* ---------- Story ---------- */
.story { padding-block: clamp(4rem, 9vw, 7rem); position: relative; z-index: 2; }
.story__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__media { position: relative; }
.story__media img { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.story__media-accent {
  position: absolute; bottom: -26px; right: -18px;
  background: var(--cream); padding: 1rem 1.4rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); text-align: center; border: 1px solid var(--line);
}
.story__media-num { display: block; font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--crust); }
.story__media-cap { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.story__text p { color: var(--muted); margin-top: 1.1rem; max-width: 50ch; }
.story__text .h2 { margin-bottom: .4rem; }
.story__points { margin: 1.8rem 0; display: grid; gap: .75rem; }
.story__points li { display: flex; align-items: center; gap: .75rem; font-weight: 500; color: var(--ink); }
.story__points svg {
  width: 26px; height: 26px; padding: 5px; box-sizing: border-box;
  background: var(--cream-2); color: var(--crust); border-radius: 50%; flex-shrink: 0; stroke-width: 3;
}
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--crust); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- Section head ---------- */
.section-head { max-width: 620px; margin-bottom: 3rem; }
.section-head__sub { color: var(--muted); margin-top: .8rem; font-size: 1.05rem; }
.section-head--light .h2 { color: var(--cream); }
.section-head--light .kicker { color: var(--wheat-soft); }

/* ---------- Stats ---------- */
.stats { background: var(--espresso); color: var(--cream); position: relative; z-index: 2; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 3rem; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__val { display: inline-flex; align-items: baseline; }
.stat__num, .stat__suffix {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700;
  color: var(--wheat-soft); line-height: 1;
}
.stat__label { margin-top: .6rem; font-size: .9rem; color: rgba(250, 244, 234, .72); }

/* ---------- Products ---------- */
.products { padding-block: clamp(4rem, 9vw, 7rem); background: var(--cream); position: relative; z-index: 2; }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.product {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product__img { height: 230px; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.product:hover .product__img { transform: scale(1.06); }
.product__body { padding: 1.5rem; }
.product__body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--espresso); margin-bottom: .5rem; }
.product__body p { color: var(--muted); font-size: .96rem; }
.product__tag {
  display: inline-block; margin-top: 1rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--crust);
  background: rgba(180, 89, 42, .1); padding: .35rem .8rem; border-radius: 999px;
}

/* ---------- Menu / carte ---------- */
.menu { padding-block: clamp(4rem, 9vw, 7rem); background: var(--cream-2); position: relative; z-index: 2; }
.menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.8rem, 4vw, 3.5rem); }
.menu__cat-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--espresso);
  padding-bottom: .8rem; margin-bottom: 1rem; border-bottom: 2px solid var(--line);
}
.menu__cat-title span { color: var(--crust); font-style: italic; font-weight: 500; }
.menu__list li { display: flex; align-items: baseline; gap: .5rem; padding: .55rem 0; }
.menu__name { color: var(--ink); font-weight: 500; }
.menu__name em { display: block; font-style: normal; font-size: .82rem; color: var(--muted); font-weight: 400; }
.menu__dots { flex: 1; border-bottom: 1.5px dotted rgba(43,27,18,.25); transform: translateY(-3px); }
.menu__price { font-family: var(--serif); font-weight: 600; color: var(--espresso); white-space: nowrap; }
.menu__cta { margin-top: 3rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.menu__cta p { font-family: var(--serif); font-size: 1.4rem; color: var(--espresso); }

/* ---------- Values ---------- */
.values {
  padding-block: clamp(4rem, 9vw, 7rem); color: var(--cream); position: relative; z-index: 2;
  background:
    linear-gradient(rgba(28,17,11,.86), rgba(28,17,11,.92)),
    url("https://images.unsplash.com/photo-1517433367423-c7e5b0f35086?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.value {
  background: rgba(250, 244, 234, .06); border: 1px solid rgba(250, 244, 234, .14);
  border-radius: var(--radius); padding: 2.2rem 1.8rem; backdrop-filter: blur(4px);
  transition: transform .4s var(--ease), background .4s;
}
.value:hover { transform: translateY(-6px); background: rgba(250, 244, 234, .1); }
.value__icon {
  display: grid; place-items: center; width: 64px; height: 64px;
  background: rgba(227, 200, 132, .15); border-radius: 16px; margin-bottom: 1.3rem; color: var(--wheat-soft);
}
.value__icon svg { width: 30px; height: 30px; stroke-width: 1.6; }
.value h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: .6rem; }
.value p { color: rgba(250, 244, 234, .78); }

/* ---------- Gallery ---------- */
.gallery { padding-block: clamp(4rem, 9vw, 7rem); position: relative; z-index: 2; }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 210px); gap: 1rem;
  padding-inline: 24px; max-width: 1320px; margin-inline: auto;
}
.gallery__item { background-size: cover; background-position: center; border-radius: var(--radius-sm); transform-origin: center; transition: transform .55s var(--ease), box-shadow .55s var(--ease), filter .55s var(--ease); }
.gallery__item:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
.gallery__item:nth-child(2) { grid-area: 1 / 3 / 3 / 4; }
.gallery__item:nth-child(3) { grid-area: 1 / 4 / 2 / 5; }
.gallery__item:nth-child(4) { grid-area: 2 / 4 / 3 / 5; }
.gallery__item:nth-child(5) { grid-area: 2 / 1 / 3 / 3; }
.gallery__item:hover { transform: scale(1.22); z-index: 6; box-shadow: 0 44px 90px -28px rgba(0, 0, 0, .7); }
.gallery__grid:hover .gallery__item:not(:hover) { filter: brightness(.5) saturate(.85); transform: scale(.96); }

/* ---------- Reviews ---------- */
.reviews { padding-block: clamp(4rem, 9vw, 7rem); background: var(--espresso); color: var(--cream); position: relative; z-index: 2; }
.reviews__swiper { padding-bottom: 3rem; }
.review {
  background: rgba(250, 244, 234, .05); border: 1px solid rgba(250, 244, 234, .12);
  border-radius: var(--radius); padding: 2rem; height: auto;
}
.review__stars { display: flex; gap: 3px; color: var(--wheat); margin-bottom: 1rem; }
.review__stars svg { width: 18px; height: 18px; fill: currentColor; stroke-width: 0; }
.review p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: rgba(250, 244, 234, .94); }
.review footer { margin-top: 1.3rem; font-size: .9rem; color: rgba(250, 244, 234, .6); }
.review footer strong { color: var(--wheat-soft); }

/* Swiper customisation */
.reviews__swiper .swiper-pagination-bullet { background: var(--cream); opacity: .35; }
.reviews__swiper .swiper-pagination-bullet-active { background: var(--wheat-soft); opacity: 1; width: 22px; border-radius: 5px; }
.reviews__nav { display: flex; justify-content: center; gap: 1rem; margin-top: .5rem; }
.reviews__btn {
  width: 48px; height: 48px; display: grid; place-items: center; cursor: pointer;
  background: transparent; color: var(--cream); border: 1.5px solid rgba(250,244,234,.3);
  border-radius: 50%; transition: background .25s, color .25s, transform .25s;
}
.reviews__btn:hover { background: var(--wheat-soft); color: var(--espresso); transform: translateY(-2px); }
.reviews__btn svg { width: 20px; height: 20px; }
/* Fallback si Swiper ne se charge pas : grille lisible */
.reviews__swiper:not(.swiper-initialized) .swiper-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; transform: none !important; }
.reviews__swiper:not(.swiper-initialized) .swiper-pagination { display: none; }
.reviews__swiper:not(.swiper-initialized) ~ .reviews__nav { display: none; }

/* ---------- Contact ---------- */
.contact { padding-block: clamp(4rem, 9vw, 7rem); position: relative; z-index: 2; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact__list { margin: 2rem 0; display: grid; gap: 1.4rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ic { display: grid; place-items: center; width: 46px; height: 46px; background: var(--cream-2); border-radius: 12px; flex-shrink: 0; color: var(--crust); }
.contact__ic svg { width: 20px; height: 20px; }
.contact__list strong { display: block; color: var(--espresso); margin-bottom: .15rem; }
.contact__list div { color: var(--muted); overflow-wrap: anywhere; }
.contact__list a:hover { color: var(--crust); }
.contact__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }

/* ---------- Footer ---------- */
.footer { background: var(--espresso-2); color: rgba(250, 244, 234, .8); padding-top: 3.5rem; position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__brand p { margin-top: .8rem; font-size: .95rem; color: rgba(250, 244, 234, .6); }
.footer__col h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); margin-bottom: 1rem; font-weight: 600; }
.footer__col a, .footer__col span { display: block; font-size: .92rem; margin-bottom: .55rem; color: rgba(250, 244, 234, .65); transition: color .2s; }
.footer__col a:hover { color: var(--wheat-soft); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; padding-block: 1.4rem;
  border-top: 1px solid rgba(250, 244, 234, .12); font-size: .82rem; color: rgba(250, 244, 234, .5);
  flex-wrap: wrap; gap: .5rem;
}

/* ---------- Sélecteur d'ambiance ---------- */
.amb { position: fixed; left: 20px; bottom: 22px; z-index: 60; display: flex; align-items: center; gap: .6rem; }
.amb__toggle {
  width: 50px; height: 50px; display: grid; place-items: center; cursor: pointer; flex-shrink: 0;
  background: var(--cream); color: var(--espresso); border: 1px solid var(--line);
  border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease);
}
.amb__toggle:hover { transform: rotate(25deg) scale(1.05); }
.amb__toggle svg { width: 22px; height: 22px; }
.amb__panel {
  display: flex; align-items: center; gap: .4rem; padding: .5rem .6rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateX(-12px); pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.amb.is-open .amb__panel { opacity: 1; transform: none; pointer-events: auto; }
.amb__title { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-inline: .4rem; }
.amb__swatch {
  display: inline-flex; align-items: center; gap: .4rem; cursor: pointer;
  background: transparent; border: none; border-radius: 999px; padding: .35rem .65rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--ink); transition: background .2s;
}
.amb__swatch:hover { background: var(--cream-2); }
.amb__swatch.is-active { background: var(--espresso); color: var(--cream); }
.amb__chip { width: 16px; height: 16px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(0,0,0,.12); }
.amb__chip--tradition { background: linear-gradient(135deg, #c79a3f, #b4592a); }
.amb__chip--bourgogne { background: linear-gradient(135deg, #c0902f, #8d2436); }
.amb__chip--champetre { background: linear-gradient(135deg, #a98b3f, #6b7a44); }

/* ---------- FAB appel ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--crust); color: #fff; border-radius: 50%;
  box-shadow: 0 14px 34px -10px rgba(180, 89, 42, .7);
  transition: transform .3s var(--ease); animation: fabIn .6s var(--ease) .8s both;
}
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.1) rotate(-8deg); }
@keyframes fabIn { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Reveal (animation au scroll) ---------- */
html.anim .reveal { opacity: 0; transform: translateY(40px) scale(.985); will-change: opacity, transform; }
html.anim:not(.has-gsap) .reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .oven__grid, .story__grid, .contact__grid { grid-template-columns: 1fr; }
  .oven__media { order: -1; }
  .oven__media img { height: 320px; }
  .story__media img { height: 420px; }
  .products__grid, .values__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__item--addr, .topbar__sep { display: none; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 28%; flex-direction: column; justify-content: center;
    gap: 1.6rem; background: var(--cream); padding: 2rem; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: -20px 0 60px -30px rgba(0,0,0,.4);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links > a:not(.btn) { font-size: 1.15rem; }
  .nav__cta { width: 100%; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 150px; }
  .gallery__item { grid-area: auto !important; }
  .gallery__item:nth-child(5) { grid-column: 1 / -1 !important; }
  .hero__scroll { display: none; }
  .amb__title { display: none; }

  /* Mobile : révélations plus vives, course réduite (rendu net au doigt) */
  html.anim .reveal { filter: none; transform: translateY(20px) scale(.994); }
  /* Retour visuel au toucher (pas de survol sur mobile) */
  .product:active, .gallery__item:active, .value:active { transform: scale(.985); }
  .btn:active { transform: scale(.97); }

  /* Hero : les atouts côte à côte */
  .hero__features { flex-direction: row; flex-wrap: wrap; gap: .5rem 1.3rem; }
}

@media (max-width: 540px) {
  /* Spécialités : 2 colonnes compactes, côte à côte */
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .product__img { height: 138px; }
  .product__body { padding: 1rem; }
  .product__body h3 { font-size: 1.12rem; }
  .product__body p { font-size: .84rem; }
  .product__tag { margin-top: .7rem; }
  .product__more { font-size: .72rem; margin-top: .7rem; }

  /* Valeurs : cartes horizontales (icône à gauche, texte à droite) */
  .values__grid { grid-template-columns: 1fr; gap: .9rem; }
  .value { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: center; padding: 1.1rem 1.2rem; }
  .value__icon { grid-row: 1 / 3; width: 54px; height: 54px; margin-bottom: 0; }
  .value__icon svg { width: 26px; height: 26px; }
  .value h3 { grid-column: 2; font-size: 1.18rem; margin-bottom: .15rem; }
  .value p { grid-column: 2; font-size: .87rem; }

  /* Footer : marque pleine largeur, colonnes de liens côte à côte */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.2rem; }
  .footer__brand { grid-column: 1 / -1; }

  .hero { min-height: 84vh; }
  .story__media-accent { right: 12px; }
  .oven__clock { font-size: 1.2rem; }
}

/* ---------- Grille : Notre univers ---------- */
.showcase {
  position: relative; z-index: 2; overflow: hidden;
  background: var(--espresso); color: var(--cream);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.showcase .h2 { color: var(--cream); }
.showcase .kicker { color: var(--wheat-soft); }
.showcase .section-head__sub { color: rgba(250, 244, 234, .7); }

.univers__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem; }
.univers__card:nth-child(1), .univers__card:nth-child(2) { grid-column: span 3; }
.univers__card:nth-child(3), .univers__card:nth-child(4), .univers__card:nth-child(5) { grid-column: span 2; }
.univers__card {
  position: relative; height: clamp(300px, 38vh, 380px); background: #1a110a;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.univers__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.univers__card:hover img { transform: scale(1.06); }
.univers__card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 11, 6, .92), rgba(18, 11, 6, .08) 60%);
}
.univers__body { position: absolute; left: 1.6rem; right: 1.6rem; bottom: 1.5rem; z-index: 2; }
.univers__index { font-family: var(--serif); font-size: .9rem; color: var(--wheat-soft); }
.univers__body h3 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: #fff; margin: .2rem 0 .45rem; text-wrap: balance;
}
.univers__body p { color: rgba(250, 244, 234, .9); font-size: .96rem; }

@media (max-width: 900px) {
  .univers__grid { grid-template-columns: repeat(2, 1fr); }
  .univers__card:nth-child(1), .univers__card:nth-child(2),
  .univers__card:nth-child(3), .univers__card:nth-child(4),
  .univers__card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 560px) {
  .univers__grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .univers__card { height: 200px; }
  .univers__card:nth-child(5) { grid-column: 1 / -1; height: 170px; }
  .univers__body { left: 1rem; right: 1rem; bottom: 1rem; }
  .univers__body h3 { font-size: 1.12rem; margin: .15rem 0 .3rem; }
  .univers__body p { font-size: .82rem; }
}

/* Smooth scroll (Lenis) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* =========================================================
   Détails premium (kinetic typography, clip wipes, micro-interactions)
   ========================================================= */

/* Barre de progression de lecture */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 81;
  background: var(--crust); transform: scaleX(0); transform-origin: 0 50%;
}

/* Navigation qui se compacte au défilement */
.nav__inner { transition: padding .35s var(--ease); }
.brand__mark { transition: width .35s var(--ease), height .35s var(--ease), font-size .35s var(--ease); }
.nav.is-scrolled .nav__inner { padding-block: .55rem; }
.nav.is-scrolled .brand__mark { width: 40px; height: 40px; font-size: 1.3rem; }

/* Fond chaud sous les images pendant le chargement */
.product__img, .gallery__item, .univers__card, .story__media, .oven__media { background-color: var(--cream-2); }

/* Barre de défilement discrète */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: #cab89d; border-radius: 6px; border: 3px solid var(--cream-2); }
::-webkit-scrollbar-thumb:hover { background: var(--crust); }

/* ---------- Vapeur discrète du four ---------- */
.steam { position: absolute; top: -12px; left: 10%; right: 10%; height: 80px; pointer-events: none; z-index: 2; }
.steam i {
  position: absolute; bottom: 0; width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 70%);
  filter: blur(9px); opacity: 0;
}
.steam i:nth-child(1) { left: 28%; animation: steamRise 6.5s ease-in-out infinite; }
.steam i:nth-child(2) { left: 52%; animation: steamRise 8s ease-in-out infinite 2.4s; }
.steam i:nth-child(3) { left: 72%; animation: steamRise 7.2s ease-in-out infinite 4s; }
@keyframes steamRise {
  0%   { transform: translateY(10px) scale(.6); opacity: 0; }
  35%  { opacity: .38; }
  100% { transform: translateY(-52px) scale(1.5); opacity: 0; }
}

/* ---------- Lien d'évitement (accessibilité) ---------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 210;
  background: var(--espresso); color: var(--cream);
  padding: .6rem 1rem; border-radius: 8px; font-size: .9rem; font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible { top: 12px; }

/* ---------- Finitions typographiques ---------- */
.h2, .hero__title, .univers__body h3, .product__body h3, .value h3, .menu__cat-title, .review p { text-wrap: balance; }
.hero__lead, .section-head__sub, .story__text p, .oven__desc, .value p, .univers__body p { text-wrap: pretty; }
body { font-feature-settings: "kern", "liga", "calt"; }

/* ---------- Micro-interactions ---------- */
.btn:active { transform: translateY(1px); }
.link-arrow:focus-visible svg { transform: translateX(4px); }

/* ---------- Galerie cliquable ---------- */
.gallery__item { border: none; padding: 0; cursor: zoom-in; font: inherit; -webkit-appearance: none; appearance: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(16, 10, 6, .93); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { max-width: min(92vw, 1100px); display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 0 16px; }
.lightbox__stage img {
  max-width: 100%; max-height: 78vh; border-radius: var(--radius-sm);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7);
  transform: scale(.96); transition: transform .4s var(--ease);
}
.lightbox.is-open .lightbox__stage img { transform: scale(1); }
.lightbox__cap { color: rgba(250, 244, 234, .85); font-size: .95rem; font-style: italic; font-family: var(--serif); }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; display: grid; place-items: center;
  background: rgba(250, 244, 234, .1); color: var(--cream);
  border: 1px solid rgba(250, 244, 234, .25); border-radius: 50%; cursor: pointer;
  transition: background .25s, transform .25s, border-color .25s;
}
.lightbox__close { top: 22px; right: 22px; width: 48px; height: 48px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--crust); border-color: transparent; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(250, 244, 234, .7); font-size: .85rem; letter-spacing: .12em; }

/* ---------- Sommaire latéral (points) ---------- */
.dots { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 55; display: flex; flex-direction: column; gap: .9rem; }
.dots__item {
  position: relative; width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(43, 27, 18, .25); transition: background .25s, transform .25s; padding: 0;
}
.dots__item:hover, .dots__item.is-active { transform: scale(1.35); }
.dots__item.is-active { background: var(--crust); }
.dots[data-on-dark="true"] .dots__item { background: rgba(250, 244, 234, .3); }
.dots[data-on-dark="true"] .dots__item.is-active { background: var(--wheat-soft); }
.dots__item span {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%); white-space: nowrap;
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  background: var(--espresso); color: var(--cream); padding: .3rem .6rem; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.dots__item:hover span { opacity: 1; }
@media (max-width: 980px) { .dots { display: none; } }

/* ---------- Footer : grande signature + retour haut ---------- */
.footer__wordmark {
  font-family: var(--serif); font-weight: 700; line-height: .9; text-align: center;
  font-size: clamp(3rem, 13vw, 11rem); color: rgba(250, 244, 234, .06);
  letter-spacing: -.02em; user-select: none; padding-top: 1rem;
}
.footer__top { display: inline-flex; align-items: center; gap: .45rem; color: rgba(250, 244, 234, .6); transition: color .2s; }
.footer__top:hover { color: var(--wheat-soft); }
.footer__top svg { width: 15px; height: 15px; }

/* ---------- Fiche détail produit ---------- */
.product { cursor: pointer; }
.product__more {
  display: flex; align-items: center; gap: .4rem; width: fit-content; margin-top: 1.1rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--crust);
}
.product__more::after { content: "\2192"; font-size: 1.05rem; transition: transform .3s var(--ease); }
.product:hover .product__more::after { transform: translateX(5px); }

.detail {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px;
  background: rgba(16, 10, 6, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.detail.is-open { opacity: 1; visibility: visible; }
.detail__panel {
  position: relative; width: min(900px, 100%); max-height: 88vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; background: var(--cream);
  border-radius: var(--radius); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7);
  transform: scale(.96) translateY(12px); transition: transform .4s var(--ease);
}
.detail.is-open .detail__panel { transform: none; }
.detail__media { background: var(--cream-2); }
.detail__media img { width: 100%; height: 100%; object-fit: cover; }
.detail__body { padding: clamp(1.6rem, 3vw, 2.6rem); overflow-y: auto; }
.detail__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--espresso); }
.detail__desc { color: var(--muted); margin: .7rem 0 1.3rem; }
.detail__list { display: grid; }
.detail__list li { display: flex; align-items: baseline; gap: .6rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.detail__name { color: var(--ink); font-weight: 500; }
.detail__price { margin-left: auto; font-family: var(--serif); font-weight: 600; color: var(--espresso); white-space: nowrap; }
.detail__note { margin-top: 1rem; font-size: .88rem; font-style: italic; color: var(--muted); }
.detail__body .btn { margin-top: 1.5rem; }
.detail__close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px;
  display: grid; place-items: center; cursor: pointer; border: none; border-radius: 50%;
  background: rgba(250, 244, 234, .9); color: var(--espresso); box-shadow: var(--shadow-sm);
  transition: background .25s, color .25s, transform .3s var(--ease);
}
.detail__close:hover { background: var(--crust); color: #fff; transform: rotate(90deg); }
.detail__close svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .detail__panel { grid-template-columns: 1fr; }
  .detail__media { max-height: 32vh; }
}

/* =========================================================
   Micro-détails (finition)
   ========================================================= */

/* Décalage d'ancrage sous la nav fixe */
html { scroll-padding-top: 84px; }
section[id] { scroll-margin-top: 84px; }

/* Filet éditorial devant les intitulés de section */
.kicker::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .55; flex-shrink: 0; }

/* Guillemet décoratif sur les avis */
.review { position: relative; overflow: hidden; }
.review::before {
  content: "\201C"; position: absolute; top: -.6rem; right: 1.1rem;
  font-family: var(--serif); font-size: 5.5rem; line-height: 1; color: var(--wheat-soft); opacity: .16;
}
.review > * { position: relative; z-index: 1; }

/* Indice de zoom au survol de la galerie */
.gallery__item { position: relative; }
.gallery__item::after {
  content: "+"; position: absolute; top: 50%; left: 50%;
  width: 52px; height: 52px; display: grid; place-items: center;
  transform: translate(-50%, -50%) scale(.7);
  font-family: var(--sans); font-weight: 300; font-size: 1.9rem; line-height: 1;
  color: #fff; background: rgba(180, 89, 42, .88); border-radius: 50%;
  opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Lignes de la carte : survol + prix alignés */
.menu__list li { transition: padding-left .25s var(--ease); }
.menu__list li:hover { padding-left: .4rem; }
.menu__list li:hover .menu__name { color: var(--crust); }
.menu__price { font-variant-numeric: tabular-nums; }

/* Coordonnées : icône animée au survol */
.contact__ic { transition: background .25s, color .25s, transform .3s var(--ease); }
.contact__list li:hover .contact__ic { background: var(--crust); color: #fff; transform: translateY(-3px); }

/* Liens de pied de page : soulignement qui se déploie */
.footer__col a { position: relative; }
.footer__col a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--wheat-soft); transition: width .3s var(--ease);
}
.footer__col a:hover::after { width: 100%; }

/* Logo qui s'incline au survol */
.brand__mark { transition: transform .4s var(--ease), width .35s var(--ease), height .35s var(--ease), font-size .35s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-6deg); }

/* Cartes : liseré accentué au survol */
.product { transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s; }
.product:hover { border-color: rgba(180, 89, 42, .35); }
.value { transition: transform .4s var(--ease), background .4s, border-color .35s; }
.value:hover { border-color: rgba(250, 244, 234, .32); }
.univers__card { transition: box-shadow .4s var(--ease); }
.univers__card:hover { box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .6); }

/* Module four : étiquettes réactives */
.oven__items li { transition: background .25s, border-color .25s, transform .25s var(--ease); }
.oven__items li:hover { background: var(--cream); border-color: var(--crust); transform: translateY(-2px); }

/* Étiquettes produits affinées + pas de flash tactile */
.product__tag { border: 1px solid rgba(180, 89, 42, .2); }
.btn, .gallery__item, .product, .dots__item, .amb__swatch { -webkit-tap-highlight-color: transparent; }

/* Boutons « Copier » des coordonnées */
.contact__list li > div { min-width: 0; }
.contact__copy {
  margin-left: auto; align-self: center; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--muted); border: 1px solid var(--line);
  border-radius: 999px; padding: .42rem .8rem;
  font-family: var(--sans); font-size: .76rem; font-weight: 600; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s var(--ease);
}
.contact__copy:hover { color: var(--crust); border-color: var(--crust); background: var(--cream-2); transform: translateY(-1px); }
.contact__copy svg { width: 14px; height: 14px; }
.contact__copy.is-copied { background: var(--crust); color: #fff; border-color: transparent; }

/* ---------- Animation d'entrée : séquence cinématique ---------- */
.intro {
  position: fixed; inset: 0; z-index: 300; overflow: hidden; pointer-events: auto;
  animation: introFail .6s ease 3.8s forwards;
}
.intro.is-done { display: none; }
.intro__content { position: absolute; inset: 0; background: #0a0603; overflow: hidden; will-change: transform; }
/* Fond chaud flou (bokeh de boulangerie) */
.intro__bg { position: absolute; inset: -6%; background: url("images/intro-pains.jpg") center/cover; filter: blur(12px) brightness(.42) saturate(1.1); opacity: 0; will-change: transform, opacity; }
/* Braise centrale */
.intro__ember {
  position: absolute; top: 46%; left: 50%; width: 38vmin; height: 38vmin; margin: -19vmin 0 0 -19vmin;
  border-radius: 50%; opacity: 0; will-change: transform, opacity;
  background: radial-gradient(circle, rgba(255, 214, 138, .9), rgba(255, 150, 60, .5) 35%, rgba(255, 120, 40, 0) 70%);
}
/* Étincelles */
.intro__sparks { position: absolute; inset: 0; z-index: 2; will-change: transform; }
.intro__sparks i {
  position: absolute; bottom: -4%; border-radius: 50%;
  background: radial-gradient(circle, #ffd98a, #ff8a2e 60%, transparent);
  box-shadow: 0 0 8px 2px rgba(255, 150, 50, .6); animation: sparkRise linear infinite;
}
@keyframes sparkRise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  12% { opacity: .9; }
  88% { opacity: .5; }
  100% { transform: translateY(-115vh) translateX(4vw) scale(.3); opacity: 0; }
}
/* La signature, lettre par lettre */
.intro__word { position: absolute; inset: 0; z-index: 3; display: grid; place-content: center; justify-items: center; gap: 1.2rem; text-align: center; will-change: transform; }
.intro__tagline { opacity: 0; font-size: clamp(.7rem, 1.4vw, .82rem); letter-spacing: .3em; text-transform: uppercase; color: var(--wheat-soft); }
.intro__logo { font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 10vw, 6.5rem); line-height: 1; color: var(--cream); letter-spacing: -.01em; text-shadow: 0 6px 50px rgba(0, 0, 0, .6); white-space: nowrap; }
.intro__ch { display: inline-block; will-change: transform, opacity; }
.intro__ap { color: var(--crust); }
.intro__o { color: var(--wheat-soft); }
@keyframes introFail { to { opacity: 0; visibility: hidden; } }

/* ---------- Mouvement réduit (accessibilité) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .marquee__track { animation: none; }
  .steam { display: none !important; }
  .intro { display: none !important; }
}
