/* ==========================================================================
   Huîtres & Coquillages Le Guennec — feuille de style
   Palette extraite du logo officiel (navy/pétrole + crème + or/moutarde)
   Typographie : Playfair Display (titres) + Inter (texte)
   ========================================================================== */

:root {
  /* Couleurs de marque (échantillonnées depuis le logo) */
  --navy-900: #12303F;
  --navy-800: #16394C;
  --navy-700: #1D4560;
  --navy-600: #225173; /* couleur primaire exacte du logo */
  --navy-500: #336489;
  --gold-700: #93752E;
  --gold-600: #AC8B3F; /* accent principal, dérivé du liseré citron du logo */
  --gold-500: #C6A557;
  --gold-300: #E4CE95;
  --btn-gold: #c9974f; /* fond doré unifié pour tous les boutons d'action */
  --btn-gold-hover: #d9ab6a;
  --shell-100: #F8ECD2; /* nacre intérieure de coquille, du logo */
  --cream-100: #FBF8F1; /* fond général */
  --cream-050: #FFFDF9;
  --ink-900: #142A36;   /* texte principal */
  --ink-600: #3E5766;
  --ink-400: #6B818D;
  --white: #FFFFFF;
  --line: rgba(20, 42, 54, 0.12);
  --line-soft: rgba(20, 42, 54, 0.07);

  /* Typographie */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Échelle d'espacement */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Rayons & ombres */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(20, 42, 54, 0.08);
  --shadow-md: 0 12px 32px -8px rgba(20, 42, 54, 0.22);
  --shadow-lg: 0 28px 60px -16px rgba(20, 42, 54, 0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

/* ---------- Reset minimal ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; position: relative; font-size: 112.5%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  background: var(--cream-100);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  font-weight: 600;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
}

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

@media (min-width: 768px) {
  .container { padding-inline: var(--space-lg); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-600);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
.section-head p { margin-top: var(--space-sm); color: var(--ink-600); font-size: 1.08rem; }

section { position: relative; }
.section-pad { padding-block: var(--space-2xl); }
@media (max-width: 640px) {
  .section-pad { padding-block: var(--space-xl); }
}

.bg-cream { background: var(--cream-100); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy-900); color: var(--shell-100); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-shell { background: var(--shell-100); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--btn-gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--btn-gold-hover); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
  border-width: 2px;
  backdrop-filter: blur(6px);
  font-weight: 700;
}
.btn-ghost:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: var(--white); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

/* Ligne 1 : reseaux sociaux / logo centre / appel, sur 3 colonnes */
.header-brand-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-md) var(--space-sm);
  transition: padding-block 0.35s var(--ease);
}
.site-header.is-scrolled .header-brand-row { padding-block: var(--space-2xs); }
.brand-center {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.brand-center img { height: 130px; width: auto; transition: height 0.35s var(--ease); }
.site-header.is-scrolled .brand-center img { height: 100px; }
.brand-center .logo-color { display: none; }
.site-header.is-scrolled .brand-center .logo-white { display: none; }
.site-header.is-scrolled .brand-center .logo-color { display: block; }
@media (max-width: 640px) {
  .brand-center img { height: 95px; }
  .site-header.is-scrolled .brand-center img { height: 65px; }
}

/* Ligne 2 : navigation centrée, actions à droite */
.header-nav-row {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-block: var(--space-sm);
  transition: padding-block 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.is-scrolled .header-nav-row { border-top-color: var(--line-soft); padding-block: var(--space-2xs); }
.nav-row-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.main-nav { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; }
.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-block: var(--space-2xs);
  padding-inline: var(--space-3xs);
  transition: color 0.3s var(--ease);
}
.site-header.is-scrolled .main-nav a { color: var(--navy-800); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions {
  position: static;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.header-actions .btn-primary { padding: 0.7rem 1.4rem; font-size: 0.88rem; }

.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.header-social-link svg { width: 20px; height: 20px; }
.header-social-link:hover,
.header-social-link:focus-visible { opacity: 0.8; transform: scale(1.05); }
.site-header.is-scrolled .header-social-link { color: var(--navy-800); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2xs);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--white); }
.site-header.is-scrolled .nav-toggle svg { color: var(--navy-900); }

@media (max-width: 1300px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100dvh;
    height: 100dvh;
    overflow-y: auto;
    background-color: #ffffff !important;
    display: none !important;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 88px 24px 32px;
    z-index: 99999;
    pointer-events: none;
  }
  .main-nav.is-open { display: flex !important; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: var(--space-lg); text-align: center; }
  .main-nav a { color: var(--navy-900); font-size: 1.4rem; padding-block: var(--space-xs); display: inline-block; }
  .main-nav a::after { display: none; }
  .header-actions .btn-primary span { display: none; }
  .nav-toggle { display: inline-flex; z-index: 101; }
  body.nav-is-open .header-actions .nav-toggle:not(.nav-close) { visibility: hidden; }
  html.nav-is-open,
  body.nav-is-open { overflow: hidden; height: 100%; }
  .header-nav-row { border-top: none; padding-block: 0; }
}
@media (min-width: 1301px) {
  .nav-close { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 74svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 40%;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,48,63,0.55) 0%, rgba(18,48,63,0.25) 32%, rgba(18,48,63,0.55) 78%, rgba(18,48,63,0.92) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: calc(var(--space-3xl) + 6.5rem) var(--space-xl);
  width: 100%;
}
.hero-text-block {
  max-width: 560px;
}
.hero .eyebrow {
  color: var(--gold-300);
}
.hero .eyebrow::before { background: var(--gold-300); }
.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  line-height: 1.18;
}
.hero .tagline {
  margin-top: var(--space-md);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--shell-100);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-ctas {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xs);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 1;
}
.scroll-cue .line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(0.55); opacity: 1; }
}
@media (max-width: 640px) {
  .scroll-cue { display: none; }
}

/* ---------- Carte flottante "Où nous trouver aujourd'hui ?" (Hero) ---------- */
.hero-market-card {
  display: none;
  position: absolute;
  top: 300px;
  bottom: var(--space-xl);
  right: var(--space-2xl);
  margin-block: auto;
  z-index: 2;
  width: 340px;
  background: rgba(13, 24, 38, 0.88);
  border: 1px solid rgba(198,165,87,0.45);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--white);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1180px) {
  .hero-market-card { display: block; }
}
.hero-market-status {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-md);
}
.hero-market-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400, var(--gold-500));
  box-shadow: 0 0 0 3px rgba(198,165,87,0.28);
  animation: heroMarketPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-market-dot.is-live {
  background: #5FAE7A;
  box-shadow: 0 0 0 3px rgba(95,174,122,0.3);
}
@keyframes heroMarketPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.hero-market-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--white);
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.btn-hero-market {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  width: 100%;
  background: var(--btn-gold);
  color: var(--navy-900) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-pill, 999px);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-hero-market:hover { background: var(--btn-gold-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
@media (max-width: 768px) {
  .hero-market-card {
    display: block;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    bottom: auto;
    margin: 0;
    width: auto;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(198, 165, 87, 0.45);
    padding: var(--space-2xs) var(--space-md);
    box-shadow: none;
  }
  .hero-market-status { margin-bottom: 2px; font-size: 0.66rem; }
  .hero-market-text {
    font-size: 0.88rem;
    line-height: 1.3;
    padding-bottom: var(--space-2xs);
    margin-bottom: var(--space-2xs);
  }
  .btn-hero-market { font-size: 0.8rem; padding: 0.55rem 0.8rem; }
}

/* ---------- Bande de réassurance (sous le hero) ---------- */
.reassurance-band {
  background: #0d1826;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.reassurance-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2xl);
  row-gap: var(--space-sm);
  padding-block: var(--space-md);
}
.reassurance-band li {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

/* ---------- Bandeau atouts ---------- */
.highlights-strip {
  background: var(--navy-900);
  color: var(--shell-100);
  padding-block: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.highlights-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  row-gap: var(--space-sm);
}
.highlights-strip li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.highlights-strip svg { width: 22px; height: 22px; color: var(--gold-500); flex-shrink: 0; }

/* ---------- Histoire ---------- */
.histoire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 900px) {
  .histoire-grid {
    grid-template-columns: 0.95fr 1.05fr;
    grid-template-areas: "media heading" "media body";
    row-gap: 0;
    column-gap: var(--space-2xl);
    align-items: start;
  }
  .histoire-media { grid-area: media; }
  .histoire-heading { grid-area: heading; }
  .histoire-text-body, .histoire-teaser { grid-area: body; }
}
.histoire-media { position: relative; }
.histoire-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
}
.histoire-text-body p { color: var(--ink-600); margin-bottom: var(--space-sm); font-size: 1.05rem; }

/* ---------- La Doyenne ---------- */
.doyenne-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 900px) {
  .doyenne-grid {
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-areas: "media heading" "media body";
    gap: var(--space-2xl);
    row-gap: 0;
    align-items: start;
  }
  .doyenne-media { grid-area: media; }
  .doyenne-heading { grid-area: heading; }
  .doyenne-text-body { grid-area: body; }
}
.doyenne-media { max-width: 360px; margin-inline: auto; }
@media (min-width: 900px) {
  .doyenne-media { max-width: none; margin-inline: 0; }
}
.step-carousel.doyenne-carousel {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.doyenne-heading h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin-top: var(--space-2xs); margin-bottom: var(--space-sm); }
.doyenne-text-body p { color: var(--ink-600); font-size: 1.05rem; }
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy-800);
  border-left: 3px solid var(--gold-500);
  padding-left: var(--space-md);
  margin-block: var(--space-lg);
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: var(--space-xs);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-400);
  letter-spacing: 0.02em;
}
/* ---------- Presse ---------- */
.presse-block {
  margin-top: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.presse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--line-soft);
}
.presse-head h3 { font-size: 1.3rem; }
.presse-source {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-400);
  letter-spacing: 0.03em;
}
.presse-source svg { width: 18px; height: 18px; color: var(--gold-600); }
.presse-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--space-lg);
}
.presse-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--navy-800);
  line-height: 1.5;
  position: relative;
  padding-left: var(--space-md);
}
.presse-quote::before {
  content: "\201C";
  position: absolute;
  left: -0.15em;
  top: -0.1em;
  font-size: 2rem;
  color: var(--gold-500);
  font-family: var(--font-display);
}
.presse-caption {
  margin-top: var(--space-lg);
  font-size: 0.86rem;
  color: var(--ink-400);
  font-style: italic;
}

/* ---------- Frise chronologique ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin-top: var(--space-xl);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--line));
}
.timeline-item {
  position: relative;
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.timeline-item.is-medal .timeline-dot { background: var(--gold-500); color: var(--navy-900); }
.timeline-dot svg { width: 24px; height: 24px; }
.timeline-body { padding-top: var(--space-2xs); }
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-700);
}
.timeline-body h4 { margin-top: 2px; font-size: 1.1rem; color: var(--navy-900); }
.timeline-body p { margin-top: var(--space-3xs); color: var(--ink-600); font-size: 0.95rem; max-width: 52ch; }
.timeline-item.is-placeholder .timeline-dot { border-style: dashed; color: var(--ink-400); }
.timeline-item.is-placeholder p { font-style: italic; color: var(--ink-400); }

/* ---------- Page "Nos Points de Vente" ---------- */
.pdv-chantier-contacts { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-md); }
.pdv-chantier-contacts a { font-weight: 700; color: var(--gold-300); font-size: 0.92rem; }
.pdv-chantier-contacts a:hover { color: var(--white); }

.pdv-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 980px) {
  .pdv-layout { grid-template-columns: 1.5fr 1fr; align-items: start; }
  .pdv-layout #marche-map { position: sticky; top: calc(var(--space-lg) + 90px); height: calc(100vh - 160px); min-height: 800px; }
}

/* ---------- Page "Presse & Média" : hero immersif ---------- */
.presse-hero {
  position: relative;
  min-height: max(50vh, 460px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.presse-hero-media { position: absolute; inset: 0; z-index: 0; }
.presse-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.presse-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.presse-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,48,63,0.55) 0%, rgba(18,48,63,0.25) 32%, rgba(18,48,63,0.55) 78%, rgba(18,48,63,0.92) 100%);
}
.presse-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding-block: calc(var(--space-3xl) + 5.5rem) var(--space-2xl);
}
.presse-hero .eyebrow { justify-content: center; color: var(--gold-400, var(--gold-500)); }
.presse-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.4vw, 3.3rem); text-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.presse-hero-inner p { margin-top: var(--space-sm); max-width: 56ch; margin-inline: auto; color: var(--shell-100); font-size: 1.08rem; }
.presse-hero .breadcrumb-back { color: var(--shell-100); }

/* ---------- Page "Presse & Média" : bandeau logos presse ---------- */
.press-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.press-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--space-2xs) var(--space-sm);
  height: 52px;
  box-shadow: var(--shadow-sm);
}
.press-logo-chip img {
  height: 100%;
  max-height: 32px;
  width: auto;
  display: block;
}

/* ---------- Page "Presse & Média" : reportage TVR (video locale dans un article gazette) ---------- */
.tvr-local-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  background: var(--ink-900);
  object-fit: cover;
}

/* ---------- Page "Presse & Média" : articles style gazette ---------- */
.gazette-section { padding-block: var(--space-2xl); }
.gazette-article {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas: "heading media" "body media";
  column-gap: var(--space-2xl);
  row-gap: var(--space-md);
  align-items: start;
  padding-block: var(--space-2xl);
}
.gazette-article-media-left {
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas: "media heading" "media body";
}
.gazette-heading { grid-area: heading; }
.gazette-body { grid-area: body; }
.gazette-media { grid-area: media; }
.gazette-article + .gazette-article { border-top: 2px solid var(--line); }
.gazette-media {
  position: relative;
  align-self: start;
}
.gazette-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  background: var(--ink-900);
}
.gazette-media .presse-article-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(18,48,63,0.85);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
}

.gazette-body { max-width: 62ch; }
.gazette-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-2xs);
}
.gazette-headline {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.gazette-headline span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62em;
  color: var(--ink-400);
  margin-top: var(--space-2xs);
  letter-spacing: 0.01em;
}
.gazette-body h3 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-top: var(--space-md);
  margin-bottom: var(--space-2xs);
}
.gazette-body h3:first-of-type { margin-top: 0; }
.gazette-body p {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  color: var(--ink-700, var(--ink-600));
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: var(--space-sm);
}
.gazette-dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 3.2em;
  font-weight: 700;
  float: left;
  line-height: 0.82;
  padding: 0.04em 0.08em 0 0;
  color: var(--navy-900);
}
.gazette-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy-800);
  font-size: 1.15rem;
  line-height: 1.5;
  margin: var(--space-md) 0;
  padding-left: var(--space-md);
  border-left: 3px solid var(--gold-500);
}
.gazette-pullquote cite {
  display: block;
  margin-top: var(--space-xs);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-400);
}
.gazette-source-btn { margin-top: var(--space-sm); }
.gazette-archive-note {
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-400);
}
.gazette-footnote {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-400);
  text-align: center;
}

.gazette-article-feature {
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-2xl);
  row-gap: var(--space-md);
  padding-block: calc(var(--space-2xl) + var(--space-lg));
}
.gazette-article-feature .gazette-body { max-width: none; }
.gazette-article-feature .gazette-media img { box-shadow: var(--shadow-lg); }

@media (max-width: 860px) {
  .gazette-article,
  .gazette-article-media-left {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "media" "body";
  }
  .gazette-body { max-width: none; }
}

/* ---------- Page "Notre Histoire" : en-tête ---------- */
.page-hero {
  padding-block: calc(var(--space-3xl) + 5.5rem) var(--space-xl);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    linear-gradient(180deg, rgba(18, 48, 63, 0.55) 0%, rgba(18, 48, 63, 0.25) 32%, rgba(18, 48, 63, 0.55) 78%, rgba(18, 48, 63, 0.92) 100%),
    url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--shell-100);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; color: var(--gold-400, var(--gold-500)); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3.2rem); }
.page-hero p { margin-top: var(--space-sm); max-width: 56ch; margin-inline: auto; color: var(--shell-100); font-size: 1.08rem; }
.breadcrumb-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-top: var(--space-lg);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--shell-100);
  opacity: 0.85;
  transition: opacity 0.25s var(--ease);
}
.breadcrumb-back:hover { opacity: 1; }
.breadcrumb-back svg { width: 16px; height: 16px; }

.archive-note {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--shell-100);
  border-radius: var(--radius-md);
  border: 1px dashed var(--gold-500);
}
.archive-note svg { width: 26px; height: 26px; color: var(--gold-700); flex-shrink: 0; }
.archive-note p { font-size: 0.95rem; color: var(--ink-600); }
.archive-note strong { color: var(--navy-900); }

.histoire-teaser {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}
.histoire-teaser .btn-outline { margin-top: var(--space-sm); }

/* ---------- Galerie d'archives ---------- */
.archive-era { margin-top: var(--space-xl); }
.archive-era:first-of-type { margin-top: 0; }
.archive-era-title {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--navy-700);
  text-align: center;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold-300);
}
.archives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 260px));
  justify-content: center;
  gap: var(--space-md);
}
.archive-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.archive-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.archive-card { cursor: zoom-in; }
.archive-card:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 3px; }
.archive-card::after {
  content: "";
  position: absolute;
  top: var(--space-2xs);
  right: var(--space-2xs);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(18,48,63,0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.archive-card:hover::after, .archive-card:focus-visible::after { opacity: 1; }
.archive-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 0.6s var(--ease); }
.archive-card:hover img { transform: scale(1.18); }
.archive-card.is-document img { object-fit: contain; background: var(--ink-900); transform: none; }
.archive-card.is-document:hover img { transform: none; }
.archive-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(180deg, transparent, rgba(18,48,63,0.92));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- Production ---------- */
.production-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-xl);
}
.production-banner img { width: 100%; height: clamp(280px, 46vw, 520px); object-fit: cover; }
.production-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.production-banner-text {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  color: #FFFFFF !important;
}
.production-banner-text * { color: #FFFFFF !important; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); }
.production-banner-text h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.production-banner-text p { margin-top: var(--space-sm); font-size: 1.02rem; }
@media (max-width: 768px) {
  .production-banner { min-height: 400px; }
  .production-banner img { height: 400px; min-height: 400px; }
  .production-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 85%;
    margin: 0;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.85);
    height: auto;
    max-height: none;
    padding: 1rem 1.25rem;
  }
  .production-banner-text h3 { font-size: 1.3rem; }
  .production-banner-text p { font-size: 0.88rem; }
}

.site-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.site-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.site-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.site-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.site-card:hover .site-card-media img { transform: scale(1.06); }
.site-card-media svg {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  width: 34px; height: 34px;
  padding: 6px;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: 50%;
}
.site-card-body { padding: var(--space-md) var(--space-lg) var(--space-lg); }
.site-card h3 { font-size: 1.1rem; color: var(--navy-900); margin-bottom: var(--space-3xs); }
.site-card p { font-size: 0.92rem; color: var(--ink-600); }

.hours-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 420px;
  color: var(--shell-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  margin-bottom: var(--space-xl);
}
.hours-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(13, 24, 38, 0.45), rgba(13, 24, 38, 0.45)), url('../img/chantier-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hours-box-content { max-width: 560px; width: 100%; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); }
.hours-box .eyebrow { color: var(--gold-300); }
.hours-box h2 { color: var(--white); font-size: 1.3rem; margin-bottom: var(--space-md); }
.hours-list { display: flex; flex-direction: column; gap: var(--space-xs); margin-bottom: var(--space-md); }
.hours-list li { display: flex; align-items: center; gap: var(--space-xs); font-size: 0.96rem; }
.hours-list svg { width: 20px; height: 20px; color: var(--gold-400, var(--gold-500)); flex-shrink: 0; }
.hours-box .pdv-chantier-contacts { margin-bottom: var(--space-lg); }
.hours-box .btn-primary { flex-shrink: 0; }

.tools-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  align-items: start;
  background: var(--shell-100);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
@media (min-width: 780px) {
  .tools-row {
    grid-template-columns: 1fr 1.3fr;
    grid-template-areas: "media heading" "media body";
    row-gap: 0;
  }
  .tools-carousel { grid-area: media; }
  .tools-heading { grid-area: heading; }
  .tools-body { grid-area: body; }
}
.tools-row > img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; object-fit: cover; }
.step-carousel.tools-carousel { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.tools-row h4 { margin-bottom: var(--space-xs); }
.tools-row ul { display: flex; flex-direction: column; gap: var(--space-xs); }
.tools-row li { font-size: 0.96rem; color: var(--ink-600); display: flex; gap: var(--space-xs); }
.tools-row li::before { content: "—"; color: var(--gold-600); font-weight: 700; }

/* ---------- Produits ---------- */
.produits-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}
@media (min-width: 900px) {
  .produits-intro { grid-template-columns: 1fr 1fr; }
}
.produits-intro img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.no-price-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-top: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--shell-100);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}
.no-price-note svg { width: 18px; height: 18px; color: var(--gold-700); }

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.produit-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.produit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.produit-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.produit-card:hover img { transform: scale(1.06); }
.produit-card.no-photo {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
}
.produit-card.no-photo svg { width: 46px; height: 46px; color: var(--gold-300); opacity: 0.85; }
.produit-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  background: linear-gradient(180deg, transparent 45%, rgba(18,48,63,0.92) 100%);
  color: var(--white);
}
.produit-card.no-photo .produit-card-overlay { background: none; position: static; padding: 0; text-align: center; }
.produit-card-overlay h4 { color: var(--white); font-size: 1.05rem; }
.produit-card-overlay .tag {
  display: inline-block;
  margin-top: var(--space-3xs);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.produit-card.no-photo h4 { margin-top: var(--space-xs); font-size: 1rem; color: var(--white); }
.produit-medal {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}
.produit-medal svg { width: 13px; height: 13px; }

.calibrage-title {
  font-family: "Dancing Script", var(--font-display), cursive;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-align: center;
  color: var(--navy-900);
  margin-bottom: var(--space-2xs);
}

/* ---- Schéma des calibres : anneaux concentriques (desktop) ---- */
.calibrage-diagram {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 680 / 760;
  margin: var(--space-xl) auto;
  display: none;
}
@media (min-width: 820px) { .calibrage-diagram { display: block; } }
.calibrage-rings { position: absolute; inset: 0; width: 100%; height: 100%; }
.calibrage-label {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.calibrage-label strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--navy-900); }
.calibrage-label span { display: block; font-size: 0.72rem; color: var(--ink-600); line-height: 1.3; }

/* ---- Liste repliée (mobile) ---- */
.calibrage-list-mobile {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 420px;
  margin: var(--space-xl) auto;
}
@media (min-width: 820px) { .calibrage-list-mobile { display: none; } }
.calibrage-list-mobile li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--cream-100);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}
.calibrage-list-mobile strong { font-family: var(--font-display); font-size: 1rem; color: var(--navy-900); flex-shrink: 0; }
.calibrage-list-mobile span:last-child { font-size: 0.85rem; color: var(--ink-600); }
.calibrage-mobile-dot {
  width: var(--dot-size, 30px);
  height: var(--dot-size, 30px);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--gold-300), var(--gold-600) 72%);
  box-shadow: inset 0 -3px 6px rgba(18,48,63,0.18);
  flex-shrink: 0;
}
.calibrage-mobile-dot.is-largest { background: radial-gradient(circle at 32% 28%, var(--gold-300), var(--navy-700) 78%); }

.calibre-table-wrap { overflow-x: auto; }
table.calibre-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
table.calibre-table th, table.calibre-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
table.calibre-table th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 700;
}
table.calibre-table td:first-child { font-family: var(--font-display); font-weight: 600; color: var(--navy-800); font-size: 1.05rem; }
table.calibre-table tr:last-child td { border-bottom: none; }
.conservation-note {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--shell-100);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--ink-600);
}
.conservation-note svg { width: 22px; height: 22px; color: var(--gold-700); flex-shrink: 0; }

/* ---------- Marchés ---------- */
.marches-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 980px) {
  .marches-layout { grid-template-columns: 1fr 1.15fr; align-items: start; }
  #marche-map { position: sticky; top: calc(var(--space-lg) + 90px); }
}
#marche-map {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  background: var(--shell-100);
}
@media (max-width: 640px) { #marche-map { height: 340px; } }
#marche-map .leaflet-tile-pane,
#contact-map .leaflet-tile-pane {
  filter: grayscale(45%) sepia(12%) saturate(108%) brightness(1.04);
}
#marche-map .leaflet-bar a, #contact-map .leaflet-bar a { color: var(--navy-800); }

.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--space-lg);
  text-align: center;
  color: var(--ink-400);
  font-size: 0.9rem;
}

.marche-schedule { display: flex; flex-direction: column; }

.section-cta { text-align: center; margin-top: var(--space-xl); }

/* ---------- Cartes éditoriales "Nos marchés" (accueil) ---------- */
.marche-editorial-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--space-lg);
  max-width: 1080px;
  margin: var(--space-xl) auto 0;
}
.marche-editorial-card {
  background: var(--cream-050);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.marche-editorial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.marche-editorial-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.marche-editorial-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.marche-editorial-card:hover .marche-editorial-media img { transform: scale(1.06); }
.marche-editorial-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--btn-gold);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: var(--radius-pill, 999px);
}
.marche-editorial-body { padding: var(--space-md) var(--space-lg) var(--space-lg); text-align: center; }
.marche-editorial-body h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy-900); margin-bottom: 4px; }
.marche-editorial-body p { font-size: 0.86rem; color: var(--ink-600); font-weight: 600; margin-bottom: var(--space-sm); }
.btn-marche-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--btn-gold);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill, 999px);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-marche-go:hover { background: var(--btn-gold-hover); transform: translateY(-1px); }

/* Rangées de marché — photo + infos, inspirées de quentinetemmeline.fr */
.marche-day-heading {
  font-family: "Dancing Script", var(--font-display), cursive;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
}
.marche-day-group { margin-bottom: var(--space-xl); }
.marche-day-group:last-child { margin-bottom: 0; }
.marche-day-group .marche-photocard + .marche-photocard { margin-top: var(--space-md); }
.marche-photocard {
  display: flex;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}
.marche-photocard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.marche-photocard-media {
  flex: 0 1 280px;
  width: 100%;
  max-width: 280px;
  min-height: 160px;
  position: relative;
  overflow: visible;
  background: transparent;
}
.marche-photocard-media img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
  transform: scale(1.08);
  transition: transform 0.4s var(--ease);
}
.marche-photocard-content {
  flex: 1 1 260px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.marche-photocard h4 { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.28rem; color: var(--navy-900); }
.marche-schedule-line { font-size: 0.92rem; color: var(--ink-600); margin-top: 2px; }
.btn-marche-go-list {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-sm);
  background: var(--btn-gold);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill, 999px);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-marche-go-list:hover { background: var(--btn-gold-hover); transform: translateY(-1px); }
.marche-photocard.is-today { box-shadow: 0 0 0 3px var(--gold-500), var(--shadow-md); }
@media (max-width: 560px) {
  .marche-photocard-media { flex-basis: auto; width: 100%; max-width: none; height: 170px; }
}

/* ---------- Où déguster nos huîtres : adresses partenaires ---------- */
.resto-section {
  background: #0d1826;
  color: var(--shell-100);
}
.resto-section .calibrage-title { color: var(--gold-300); }
.resto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: var(--space-xl);
}
.resto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.resto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.resto-card-media {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.12);
  outline: 1px solid rgba(198, 165, 87, 0.4);
}
.resto-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.resto-card-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800, #17364a), var(--navy-900));
  color: var(--gold-300);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.resto-card-body { margin-top: var(--space-md); }
.resto-card-body h4 { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--gold-300); }
.resto-card-body p { font-size: 0.86rem; color: var(--shell-100); opacity: 0.85; margin-top: 3px; line-height: 1.5; }
.resto-card-body .resto-type { color: var(--gold-400, var(--gold-500)); font-weight: 600; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.06em; margin-top: 6px; opacity: 1; }

.resto-partner-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid rgba(198, 165, 87, 0.25);
  border-radius: var(--radius-md);
  color: var(--shell-100);
}
.resto-partner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(13, 24, 38, 0.6), rgba(13, 24, 38, 0.6)), url('../img/resto-partner-sunset.jpg');
  background-size: cover;
  background-position: center;
}
.resto-partner-text h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.resto-partner-text p { color: var(--shell-100); opacity: 0.9; font-size: 0.92rem; }
.resto-partner-banner .btn-primary { flex-shrink: 0; }
@media (max-width: 480px) { .resto-partner-banner .btn-primary { width: 100%; } }
.today-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: var(--space-2xs);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  animation: pulse-today 2.4s ease-in-out infinite;
}
@keyframes pulse-today {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,165,87,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(198,165,87,0); }
}
@media (prefers-reduced-motion: reduce) { .today-flag { animation: none; } }
.today-flag.is-open { background: #5FAE7A; color: var(--white); }
.today-flag.is-closed { background: var(--ink-400); color: var(--white); animation: none; }
.new-flag {
  display: inline-block;
  margin-left: var(--space-2xs);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* ---------- Leaflet skin ---------- */
.leaflet-popup-content-wrapper { border-radius: var(--radius-md); font-family: var(--font-body); }
.leaflet-popup-content { margin: var(--space-sm) var(--space-md); }
.leaflet-popup-content strong { font-family: var(--font-display); color: var(--navy-900); font-size: 1.02rem; }
.map-pin {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-600);
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: var(--shadow-sm);
}
.map-pin.is-new { background: var(--navy-900); }
.map-pin.is-chantier { background: var(--navy-700); }
.map-pin svg { width: 16px; height: 16px; color: var(--navy-900); transform: rotate(45deg); }
.map-pin.is-new svg { color: var(--gold-400, var(--gold-300)); }
.map-pin.is-chantier svg { color: var(--shell-100); }

/* ---------- Réseaux sociaux : liens officiels ---------- */
.social-official-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin-inline: auto;
}
.social-official-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.social-official-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.social-official-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.social-official-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
}
.social-official-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--shell-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-official-icon svg { width: 21px; height: 21px; }
.social-official-text { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.social-official-text strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-900); }
.social-official-text span { font-size: 0.82rem; color: var(--ink-400); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.social-official-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-700);
}
.social-official-cta svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.social-official-card:hover .social-official-cta svg { transform: translateX(3px); }
@media (max-width: 768px) {
  .social-official-content { flex-wrap: wrap; align-items: flex-start; }
  .social-official-text { flex-basis: calc(100% - 42px - var(--space-sm)); }
  .social-official-text span { white-space: normal; overflow: visible; text-overflow: clip; }
  .social-official-cta {
    flex-basis: 100%;
    margin-top: var(--space-xs);
    padding-left: calc(42px + var(--space-sm));
  }
}

/* ---------- Événements ---------- */
.evenements-section {
  background-image: linear-gradient(rgba(13, 24, 38, 0.85), rgba(13, 24, 38, 0.85)), url('../img/evenements-buffet.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--shell-100);
  position: relative;
  overflow: hidden;
}
.evenements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(196,165,87,0.18), transparent 45%);
}
.evenements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}
.evenements-section h2 { color: var(--white); }
.evenements-section .section-head p { color: var(--shell-100); }
.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.event-chip {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.94rem;
  min-width: 0;
}
.event-chip svg { width: 20px; height: 20px; color: var(--gold-400, var(--gold-500)); flex-shrink: 0; }
@media (max-width: 768px) {
  .event-list { grid-template-columns: 1fr; }
  .event-chip {
    justify-content: center;
    padding: 1rem 0.75rem;
    text-align: center;
    word-break: break-word;
  }
}
.evenements-cta {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(6px);
}
.evenements-cta p { color: var(--shell-100); margin-bottom: var(--space-md); }
.call-cards { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.call-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background 0.3s var(--ease);
}
.call-card:hover { background: rgba(255,255,255,0.15); }
.call-card svg { width: 20px; height: 20px; color: var(--gold-300); }
.call-card strong { display: block; font-size: 0.95rem; }
.call-card span { font-size: 0.82rem; color: var(--shell-100); opacity: 0.85; }

/* ---------- FAQ (accordéon natif <details>/<summary>) ---------- */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  background: var(--cream-100);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-700); }
.faq-item summary:focus-visible { outline-offset: 4px; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-600);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--ink-600);
  font-size: 0.98rem;
}
.faq-answer a { font-weight: 600; color: var(--navy-700); }
.faq-answer a:hover { color: var(--gold-700); }

.faq-closing {
  max-width: 700px;
  margin: var(--space-2xl) auto 0;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  text-align: left;
  padding: var(--space-lg);
  background: var(--shell-100);
  border-radius: var(--radius-lg);
}
.faq-closing svg { width: 26px; height: 26px; color: var(--gold-700); flex-shrink: 0; margin-top: 2px; }
.faq-closing p { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--navy-800); line-height: 1.55; }
@media (max-width: 768px) {
  .faq-closing {
    width: 95%;
    max-width: 100%;
    margin-inline: auto;
    padding: 1.5rem 1.25rem;
  }
  .faq-closing svg { margin-bottom: 0.75rem; }
  .faq-closing p { font-size: 0.95rem; line-height: 1.6; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-cards { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  align-items: flex-start;
}
.contact-card .icon-wrap {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--shell-100);
  display: flex; align-items: center; justify-content: center;
}
.contact-card svg { width: 22px; height: 22px; color: var(--gold-700); }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 2px; }
.contact-card p { font-size: 0.94rem; color: var(--ink-600); }
.contact-card a { font-weight: 600; color: var(--navy-700); }
.contact-card a:hover { color: var(--gold-700); }
.access-hours { margin-top: var(--space-xs); display: flex; flex-direction: column; gap: 2px; }
.access-hours li { font-size: 0.88rem; color: var(--ink-600); font-weight: 600; }
.btn-marches {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  background: var(--btn-gold);
  color: var(--navy-900) !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill, 999px);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-marches:hover { background: var(--btn-gold-hover); transform: translateY(-1px); }
#contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 320px; box-shadow: var(--shadow-md); border: 6px solid var(--white); }

.social-proof-card {
  grid-column: 1 / -1;
  background: var(--shell-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}
@media (min-width: 780px) {
  .social-proof-card { display: flex; align-items: center; gap: var(--space-xl); text-align: left; }
  .social-proof-card .rating-badge { flex-shrink: 0; margin-bottom: 0; }
  .social-proof-card .mini-testimonial { flex: 1; margin: 0; }
  .social-proof-card .social-proof-actions { flex-shrink: 1; min-width: 0; justify-content: flex-end; }
}
.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-md);
}
.rating-badge .stars { display: inline-flex; align-items: center; gap: 3px; color: var(--gold-600); }
.rating-badge .stars svg { width: 15px; height: 15px; }
.rating-badge strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy-900); }
.rating-badge span { font-size: 0.78rem; color: var(--ink-400); font-weight: 600; letter-spacing: 0.02em; }
.mini-testimonial {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--navy-800);
  line-height: 1.5;
  margin: 0 0 var(--space-md);
}
.mini-testimonial cite {
  display: block;
  margin-top: var(--space-2xs);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-400);
}
.social-proof-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }
.social-proof-actions .btn { font-size: 0.85rem; padding: 0.6rem 1.1rem; }

/* ---------- Réseaux sociaux ---------- */
.social-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-row a:hover { background: var(--gold-600); color: var(--navy-900); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }
.footer-brand .social-row a { background: rgba(255,255,255,0.1); }
.footer-brand .social-row a:hover { background: var(--gold-500); color: var(--navy-900); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background-image:
    linear-gradient(rgba(19, 36, 55, 0.45), rgba(19, 36, 55, 0.65)),
    url('../img/footer-banner-parcs.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: rgba(255,255,255,0.75);
  padding-block: 3rem var(--space-lg);
}
/* Transition compacte entre la derniere section de chaque page et le footer */
main > section:last-of-type {
  padding-block-end: 2rem;
  margin-bottom: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  margin-bottom: var(--space-lg);
}
@media (min-width: 780px) {
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-brand img { height: 52px; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; color: rgba(255,255,255,0.6); }
.footer-rating { display: flex; align-items: center; gap: 6px; margin-top: var(--space-sm); font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-rating strong { color: var(--gold-400, var(--gold-500)); }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-col a { font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold-400, var(--gold-500)); }
.btn-footer-marches {
  color: var(--btn-gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,151,79,0.5);
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.btn-footer-marches:hover { color: var(--white); text-decoration-color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.footer-legal-links a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal-links a:hover { color: var(--white); }
@media (max-width: 768px) {
  .site-footer { padding-block: 24px 16px; }
  .footer-top { gap: 12px; padding-bottom: var(--space-md); margin-bottom: var(--space-md); }
  .footer-brand img { height: 40px; margin-bottom: 8px; }
  .footer-brand p { font-size: 0.85rem; }
  .footer-rating { margin-top: 8px; font-size: 0.8rem; }
  .footer-col { margin-bottom: 12px; }
  .footer-col:last-child { margin-bottom: 0; }
  .footer-col h5 { font-size: 0.72rem; margin-bottom: var(--space-2xs); }
  .footer-col ul { gap: 6px; }
  .footer-col a { font-size: 0.85rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 0.75rem; }
}

/* ---------- Page "Mentions légales" ---------- */
.legal-content { max-width: 70ch; margin-inline: auto; }
.legal-block { margin-bottom: var(--space-xl); }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-2xs);
  border-bottom: 1px solid rgba(198, 165, 87, 0.3);
}
.legal-block p { color: var(--ink-600); font-size: 0.96rem; line-height: 1.7; }
.legal-block p + p { margin-top: var(--space-sm); }
.legal-block a { color: var(--navy-800); font-weight: 600; overflow-wrap: break-word; word-break: break-word; }

/* ---------- Coupure de presse cliquable ---------- */
.presse-clipping-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 780px) {
  .presse-clipping-body { grid-template-columns: 1fr 1fr; align-items: center; }
}
.presse-clipping-img {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.presse-clipping-img img { width: 100%; display: block; }
.presse-clipping-img .zoom-hint {
  position: absolute;
  inset: auto var(--space-sm) var(--space-sm) auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.8rem;
  background: rgba(18,48,63,0.85);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}
.presse-clipping-img .zoom-hint svg { width: 14px; height: 14px; }
.presse-clipping-body p { color: var(--ink-600); font-size: 0.98rem; }

/* ---------- Retour en haut ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-900, #132437);
  border: 1.5px solid var(--gold-500, #c9974f);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-800); }
.back-to-top svg { width: 20px; height: 20px; color: var(--gold-500, #c9974f); }
@media (max-width: 640px) {
  .back-to-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,20,26,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(90vw, 1000px); max-height: 88vh; margin: 0; display: flex; flex-direction: column; gap: var(--space-sm); }
.lightbox img { max-width: 100%; max-height: 76vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: var(--shell-100); font-size: 0.92rem; text-align: center; }
.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 22px; height: 22px; }

/* ---------- Reveal on scroll ----------
   Content is visible by default (no-JS / JS-blocked fallback).
   Only when the "js" class is present (set synchronously in <head>)
   do elements start hidden, animated in via IntersectionObserver —
   with a timed safety net in main.js in case the observer never fires. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Étapes du savoir-faire (carrousel par étape) ---------- */
.savoir-faire-steps { background: #0d1826; color: var(--shell-100); }
.savoir-faire-steps .section-head .eyebrow { color: var(--gold-300); }
.savoir-faire-steps .section-head h2 { color: var(--white); }
.savoir-faire-steps .section-head p { color: var(--shell-100); opacity: 0.85; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 165, 87, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.step-carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-900);
}
.step-video-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-900);
}
.step-video { width: 100%; height: 100%; max-width: 100%; object-fit: cover; display: block; }
.step-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--ease);
}
.step-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.step-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 24, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.step-carousel-arrow:hover { background: var(--btn-gold); border-color: var(--btn-gold); color: var(--navy-900); }
.step-carousel-arrow svg { width: 18px; height: 18px; }
.step-carousel-arrow.prev { left: 6px; }
.step-carousel-arrow.next { right: 6px; }
.step-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
/* Un seul slide (ou moins) : le JS pose l'attribut [hidden], mais
   .step-carousel-arrow/.step-carousel-dots forcent display:flex avec
   la meme specificite que la regle UA [hidden] { display:none } —
   sans cette regle, les flèches/points restent visibles à tort. */
.step-carousel-arrow[hidden],
.step-carousel-dots[hidden] { display: none; }
.step-carousel-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.step-carousel-dot::before {
  content: "";
  position: absolute;
  inset: -18.5px;
}
.step-carousel-dot.is-active { background: var(--btn-gold); transform: scale(1.2); }
.step-title {
  padding: var(--space-md) var(--space-lg) var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gold-300);
  line-height: 1.4;
}
.step-desc {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--shell-100);
  opacity: 0.85;
  line-height: 1.55;
}

/* ---------- Page "Nos Produits" : liste compacte ---------- */
.produits-category-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy-900);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}
.produits-category-title:first-child { margin-top: 0; }
.produits-category-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--gold-500);
  margin: var(--space-sm) auto 0;
}
.produits-container { max-width: 1400px; margin-inline: auto; }
.produits-list { display: flex; flex-direction: column; }
.produit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(20, 42, 54, 0.1);
}
.produit-row:first-child { padding-top: 0; }
.produit-row:last-child { border-bottom: none; }
.produit-row-title { text-align: center; }
.produit-row-title h3 { font-size: 1.5rem; color: var(--navy-900); }
.produit-row-badge {
  display: inline-block;
  margin-bottom: var(--space-2xs);
  padding: 0.3rem 1rem;
  border: 1.5px solid var(--gold-600);
  border-radius: var(--radius-pill);
  background: var(--shell-100);
  color: var(--gold-700, var(--gold-600));
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .produit-row {
    grid-template-columns: 240px 1fr;
    grid-template-areas: "media title" "media body";
    align-items: start;
    column-gap: var(--space-xl);
    row-gap: 0;
  }
  .produit-row-title { grid-area: title; }
  .produit-row-media { grid-area: media; }
  .produit-row-body { grid-area: body; }
}
.produit-row-media {
  width: 240px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--shell-100);
  position: relative;
}
.produit-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.produit-row-media.zoomable:hover img,
.produit-row-media.zoomable:focus-visible img { transform: scale(1.06); }
.produit-row-media.is-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  border: 1px dashed rgba(198, 165, 87, 0.4);
}
.produit-row-media.is-icon svg { width: 64px; height: 64px; }
.produit-row-body { min-width: 0; }
.produit-row-variant { font-style: italic; font-weight: 500; color: var(--gold-700, var(--gold-600)); }
.produit-row-desc { font-size: 0.9rem; color: var(--ink-600); margin-top: 3px; line-height: 1.5; }
.produit-row-calibre { font-size: 0.82rem; color: var(--navy-800); font-weight: 600; margin-top: 5px; }
.produit-row-season { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--gold-700, var(--gold-600)); margin-top: 5px; }
.produit-row-origin {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-top: 6px;
}
.produit-row-origin--own { background: rgba(34, 81, 115, 0.1); color: var(--navy-700); }
.produit-row-origin--partner { background: var(--shell-100); color: var(--ink-600); }
.produit-row-medals { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; margin-top: 15px; }
.medal-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.medal-badge img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}
.medal-badge-year {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-700, var(--gold-600));
  text-align: center;
}
@media (max-width: 768px) {
  .produit-row-media { width: 100%; height: 260px; }
  .produit-row-media.is-icon svg { width: 48px; height: 48px; }
  .produit-row-body { padding-inline: var(--space-2xs); }
  .produit-row-title h3 { font-size: 1.35rem; }
}
.produits-freetext {
  max-width: 640px;
  margin: var(--space-md) auto 0;
  text-align: center;
  color: var(--ink-600);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ============================================================
   Refonte mobile (<=768px) : header épuré, menu, hero
   ============================================================ */
.hero-mobile-logo { display: none; }
.nav-call-item { display: none; }

@media (max-width: 768px) {

  /* ---- 1. Header mobile : 3 zones - social a gauche, logo centre, appel+burger a droite ---- */
  .site-header {
    display: flex;
    align-items: center;
    min-height: 84px;
    background: var(--cream-050);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: none;
    backdrop-filter: none;
  }
  .site-header.is-scrolled {
    background: var(--cream-050);
    box-shadow: var(--shadow-sm);
  }
  .site-header .header-brand-row {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 12px;
    justify-content: space-between;
  }
  .site-header .header-nav-row {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    margin-inline: 0;
    padding-block: 0;
    border-top: none;
  }
  .site-header.is-scrolled .header-nav-row { border-top: none; padding-block: 0; }
  .nav-row-inner { width: auto; max-width: none; margin-inline: 0; padding-inline: 0; justify-content: flex-end; }
  .brand-center img,
  .site-header.is-scrolled .brand-center img { height: 60px !important; }
  .brand-center .logo-white { display: none; }
  .brand-center .logo-color { display: block; }
  .header-actions { position: static; transform: none; gap: 8px; }
  .header-actions .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
  }
  .header-actions .header-cta svg { width: 18px; height: 18px; }
  .site-header .nav-toggle svg { color: var(--navy-900); }
  .site-header .header-social-link,
  .site-header.is-scrolled .header-social-link { color: var(--navy-900); width: 44px; height: 44px; }
  .site-header .header-social-link svg { width: 16px; height: 16px; }
  .header-social { gap: 4px; }

  /* ---- 1bis. Hero de page (pages intérieures) : padding réduit ---- */
  .page-hero { padding-block: calc(84px + var(--space-md)) var(--space-lg); }

  /* ---- 2. Menu déplié : fond blanc épuré, liens alignés à gauche ----
     align-items/justify-content/padding pilotes par le breakpoint
     @media(max-width:1300px) qui gere reellement l'overlay ---- */
  .main-nav ul { align-items: flex-start; text-align: left; width: 100%; }
  .main-nav a {
    color: var(--navy-900);
    font-size: 1.1rem;
    font-weight: 500;
  }
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100000;
  }
  .nav-close svg { color: var(--navy-900); }
  .nav-call-item {
    display: block;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--line-soft);
    width: 100%;
  }
  .nav-call-item a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    background: var(--gold-500);
    color: var(--navy-900) !important;
    font-weight: 700;
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-full, 999px);
  }
  .nav-call-item a::after { display: none; }

  /* ---- 3. Hero mobile : grand logo centré + typo manuscrite ---- */
  .hero-text-block { text-align: center; margin-inline: auto; max-width: 420px; }
  .hero-mobile-logo {
    display: block;
    width: 58vw;
    max-width: 200px;
    height: auto;
    margin: 0 auto var(--space-md);
  }
  .hero .eyebrow { display: none; }
  .hero h1 {
    font-family: "Dancing Script", var(--font-display), cursive;
    font-weight: 600;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.25;
  }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { flex: 1 1 auto; max-width: 300px; justify-content: center; }
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}

/* ---------- Loupe au survol (produits, marchés, doyenne) ---------- */
/* Reprend le motif visuel de .archive-card (icône loupe) + un léger
   assombrissement ; ouvre la lightbox déjà présente sur le site
   (#lightbox, voir main.js et le bloc ".archive-card"). */
.zoomable { position: relative; overflow: hidden; cursor: zoom-in; }
.zoomable::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 48, 63, 0.35);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}
.zoomable::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312303F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}
.zoomable:hover::before, .zoomable:focus-visible::before,
.zoomable:hover::after, .zoomable:focus-visible::after { opacity: 1; }
.zoomable:hover::after, .zoomable:focus-visible::after { transform: translate(-50%, -50%) scale(1); }
.zoomable:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 2px; }

/* ==================================================================
   CORRECTIONS RESPONSIVE MOBILE (passe finale) — <= 768px uniquement.
   Ce bloc ne touche pas au rendu >= 1024px. Placé en fin de fichier
   pour prendre le pas sur les regles precedentes de facon previsible.
   ================================================================== */
@media (max-width: 768px) {
  /* 1. Echelle mobile globale : base 16px au lieu de 18px */
  html { font-size: 100%; }

  /* 2. Marges laterales des containers */
  .container { padding-inline: 16px; }

  /* 3. Hero page Presse */
  .presse-hero { min-height: auto; }
  .presse-hero-inner { padding-top: calc(84px + 32px); padding-bottom: 40px; }
  .presse-hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .presse-hero-inner p { font-size: 0.95rem; line-height: 1.55; }

  /* 4. Logos presse */
  .press-logos-row { gap: 8px; margin-top: 24px; }
  .press-logo-chip { height: 44px; padding: 6px 10px; }

  /* 5. Bloc "Le Cabas de Juliana" : integre au flux des articles gazette
     (regle 6 ci-dessous). Le bouton source/replay reste lisible et
     contenu sur mobile (texte long "Voir l'emission complete (25 min)") */
  .gazette-source-btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* 6. Articles de presse (gazette) */
  .gazette-section { padding-block: 48px; }
  .gazette-article,
  .gazette-article-feature {
    padding-block: 40px;
    gap: 24px;
  }
  .gazette-article,
  .gazette-article-media-left {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "body";
  }

  /* 7. Menu mobile : align/justify/padding deplaces dans le breakpoint
     @media(max-width:1300px) ci-dessus (c'est celui qui pilote reellement
     l'overlay plein ecran ; le restreindre a 768px laissait le bug present
     en paysage tablette/telephone, ex. 844x390) */

  /* 8. Espacements globaux des sections */
  .section-pad { padding-block: 48px; }

  /* 9. Bloc "Vente directe au chantier" : trop large sur mobile */
  .hours-box {
    min-height: auto;
    padding: 40px 24px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1300px) and (max-height: 650px) {
  /* 1. Menu mobile en paysage / petits ecrans : resserre les liens */
  .main-nav ul { gap: 16px; }
  .main-nav a { padding-block: 6px; }
  .nav-call-item { margin-top: 12px; padding-top: 12px; }
}
@media (max-width: 360px) {
  /* 2. Bloc "Vente directe au chantier" tres etroit */
  .hours-box { padding: 32px 18px; }
  .hours-list li { align-items: flex-start; }
  .pdv-chantier-contacts { flex-direction: column; gap: 8px; }
  .hours-box .btn-primary {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 560px) {
  /* 3. Cartes des marches : la photo agrandie (scale 1.08) peut deborder */
  .marche-photocard { overflow: hidden; }
  .marche-photocard-media { overflow: hidden; }
  .marche-photocard-media img { transform: none; }
  .marche-photocard-content { padding: 20px; }
}
