/* ===========================
   PSC BROD — Styles globaux
   Thème : Élégant / Raffiné
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&family=Dancing+Script:wght@400;600;700&display=swap');

:root {
  --cream:       #F8F4EE;
  --warm-white:  #FDFAF6;
  --gold:        #B8955A;
  --gold-light:  #D4AF78;
  --gold-dark:   #8B6B3D;
  --charcoal:    #2C2420;
  --taupe:       #8A7968;
  --taupe-light: #C8B99A;
  --border:      #E2D8CC;
  --shadow:      rgba(44,36,32,0.08);

  --font-display: 'Cormorant Garamond', serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Jost', sans-serif;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
  --header-h: 90px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══════════════════════════════════
   HEADER / NAV
══════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  background: #F8F4EE;
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
nav ul {
  display: none; /* caché par défaut — affiché via media query desktop */
  gap: 2rem;
  list-style: none;
  align-items: center;
}

/* Desktop : afficher le menu horizontal */
@media (min-width: 901px) {
  nav ul { display: flex; }
  .hamburger { display: none !important; }
}
nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
nav a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
nav a:hover, nav a.active { color: var(--charcoal); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.2rem !important;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: white !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ══════════════════════════════════
   MAIN + PAGES
══════════════════════════════════ */
main { 
  padding-top: var(--header-h); 
  position: relative;
  z-index: 1; /* toujours sous le menu mobile */
}
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════
   HERO — Immersif fond sombre
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

/* Photo de fond */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.45;
}

/* Overlay dégradé doré → sombre */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44,36,32,0.96) 0%,
    rgba(44,36,32,0.82) 45%,
    rgba(44,36,32,0.35) 75%,
    rgba(44,36,32,0.15) 100%
  );
}

/* Contenu */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  max-width: 620px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 1rem;
  color: rgba(248,244,238,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-desc strong { color: rgba(248,244,238,0.95); font-weight: 500; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Badge Google */
.hero-badge {
  position: absolute;
  bottom: 3rem; right: 2rem;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white; text-align: center;
  font-family: var(--font-display);
  box-shadow: 0 8px 32px rgba(184,149,90,0.5);
  z-index: 2;
}
.badge-num { font-size: 1.8rem; font-weight: 600; line-height: 1; }
.badge-text { font-size: 0.55rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }

/* Ligne décorative dorée en bas */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, transparent 100%);
  z-index: 3;
}

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar { background: var(--charcoal); padding: 3rem 2rem; }
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.45);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--warm-white); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--charcoal); line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ══════════════════════════════════
   TWO COL
══════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ══════════════════════════════════
   SUPPORTS GRID
══════════════════════════════════ */
.supports-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; padding-top: 1rem; }
.support-tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--taupe);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.support-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════
   SERVICES GRID
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
}
.service-card:hover { background: var(--cream); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--gold); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 0.75rem; color: var(--charcoal);
}
.service-card p { font-size: 0.9rem; color: var(--taupe); line-height: 1.7; text-align: justify; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.7rem; }

/* ── Vidéo services ──────────────────────────────────────── */
.services-video-wrap {
  margin: 0 auto 4rem;
  max-width: 860px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(44,36,32,0.13);
  background: var(--charcoal);
  position: relative;
}
.services-video-wrap {
  aspect-ratio: 16 / 9;
}
.services-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(44,36,32,0.22);
  border: none;
  cursor: pointer;
  transition: background .25s, opacity .35s;
  opacity: 1;
}
.video-play-btn:hover { background: rgba(44,36,32,0.38); }
.video-play-btn--hidden {
  opacity: 0;
  pointer-events: none;
}
.video-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform .2s, background .2s;
}
.video-play-btn:hover .video-play-icon {
  transform: scale(1.1);
  background: var(--gold-light);
}
.video-play-label {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
}

/* ══════════════════════════════════
   STEPS
══════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: var(--gold); opacity: 0.25;
  line-height: 1; margin-bottom: 0.5rem;
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.step-item p { font-size: 0.9rem; color: var(--taupe); }

/* ══════════════════════════════════
   GALERIE — FILTRES
══════════════════════════════════ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Scroll horizontal sur mobile — sans scrollbar visible */
@media (max-width: 900px) {
  .gallery-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* Masquer la scrollbar sur tous les navigateurs */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; scroll-snap-align: start; }
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--taupe);
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.gallery-count {
  text-align: center;
  font-size: 0.76rem;
  color: var(--taupe-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  min-height: 1.2em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeInUp 0.35s ease both;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow); }
.gallery-item-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}
.gallery-item-placeholder {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--warm-white), var(--cream));
  color: var(--taupe-light); font-size: 2.5rem;
}
.gallery-item-info { padding: 1.25rem; }
.gallery-item-cat {
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.gallery-item-desc { font-size: 0.82rem; color: var(--taupe); }
.gallery-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 4rem 2rem; color: var(--taupe);
}
.gallery-empty svg { display: block; margin: 0 auto 1rem; opacity: 0.3; }
.gallery-empty p { font-family: var(--font-display); font-size: 1.2rem; }

/* ══════════════════════════════════
   TIMELINE
══════════════════════════════════ */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item { padding-left: 2.5rem; padding-bottom: 3.5rem; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute; left: -5px; top: 4px;
  width: 11px; height: 11px;
  border-radius: 50%; background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-year {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.timeline-item p { font-size: 0.92rem; color: var(--taupe); }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; color: var(--charcoal);
  text-align: left; gap: 1rem;
}
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--gold); transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding-bottom: 1.5rem;
  color: var(--taupe); line-height: 1.8; font-size: 0.95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════
   TÉMOIGNAGES
══════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: 0 12px 40px var(--shadow); }
.testimonial-quote {
  font-family: var(--font-display); font-size: 4rem;
  color: var(--gold); line-height: 0.5;
  margin-bottom: 1.5rem; display: block;
}
.testimonial-text {
  font-size: 0.95rem; color: var(--taupe);
  line-height: 1.8; margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: space-between;
}
.testimonial-name { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }
.testimonial-date { font-size: 0.75rem; color: var(--taupe-light); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.google-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.65rem; color: var(--taupe-light);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.google-notice {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  display: flex; gap: 1rem; align-items: flex-start;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.google-notice p { font-size: 0.85rem; color: var(--taupe); line-height: 1.6; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300;
  margin-bottom: 2rem; color: var(--charcoal);
}
.contact-detail {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start;
}
.contact-detail-icon { width: 20px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-detail-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--taupe-light); margin-bottom: 0.2rem;
}
.contact-detail-value { font-size: 0.95rem; color: var(--charcoal); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--taupe);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--charcoal); outline: none;
  transition: border-color var(--transition);
  width: 100%; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.map-embed { margin-top: 1.5rem; border: 1px solid var(--border); overflow: hidden; }

/* ══════════════════════════════════
   MENTIONS LÉGALES
══════════════════════════════════ */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--charcoal); margin: 2.5rem 0 1rem;
}
.legal-content p, .legal-content li {
  font-size: 0.9rem; color: var(--taupe); line-height: 1.8; margin-bottom: 0.5rem;
}

/* ══════════════════════════════════
   BOUTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--charcoal); color: var(--cream);
  padding: 1rem 2.2rem;
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: var(--charcoal);
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--charcoal);
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

/* ══════════════════════════════════
   COOKIE BANNER
══════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
  padding: 1rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-text { display: flex; align-items: flex-start; gap: 0.75rem; flex: 1; min-width: 0; }
.cookie-text p { font-size: 0.82rem; color: rgba(248,244,238,0.8); line-height: 1.6; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--gold); color: white; border: none;
  padding: 0.55rem 1.4rem; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  cursor: pointer; transition: background var(--transition);
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--gold-dark); }
.cookie-btn-refuse {
  background: transparent; color: rgba(248,244,238,0.5);
  border: 1px solid rgba(248,244,238,0.2);
  padding: 0.55rem 1.2rem; font-family: var(--font-body);
  font-size: 0.78rem; cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}
.cookie-btn-refuse:hover { color: rgba(248,244,238,0.8); border-color: rgba(248,244,238,0.4); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(248,244,238,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3rem;
}
.footer-logo {
  height: 56px; width: auto; max-width: 160px;
  object-fit: contain; display: block; margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; margin-top: 1rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(248,244,238,0.6); text-decoration: none;
  font-size: 0.88rem; transition: color var(--transition); cursor: pointer;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}

/* Social links */
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(248,244,238,0.15);
  color: rgba(248,244,238,0.5); text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ══════════════════════════════════
   TOAST
══════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--charcoal); color: var(--cream);
  padding: 1rem 1.5rem; font-size: 0.85rem;
  z-index: 999; opacity: 0; transform: translateY(10px);
  transition: all var(--transition); pointer-events: none;
  max-width: calc(100vw - 4rem);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gallery-item:nth-child(1) { animation-delay: 0.00s; }
.gallery-item:nth-child(2) { animation-delay: 0.05s; }
.gallery-item:nth-child(3) { animation-delay: 0.10s; }
.gallery-item:nth-child(4) { animation-delay: 0.15s; }
.gallery-item:nth-child(5) { animation-delay: 0.20s; }
.gallery-item:nth-child(6) { animation-delay: 0.25s; }

/* ══════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero { gap: 3rem; padding: 3rem 2rem; }
  .contact-grid { gap: 3rem; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════ */
@media (max-width: 900px) {
  :root { --header-h: 70px; }

  /* Nav mobile */
  /* nav ul caché par défaut — voir règle globale */
  .hamburger { display: flex; }
  nav.open ul {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background-color: #F8F4EE;
    padding: 1.5rem 2rem;
    gap: 0;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(44,36,32,0.2);
  }
  nav.open ul li { border-bottom: 1px solid var(--border); }
  nav.open ul a {
    display: block; padding: 1.2rem 0;
    font-size: 1.05rem; letter-spacing: 0.05em;
    color: var(--charcoal);
  }
  nav.open ul a:hover, nav.open ul a.active { color: var(--gold); }
  nav.open .nav-cta {
    margin-top: 1.5rem; padding: 1rem;
    text-align: center; display: block;
    background: var(--charcoal) !important;
    color: var(--cream) !important;
  }

  /* Logo mobile */
  .logo-img { height: 52px; max-width: 140px; }

  /* Hero mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
  }
  .hero-visual { order: -1; }
  .hero-badge {
    width: 80px; height: 80px;
    bottom: -1rem; left: -0.8rem;
  }
  .badge-num { font-size: 1.3rem; }
  .badge-text { font-size: 0.5rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-num { font-size: 2.2rem; }

  /* Sections */
  .section { padding: 4rem 1.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Galerie filtres — voir règle dédiée au-dessus */
  .filter-btn { font-size: 0.72rem; padding: 0.45rem 0.85rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .map-embed iframe { height: 180px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; }

  /* Cookie */
  .cookie-banner { padding: 1rem 1.5rem; }
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-refuse { flex: 1; text-align: center; }

  /* Timeline */
  .timeline-item { padding-left: 2rem; }
}

/* ══════════════════════════════════
   RESPONSIVE — PETIT MOBILE (≤ 400px)
══════════════════════════════════ */
@media (max-width: 400px) {
  :root { --header-h: 64px; }
  .logo-img { height: 44px; max-width: 120px; }
  header { padding: 0 1rem; }
  .section { padding: 3rem 1rem; }
  .hero { padding: 2rem 1rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.65rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .gallery-item-info { padding: 0.75rem; }
  .gallery-item-title { font-size: 0.9rem; }
  .btn-primary, .btn-outline { padding: 0.85rem 1.5rem; font-size: 0.72rem; }
  .section-title { font-size: 1.6rem; }
  .footer-inner { padding: 0; }
  footer { padding: 3rem 1rem 1.5rem; }
  .cookie-banner { padding: 1rem; }
}

/* ══════════════════════════════════
   LIGHTBOX
══════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.94);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.2s ease;
}
.lightbox.open { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(184,149,90,0.3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox-info {
  width: 100%;
  padding: 1.2rem 0.5rem 0;
  text-align: center;
}
.lightbox-cat {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.3rem;
}
.lightbox-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.lightbox-counter {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Bouton fermer */
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 1.8rem; line-height: 1;
  width: 44px; height: 44px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* Boutons navigation */
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 2.2rem; line-height: 1;
  width: 50px; height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

/* Clic sur carte = curseur pointer */
.gallery-item { cursor: pointer; }

/* Mobile lightbox */
@media (max-width: 600px) {
  .lightbox { padding: 1rem; }
  .lightbox-prev { left: 0.3rem; }
  .lightbox-next { right: 0.3rem; }
  .lightbox-close { top: 0.5rem; right: 0.5rem; }
  #lightbox-img { max-height: 60vh; }
  .lightbox-title { font-size: 1.1rem; }
}

/* ══════════════════════════════════
   GALLERY ITEM OVERLAY (loupe)
══════════════════════════════════ */
.gallery-item { position: relative; }
.gallery-item-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  aspect-ratio: 4/3;
  background: rgba(44, 36, 32, 0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(44, 36, 32, 0.45);
}
.gallery-item-overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* ══════════════════════════════════
   BROD & GO
══════════════════════════════════ */
@font-face {
  font-family: 'Daydream';
  src: url('../fonts/daydream free.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --mint:       #8dcbb8;
  --mint-light: #b8e0d4;
  --mint-pale:  #e8f6f2;
  --mint-dark:  #4a9a82;
}

nav a.nav-brodgo { color: var(--mint-dark) !important; font-weight: 500; }
nav a.nav-brodgo::after { background: var(--mint-dark) !important; }

/* ── HERO ── */
.brodgo-hero {
  background: var(--charcoal);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.brodgo-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
}
.brodgo-wave-tl, .brodgo-wave-br {
  position: absolute; pointer-events: none;
  width: 260px; height: 200px;
}
.brodgo-wave-tl { top: 0; left: 0; }
.brodgo-wave-br { bottom: 0; right: 0; }
.brodgo-hero-deco {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(141,203,184,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(141,203,184,0.07) 0%, transparent 50%);
}
.brodgo-hero-inner { position: relative; z-index: 2; max-width: 680px; }
.brodgo-eyebrow {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 1.75rem;
}
.brodgo-logo {
  font-family: 'Daydream', var(--font-script);
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 700; color: var(--mint);
  line-height: 1; margin-bottom: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.25em; flex-wrap: wrap;
}
.brodgo-logo-and {
  font-family: var(--font-script);
  font-size: 0.28em;
  font-weight: 700;
  color: white;
  align-self: flex-end;
  margin-bottom: 0.3em;
  margin-left: -0.2em;
  margin-right: -0.2em;
  line-height: 1;
}
.brodgo-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 300; color: white; line-height: 1.45;
  margin-bottom: 1.25rem;
}
.brodgo-tagline em { font-style: italic; color: var(--mint); }
.brodgo-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  line-height: 1.9; max-width: 480px;
  margin: 0 auto 2.5rem;
}
.brodgo-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--mint-dark); color: white;
  padding: 1rem 2.5rem;
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 40px;
  transition: background var(--transition), transform var(--transition);
}
.brodgo-btn:hover { background: var(--mint); transform: translateY(-2px); }
.brodgo-btn--white { background: white; color: var(--mint-dark); }
.brodgo-btn--white:hover { background: var(--mint-pale); color: var(--mint-dark); transform: translateY(-2px); }
.brodgo-note {
  display: block; font-size: 0.68rem; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.28); margin-top: 1.25rem;
  text-transform: uppercase;
}

/* ── CHIFFRES CLÉS ── */
.brodgo-facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: white; border-bottom: 2px solid var(--mint-pale);
}
.brodgo-fact {
  padding: 2.5rem 1rem; text-align: center;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.brodgo-fact:last-child { border-right: none; }
.brodgo-fact-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--mint-dark); line-height: 1;
}
.brodgo-fact-num small { font-size: 0.45em; opacity: 0.7; vertical-align: middle; }
.brodgo-fact-num--script {
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600; color: var(--mint-dark);
}
.brodgo-fact-lbl {
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--taupe);
}

/* ── ÉTAPES ── */
.brodgo-steps {
  background: var(--mint-pale);
  padding: 5rem 2rem 6rem;
}
.brodgo-steps-inner { max-width: 1000px; margin: 0 auto; }
.brodgo-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; color: var(--charcoal);
  text-align: center; margin-bottom: 3.5rem; letter-spacing: 0.03em;
}
.brodgo-section-title em { font-style: italic; color: var(--mint-dark); }
.brodgo-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.brodgo-step {
  background: white; border-radius: 20px;
  padding: 2.75rem 2rem; text-align: center;
  box-shadow: 0 4px 28px rgba(74,154,130,0.10);
  transition: transform var(--transition), box-shadow var(--transition);
}
.brodgo-step:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(74,154,130,0.18); }
.brodgo-step--dark { background: var(--charcoal); }
.brodgo-step--dark h3 { color: white; }
.brodgo-step--dark p { color: rgba(255,255,255,0.6); }
.brodgo-step--dark strong { color: var(--mint); }
.brodgo-step-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: var(--mint); opacity: 0.35;
  line-height: 1; margin-bottom: 1rem;
}
.brodgo-step--dark .brodgo-step-num { opacity: 0.6; }
.brodgo-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}
.brodgo-step p { font-size: 0.88rem; color: var(--taupe); line-height: 1.75; }
.brodgo-step strong { color: var(--mint-dark); }

/* ── CTA FINAL ── */
.brodgo-cta {
  background: var(--mint-dark);
  padding: 6rem 2rem; text-align: center;
}
.brodgo-cta-inner { max-width: 600px; margin: 0 auto; }
.brodgo-cta-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--mint-light);
  display: block; margin-bottom: 0.75rem;
}
.brodgo-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; color: white; font-style: italic;
  margin-bottom: 0.6rem;
}
.brodgo-cta-sub {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 2.5rem;
}
.brodgo-contacts {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2rem;
}
.brodgo-contacts a {
  color: white; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.2rem; border-radius: 24px;
  transition: background var(--transition);
}
.brodgo-contacts a:hover { background: rgba(255,255,255,0.12); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .brodgo-hero { padding: 5rem 1.5rem 3.5rem; min-height: auto; }
  .brodgo-facts { grid-template-columns: repeat(2, 1fr); }
  .brodgo-fact { border-right: none; border-bottom: 1px solid var(--border); }
  .brodgo-fact:nth-child(odd) { border-right: 1px solid var(--border); }
  .brodgo-fact:nth-last-child(-n+2) { border-bottom: none; }
  .brodgo-steps { padding: 3.5rem 1.5rem 4rem; }
  .brodgo-steps-grid { grid-template-columns: 1fr; }
  .brodgo-cta { padding: 4rem 1.5rem; }
  .brodgo-btn { width: 100%; justify-content: center; }
  .brodgo-contacts { flex-direction: column; align-items: center; }
}

/* ── Section 8 polices Brod & Go ──────────────────────── */
.brodgo-fonts {
  background: var(--warm-white);
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.brodgo-fonts::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--mint, #7ec8b0), transparent);
  opacity: 0.5;
}
.brodgo-fonts-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.brodgo-fonts-img {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(44,36,32,0.10);
}

.brodgo-fonts-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--taupe);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Bouton primary doré — version hero fond sombre */
.hero .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.hero .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Bouton outline version claire (sur fond sombre) */
.btn-outline-light {
  border-color: rgba(248,244,238,0.5) !important;
  color: rgba(248,244,238,0.85) !important;
}
.btn-outline-light:hover {
  background: rgba(248,244,238,0.1) !important;
  border-color: rgba(248,244,238,0.8) !important;
  color: white !important;
}

/* Hero mobile */
@media (max-width: 900px) {
  .hero { min-height: 85vh; }
  .hero-content { padding: 4rem 1.5rem; }
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
  .hero-badge {
    bottom: 1.5rem; right: 1.5rem;
    width: 90px; height: 90px;
  }
  .badge-num { font-size: 1.5rem; }
}
@media (max-width: 500px) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-badge { width: 80px; height: 80px; bottom: 1rem; right: 1rem; }
  .badge-num { font-size: 1.3rem; }
}

/* ── Validation formulaire ── */
.input-error {
  border-color: #c0392b !important;
  background: #fff8f8 !important;
}
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════
   BANDEAU — ILS NOUS FONT CONFIANCE
══════════════════════════════════ */
.confiance-band {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.confiance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.confiance-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.confiance-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.confiance-title {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}
/* Track défilant */
.confiance-track-wrap {
  overflow: hidden;
  /* Fondu sur les bords */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.confiance-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}
.confiance-track:hover { animation-play-state: paused; }

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.confiance-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}
.confiance-logo-item:hover { opacity: 0.75; }
.confiance-logo-item img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .confiance-track { gap: 2.5rem; animation-duration: 20s; }
  .confiance-logo-item img { height: 32px; max-width: 100px; }
}

/* ══════════════════════════════════
   HISTORIQUE — Portrait Séverine
══════════════════════════════════ */
.historique-intro {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  padding: 1.75rem 2rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}
.historique-portrait-sm {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(184,149,90,0.2);
}
.historique-portrait-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.historique-quote-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0 0 0.6rem;
}
.historique-quote-sig {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 600px) {
  .historique-intro {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}
