/* =========================================================================
   LES BEIGNEURS — feuille de style principale
   Charte : bleu marine profond + crème/blanc cassé + filets dorés.
   Display rétro (Fraunces, soft/wonk) + sans-serif lisible (Manrope).
   Mobile-first, sans dépendance, sans build.
   ========================================================================= */

/* ----------------------------- Tokens ---------------------------------- */
:root {
  --navy: #16213e;
  --navy-2: #1b2a4a;
  --navy-3: #243556;
  --cream: #f6f1e6;
  --cream-2: #fbf8f1;
  --paper: #ffffff;
  --gold: #c9a24b;
  --gold-soft: #ddc183;
  --gold-ink: #856312; /* gold foncé pour texte sur fond clair (contraste AA) */
  --ink: #16213e;
  --ink-soft: #45506a;
  --on-navy: #f3ecdd;
  --on-navy-soft: #b9c0d2;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -24px rgba(22, 33, 62, 0.45);
  --shadow-soft: 0 8px 24px -16px rgba(22, 33, 62, 0.35);
  --ring: 0 0 0 3px rgba(201, 162, 75, 0.5);
  --pad: clamp(1.1rem, 4vw, 2rem);
}

/* ----------------------------- Reset ----------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Accessibilité : focus visible */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--on-navy);
  padding: 0.7rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip:focus {
  left: 0;
}

/* ----------------------------- Layout ---------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
section {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.section-head {
  max-width: 46rem;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.7rem;
}
/* Sur fond marine, on garde le gold vif (contraste suffisant) */
.quicklinks .eyebrow,
.brunch__card .eyebrow,
.proof .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}
.section-head h2 {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 600;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.center {
  text-align: center;
  margin-inline: auto;
}

/* Filet doré décoratif */
.rule-gold {
  height: 2px;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent
  );
  opacity: 0.7;
  margin: 0;
}

/* Motif « bandeau de rectangles marine » (repris des cartes) */
.band {
  height: 26px;
  background: repeating-linear-gradient(
    90deg,
    var(--navy) 0 42px,
    transparent 42px 84px
  );
}
.band--bottom {
  transform: rotate(180deg);
}

/* ----------------------------- Boutons --------------------------------- */
.btn {
  --bg: var(--gold);
  --fg: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.95em 1.5em;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn--outline {
  --bg: transparent;
  --fg: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--on-navy);
}
.btn--on-navy {
  --bg: var(--gold);
  --fg: var(--navy);
}
.btn--ghost-navy {
  --bg: transparent;
  --fg: var(--on-navy);
  border-color: rgba(243, 236, 221, 0.5);
}
.btn--ghost-navy:hover {
  background: rgba(243, 236, 221, 0.1);
}
.btn--sm {
  padding: 0.6em 1.1em;
  font-size: 0.85rem;
}

/* ----------------------------- Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 12%, transparent);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}
.brand__logo {
  width: 148px;
  height: auto;
}
.nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  padding: 0.3rem 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav a:hover::after {
  width: 100%;
}
.header-cta {
  display: none;
}
/* CTA compact visible uniquement en mobile (le CTA complet + la nav
   apparaissent à partir de 900px). Cible tactile ≥ 44px. */
.header-cta-mobile {
  display: inline-flex;
  flex: 0 0 auto;
}
.header-cta-mobile__icon {
  width: 1.05em;
  height: 1.05em;
}
@media (min-width: 900px) {
  .nav,
  .header-cta {
    display: flex;
  }
  .header-cta-mobile {
    display: none;
  }
}

/* ----------------------------- Hero ------------------------------------ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding-block: clamp(2.2rem, 6vw, 3.6rem) clamp(3rem, 8vw, 5rem);
}
/* halo doré discret derrière le visuel : guide l'œil vers la photo */
.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 6%;
  width: min(640px, 56vw);
  height: min(640px, 56vw);
  background: radial-gradient(
    circle at center,
    color-mix(in srgb, var(--gold) 26%, transparent),
    transparent 62%
  );
  opacity: 0.5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2.2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1.1rem;
}
.hero__eyebrow .filet {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 5.4rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 0.98;
  margin-bottom: 0.34em;
}
.hero h1 .em {
  color: var(--gold-ink);
  font-style: italic;
}
.hero__tagline {
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 1.7rem;
}
.hero__tagline strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.06em;
  margin-bottom: 0.3rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Visuel : photo réelle dans une arche (rappel du logo en arche) */
.hero__visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}
.hero__frame {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 230px 230px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  box-shadow: 0 36px 70px -32px rgba(22, 33, 62, 0.6);
  background: var(--navy-2);
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* filet doré intérieur épousant l'arche */
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(246, 241, 230, 0.32);
  border-radius: 222px 222px 8px 8px;
  pointer-events: none;
}

.hero__rating {
  position: absolute;
  top: 22px;
  right: -8px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--cream-2);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  box-shadow: 0 16px 40px -18px rgba(22, 33, 62, 0.55);
}

/* Carte photo « pâtisserie » épinglée sur le visuel : appétit + profondeur */
.hero__pop {
  position: absolute;
  left: -20px;
  bottom: 44px;
  width: clamp(116px, 33%, 168px);
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--cream-2);
  box-shadow: 0 24px 46px -20px rgba(22, 33, 62, 0.62);
  transform: rotate(-4deg);
}
.hero__pop img {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* filet doré intérieur, rappel de l'arche */
.hero__pop::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  border-radius: 8px;
  pointer-events: none;
}
.hero__rating-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--navy);
}
.hero__rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__rating-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

@media (max-width: 540px) {
  .hero__rating { right: 0; }
  .hero__pop { left: -6px; bottom: 36px; }
}

/* Motion : entrée hiérarchisée au chargement (neutralisée si reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > *,
  .hero__frame,
  .hero__rating {
    opacity: 0;
    animation: heroRise 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
  .hero__copy > *:nth-child(2) { animation-delay: 0.14s; }
  .hero__copy > *:nth-child(3) { animation-delay: 0.23s; }
  .hero__copy > *:nth-child(4) { animation-delay: 0.32s; }
  .hero__frame { animation-delay: 0.2s; animation-duration: 1s; }
  .hero__rating { animation-delay: 0.6s; }
  @keyframes heroRise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
  }
  /* La carte croissant garde sa rotation : keyframe dédiée */
  .hero__pop {
    opacity: 0;
    animation: popRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
  }
  @keyframes popRise {
    from { opacity: 0; transform: translateY(18px) rotate(-4deg) scale(0.96); }
    to { opacity: 1; transform: rotate(-4deg); }
  }
}
.stars {
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ----------------------------- Liens rapides --------------------------- */
.quicklinks {
  background: var(--navy);
  color: var(--on-navy);
}
.quicklinks .section-head h2 {
  color: var(--on-navy);
}
.quicklinks .section-head p {
  color: var(--on-navy-soft);
}
.ql-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (min-width: 620px) {
  .ql-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .ql-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ql {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem 1.1rem 1.2rem;
  background: var(--navy-2);
  border: 1px solid rgba(221, 193, 131, 0.22);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--on-navy);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}
.ql:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: var(--navy-3);
}
.ql__icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.ql__label {
  font-weight: 700;
  font-size: 1rem;
}
.ql__sub {
  font-size: 0.82rem;
  color: var(--on-navy-soft);
}

/* ----------------------------- Concept --------------------------------- */
.concept-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 760px) {
  .concept-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.concept-card {
  background: var(--cream-2);
  border: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
}
.concept-card__n {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-ink);
  letter-spacing: 0.1em;
}
.concept-card h3 {
  font-size: 1.5rem;
  margin: 0.3rem 0 0.5rem;
}
.concept-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* ----------------------------- Signature ------------------------------- */
.signature {
  background: var(--navy);
  color: var(--on-navy);
  text-align: center;
}
.signature h2 {
  color: var(--on-navy);
  font-size: clamp(1.9rem, 5vw, 3rem);
}
.signature .lead {
  max-width: 40rem;
  margin-inline: auto;
  color: var(--on-navy-soft);
  font-size: 1.12rem;
}
.signature .since {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.15rem;
}

/* ----------------------------- Carte (onglets) ------------------------- */
.menu .tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  margin-bottom: 1.6rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.tab {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.6em 1.1em;
  border-radius: 999px;
  border: 1.5px solid color-mix(in srgb, var(--navy) 22%, transparent);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.tab:hover {
  border-color: var(--gold);
}
.tab[aria-selected="true"] {
  background: var(--navy);
  color: var(--on-navy);
  border-color: var(--navy);
}
.panel {
  animation: fade 0.25s ease;
}
.panel[hidden] {
  display: none;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.panel__intro {
  color: var(--ink-soft);
  max-width: 42rem;
  margin-bottom: 1.6rem;
}
.menu-group {
  margin-bottom: 2rem;
}
.menu-group__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}
.menu-group__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--gold) 70%, transparent),
    transparent
  );
}
.menu-group__note {
  font-size: 0.88rem;
  color: var(--gold-ink);
  font-weight: 700;
  font-style: italic;
}
.menu-list {
  display: grid;
  gap: 0.1rem;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--navy) 14%, transparent);
}
.menu-item__name {
  font-weight: 700;
  color: var(--navy);
}
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
}
.menu-item__price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-ink);
  white-space: nowrap;
}
.menu__pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  text-decoration: none;
  border: 1.5px solid color-mix(in srgb, var(--navy) 25%, transparent);
  padding: 0.5em 0.9em;
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.menu__pdf:hover {
  border-color: var(--gold);
  background: var(--cream-2);
}
.menu__disclaimer {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ----------------------------- Brunch focus ---------------------------- */
.brunch {
  background: var(--cream-2);
}
.brunch__card {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--navy);
  color: var(--on-navy);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}
@media (min-width: 820px) {
  .brunch__card {
    grid-template-columns: 1.1fr 1fr;
  }
}
.brunch__card h2 {
  color: var(--on-navy);
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}
.brunch__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 4.6rem);
  color: var(--gold);
  line-height: 1;
  margin: 0.2em 0;
}
.brunch__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--on-navy-soft);
  letter-spacing: 0.04em;
}
.brunch__list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(221, 193, 131, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.7rem;
  row-gap: 0.15rem;
}
.brunch__list li::before {
  content: "✦";
  color: var(--gold);
  grid-column: 1;
  grid-row: 1 / span 2;
  line-height: 1.3;
}
.brunch__list strong {
  grid-column: 2;
  color: var(--on-navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.brunch__list span {
  grid-column: 2;
  color: var(--on-navy-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ----------------------------- Preuve sociale -------------------------- */
.proof {
  background: var(--navy);
  color: var(--on-navy);
  overflow: hidden;
}
.proof__head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}
.proof__head h2 {
  color: var(--on-navy);
}
.proof__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  color: var(--on-navy-soft);
}
.proof__meta-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}
.proof__meta-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* Carrousel défilant ------------------------------------------------------ */
.marquee {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 1.1rem;
  /* dégradé de fondu sur les bords */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__row {
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
}
.marquee__row--a .marquee__track {
  animation: marqueeL 64s linear infinite;
}
.marquee__row--b .marquee__track {
  animation: marqueeR 72s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
@keyframes marqueeL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Carte avis */
.rev {
  flex: 0 0 auto;
  width: clamp(260px, 78vw, 340px);
  margin: 0;
  background: var(--cream-2);
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--gold) 26%, transparent);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 20px 44px -28px rgba(0, 0, 0, 0.55);
}
.rev__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.rev__ava {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.rev:nth-child(even) .rev__ava {
  background: var(--gold);
  color: var(--navy);
}
.rev__id {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.rev__id b {
  font-weight: 700;
  color: var(--navy);
}
.rev__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.rev__src {
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.rev__q {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink-soft);
  /* tronque proprement à 4 lignes max */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proof__cta {
  text-align: center;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

/* Sans animation : on fige et on permet le défilement manuel */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none !important;
  }
  .marquee__row {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .marquee__row::-webkit-scrollbar { display: none; }
}

/* ----------------------------- Adresses -------------------------------- */
.places-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 760px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.place {
  background: var(--cream-2);
  border: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}
.place__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
  background: color-mix(in srgb, var(--gold) 16%, transparent);
  padding: 0.3em 0.7em;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.place h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.place address {
  font-style: normal;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.place__hours {
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.place__hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--navy) 12%, transparent);
}
.place__hours dt {
  color: var(--ink-soft);
}
.place__hours .closed {
  color: var(--gold-ink);
  font-weight: 700;
}
.place__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ----------------------------- Histoire -------------------------------- */
.story {
  background: var(--cream-2);
}
.story__inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 820px) {
  .story__inner {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
.story__lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.25;
}
.story p {
  color: var(--ink-soft);
}
.story__producers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent);
  padding: 0.4em 0.85em;
  border-radius: 999px;
}

/* ----------------------------- Contact --------------------------------- */
.contact {
  background: var(--navy);
  color: var(--on-navy);
  text-align: center;
}
.contact h2 {
  color: var(--on-navy);
}
.contact__tel {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  margin: 0.3rem 0 1.2rem;
}
.contact__tel:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold-soft);
}
.contact p {
  color: var(--on-navy-soft);
}

/* ----------------------------- Footer ---------------------------------- */
.site-footer {
  background: var(--navy-2);
  color: var(--on-navy-soft);
  font-size: 0.9rem;
  padding-block: 2.5rem 2rem;
}
.site-footer a {
  color: var(--on-navy);
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.site-footer ul li {
  padding: 0.2rem 0;
}
.legal {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(221, 193, 131, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.82rem;
  align-items: center;
}
.credit {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--on-navy-soft);
}
.credit__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.credit__logo {
  width: 122px;
  height: auto;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.credit:hover .credit__logo {
  opacity: 1;
  transform: translateY(-1px);
}

/* ----------------------------- Pages document -------------------------- */
.doc {
  padding-block: clamp(2.5rem, 7vw, 4rem);
  max-width: 52rem;
}
.doc h1 {
  font-size: clamp(2rem, 6vw, 3rem);
}
.doc .back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.doc .back:hover {
  color: var(--gold);
}
.doc h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  color: var(--navy);
}
.doc p,
.doc li {
  color: var(--ink-soft);
}
.doc address {
  font-style: normal;
}
.doc dl {
  margin: 0 0 1rem;
}
.doc dt {
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.6rem;
}
.doc dd {
  margin: 0;
  color: var(--ink-soft);
}
.doc strong {
  color: var(--navy);
}

/* ----------------------------- Utilitaires ----------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
