/* ============================================================
   ComEvents Agency — Feuille de style principale
   Palette : Rouge #A50000 · Noir #0f0f0f · Blanc cassé #f8f7f4
   Typographie : Plus Jakarta Sans (corps) · Fraunces (display)
   ============================================================ */

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

:root {
  --red:       #A50015;
  --red-dark:  #7a0011;
  --red-light: rgba(165,0,21,.12);
  --black:     #0f0f0f;
  --dark:      #1a1a1a;
  --dark2:     #222;
  --gray:      #5a5a5a;
  --muted:     #9a9a9a;
  --light:     #f3f2ef;
  --white:     #ffffff;
  --border:    rgba(0,0,0,.08);
  --border-dark: rgba(255,255,255,.08);

  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.1);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.15);

  --container: 1200px;
  --section-py: clamp(64px, 8vw, 112px);
  --nav-h: 72px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.bg-dark  { background: var(--black); }
.bg-light { background: var(--light); }
.section-cta { text-align: center; margin-top: 48px; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header.light h2,
.section-header.light .section-eyebrow { color: var(--white); }

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: rgba(255,255,255,.5); }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
.section-intro {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.7;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav-links > li > a:hover { color: var(--red); background: var(--red-light); }

/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--black);
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--red-light); color: var(--red); }
.dd-price { font-size: .72rem; color: var(--muted); font-weight: 400; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn-red       { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline   { background: transparent; border-color: rgba(255,255,255,.3); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-dark { background: transparent; border-color: rgba(0,0,0,.15); color: var(--black); }
.btn-outline-dark:hover { border-color: var(--black); background: rgba(0,0,0,.04); }
.btn-white     { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--light); }
.btn-gold      { background: linear-gradient(135deg, #c9a227, #e8c547); color: var(--black); }
.btn-whatsapp  { background: #25d366; color: var(--white); }
.btn-lg        { padding: 15px 32px; font-size: 1rem; }

/* ── Flash messages ───────────────────────────────────────── */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 16px;
  animation: slideIn .3s ease;
}
.flash-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.flash-error   { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }
.flash-warning { background: #fef3c7; color: #78350f; border: 1px solid #fcd34d; }
.flash-info    { background: #dbeafe; color: #1e3a5f; border: 1px solid #93c5fd; }

@keyframes slideIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ── Hero Principal ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(165,0,0,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(165,0,0,.1) 0%, transparent 60%);
  background-size: cover;
  background-position: center;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.stat-icon { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}
.hero-accent { color: var(--red); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.6);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.stat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-l {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
}
.page-hero.hero-dark { background: var(--black); }
.page-hero.hero-light { background: var(--light); }
.page-hero .section-eyebrow.light { color: rgba(255,255,255,.5); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 800px;
  margin: 12px 0 16px;
}
.page-hero.hero-light h1 { color: var(--black); }
.page-hero p { color: rgba(255,255,255,.6); max-width: 600px; font-size: 1.05rem; }
.page-hero.hero-light p { color: var(--gray); }
.text-red { color: var(--red); font-style: italic; }
.hero-price {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 700;
  margin-top: 12px;
}

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card--featured {
  background: var(--black);
  border-color: var(--red);
}
.service-card--featured h3,
.service-card--featured p { color: var(--white); }
.service-card--featured .sc-price { color: var(--red); }

.sc-icon { font-size: 2rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); }
.service-card p  { font-size: .875rem; color: var(--gray); line-height: 1.6; flex: 1; }
.sc-price {
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.sc-arrow {
  font-size: 1.2rem;
  color: var(--red);
  margin-top: auto;
  transition: transform .2s;
}
.service-card:hover .sc-arrow { transform: translateX(4px); }

/* ── Why Grid ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s, background .2s;
}
.why-card:hover { border-color: rgba(165,0,0,.4); background: rgba(165,0,0,.06); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── Portfolio Grid ───────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.portfolio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pc-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light);
  position: relative;
}
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover .pc-img img { transform: scale(1.05); }
.pc-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.pc-img--placeholder span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
}
.pc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(165,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.portfolio-card:hover .pc-overlay { opacity: 1; }
.pc-overlay span { color: var(--white); font-weight: 700; font-size: .9rem; }
.pc-body { padding: 20px; }
.pc-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 8px;
}
.pc-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.pc-client { font-size: .82rem; color: var(--muted); }
.pc-results { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.pc-result {
  font-size: .75rem;
  color: var(--gray);
  background: var(--light);
  padding: 3px 10px;
  border-radius: 100px;
}
.pc-result strong { color: var(--red); }

/* Portfolio détail */
.portfolio-detail { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.pd-cover { width: 100%; border-radius: var(--radius-lg); margin-bottom: 32px; }
.pd-results {
  display: flex;
  gap: 24px;
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pd-result-item { text-align: center; }
.pd-result-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}
.pd-result-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; }
.pd-description { font-size: .95rem; color: var(--gray); line-height: 1.8; }
.pd-description h2 { font-size: 1.3rem; color: var(--black); margin-bottom: 16px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; margin-top: 16px; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); }

.pd-sidebar { display: flex; flex-direction: column; gap: 20px; }
.pd-info-box, .pd-cta-box, .pd-other {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 20px;
}
.pd-info-box h4, .pd-cta-box h4, .pd-other h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}
.pd-info-box ul { display: flex; flex-direction: column; gap: 10px; }
.pd-info-box li { display: flex; justify-content: space-between; font-size: .875rem; }
.pd-info-box strong { color: var(--gray); }
.pd-other ul { display: flex; flex-direction: column; gap: 8px; }
.pd-other a { font-size: .875rem; color: var(--black); display: flex; flex-direction: column; gap: 2px; padding: 8px; border-radius: var(--radius-sm); transition: background .15s; }
.pd-other a span { font-size: .75rem; color: var(--muted); }
.pd-other a:hover { background: var(--white); color: var(--red); }

/* Portfolio filtres */
.portfolio-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.pf-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.pf-btn:hover, .pf-btn--active { background: var(--red); color: var(--white); border-color: var(--red); }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: .9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.testi-author strong { display: block; font-size: .875rem; font-weight: 700; }
.testi-author span { font-size: .75rem; color: var(--muted); }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.bc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light); }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .bc-img img { transform: scale(1.05); }
.bc-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.bc-img--placeholder span { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--red); }
.bc-body { padding: 20px; }
.bc-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  background: var(--red-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.bc-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.4; }
.bc-body p  { font-size: .85rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.bc-footer  { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted); }

/* Blog layout & article */
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.bc-tag {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  transition: all .15s;
}
.bc-tag:hover, .bc-tag--active { background: var(--red); color: var(--white); border-color: var(--red); }

.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.article-cover { width: 100%; border-radius: var(--radius-lg); margin-bottom: 28px; }
.article-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; font-size: .82rem; color: var(--muted); }
.article-cat {
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}
.article-content { font-size: .95rem; color: var(--black); line-height: 1.85; }
.article-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; }
.article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 8px; }
.article-content p  { margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote {
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--gray);
}
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.article-share span { font-size: .82rem; color: var(--muted); font-weight: 600; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
}
.share-fb { background: #1877f2; }
.share-li { background: #0077b5; }
.share-wa { background: #25d366; }

.blog-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-widget { background: var(--light); border-radius: var(--radius-md); padding: 20px; }
.sidebar-widget h4 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cats a { font-size: .875rem; padding: 6px 10px; border-radius: var(--radius-sm); color: var(--gray); transition: color .15s, background .15s; }
.sidebar-cats a:hover, .sidebar-cats a.active { color: var(--red); background: var(--white); }
.sidebar-cta { background: var(--black); }
.sidebar-cta h4 { color: rgba(255,255,255,.5); }
.sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 14px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray); }
.req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--black);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: .78rem; color: var(--muted); }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .875rem; margin-bottom: 20px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 18px;
}
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.ci-card h4 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.ci-card a, .ci-card p { font-size: .9rem; color: var(--black); font-weight: 500; }
.ci-card a:hover { color: var(--red); }
.ci-map { border-radius: var(--radius-md); overflow: hidden; }
.ci-map--placeholder { background: var(--light); border-radius: var(--radius-md); padding: 24px; text-align: center; }

/* ── Services page ────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.offer-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-card--featured {
  background: var(--black);
  border-color: var(--red);
}
.offer-card--featured h3,
.offer-card--featured p { color: rgba(255,255,255,.8); }
.offer-card--featured .oc-price { color: var(--red); }
.oc-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.oc-icon { font-size: 2.5rem; }
.offer-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--black); }
.oc-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
}
.offer-card p { font-size: .875rem; color: var(--gray); line-height: 1.7; flex: 1; }

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 16px;
}
.cond-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.cond-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cond-card h4 { font-size: .875rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.cond-card p { font-size: .8rem; color: var(--gray); line-height: 1.5; }

/* Service détail */
.service-detail { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sd-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 24px; }
.sd-description { font-size: .95rem; color: var(--gray); line-height: 1.85; white-space: pre-line; }
.sd-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--nav-h) + 24px); }
.sd-cta-box, .sd-conditions, .sd-other-services {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 20px;
}
.sd-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}
.sd-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; }
.sd-conditions h4, .sd-other-services h4 {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}
.sd-conditions ul { display: flex; flex-direction: column; gap: 8px; }
.sd-conditions li { font-size: .82rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.sd-other-services ul { display: flex; flex-direction: column; gap: 4px; }
.sd-other-services a { font-size: .85rem; color: var(--gray); padding: 6px 8px; border-radius: var(--radius-sm); transition: color .15s, background .15s; }
.sd-other-services a:hover { color: var(--red); background: var(--white); }

/* Carte prestations */
.carte-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 14px; }
.carte-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: border-color .2s, background .2s;
}
.carte-card:hover { border-color: rgba(165,0,0,.4); background: rgba(165,0,0,.06); }
.carte-icon { font-size: 1.5rem; flex-shrink: 0; }
.carte-card strong { font-size: .9rem; color: var(--white); display: block; margin-bottom: 2px; }
.carte-card p { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ── À propos ─────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col__text .section-eyebrow { display: block; margin-bottom: 12px; }
.two-col__text h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.two-col__text p { color: var(--gray); line-height: 1.8; margin-bottom: 12px; font-size: .95rem; }

.stats-row { display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap; }
.stat-box { text-align: left; }
.stat-box .stat-n { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--red); line-height: 1; display: block; }
.stat-box .stat-l { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

.about-badge-stack { display: flex; flex-direction: column; gap: 16px; }
.badge-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}
.badge-red   { background: var(--red); color: var(--white); }
.badge-dark  { background: var(--black); color: var(--white); }
.badge-light { background: var(--light); color: var(--black); border: 1.5px solid var(--border); }

/* VMV */
.vmv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.vmv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.vmv-card--featured { background: var(--red); border-color: var(--red); }
.vmv-card--featured h3, .vmv-card--featured p, .vmv-card--featured .vmv-icon { color: var(--white); }
.vmv-icon { font-size: 2rem; margin-bottom: 14px; }
.vmv-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.vmv-card p  { font-size: .875rem; color: var(--gray); line-height: 1.7; }
.vmv-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.vmv-list li { font-size: .85rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.vmv-list li::before { content: '✓'; color: var(--red); font-weight: 700; }
.vmv-card--featured .vmv-list li { color: rgba(255,255,255,.8); }
.vmv-card--featured .vmv-list li::before { color: rgba(255,255,255,.7); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: box-shadow .2s;
}
.team-card:hover { box-shadow: var(--shadow-sm); }
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  color: var(--white);
}
.team-avatar--red  { background: var(--red); }
.team-avatar--dark { background: var(--black); }
.team-info h3 { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.team-role { font-size: .75rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 8px; }
.team-info p { font-size: .8rem; color: var(--gray); line-height: 1.5; }

/* Outils */
.tools-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tool-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: border-color .2s, background .2s;
}
.tool-chip:hover { border-color: rgba(165,0,0,.4); background: rgba(165,0,0,.08); }
.tool-name { font-size: .85rem; font-weight: 700; color: var(--white); }
.tool-cat  { font-size: .7rem; color: rgba(255,255,255,.35); }

/* ── Legal ────────────────────────────────────────────────── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--black); margin: 32px 0 12px; }
.legal-content p, .legal-content li { font-size: .9rem; color: var(--gray); line-height: 1.8; margin-bottom: 8px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-contact-cta { margin-top: 40px; padding: 20px; background: var(--light); border-radius: var(--radius-md); text-align: center; font-size: .9rem; }
.legal-contact-cta a { color: var(--red); font-weight: 600; }

/* ── WhatsApp float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--black); color: var(--white); }
.footer-top { padding: 80px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo { height: 44px; margin-bottom: 14px; }
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--red); color: var(--white); }
.footer-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-links a:hover { color: var(--red); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-contact-list i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }

/* ── CTA Final ────────────────────────────────────────────── */
.section-cta-final {
  background: var(--black);
  text-align: center;
}

/* ── Empty state ──────────────────────────────────────────── */
.empty-state { text-align: center; padding: 64px 24px; color: var(--muted); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-detail { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .pd-sidebar { position: static; }
  .sd-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: var(--white);
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open > li > a { font-size: 1rem; padding: 12px 16px; }
  .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--light); padding: 8px; margin-top: 4px; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }

  .conditions-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .vmv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Accessibility & Motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ============================================================
   Sections dynamiques v2 — Process, Agence, Annonces, etc.
   ============================================================ */

/* ── Bandeau d'annonce ────────────────────────────────────── */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  position: relative;
}
.announcement-content { display: flex; align-items: center; gap: 12px; }
.announcement-link { text-decoration: underline; font-weight: 700; }
.announcement-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; cursor: pointer; font-size: 1rem;
  opacity: .7; color: inherit;
}

/* ── Section Process / Notre méthode ─────────────────────── */
.section-process { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
  counter-reset: process;
}
.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.process-card:hover { transform: translateY(-4px); border-color: rgba(165,0,0,.4); }
.process-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0; transition: opacity .25s;
}
.process-card:hover::before { opacity: 1; }
.process-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(165,0,0,.12);
  line-height: 1;
  font-family: var(--font-display, 'Fraunces', serif);
  margin-bottom: -8px;
}
.process-icon { font-size: 1.8rem; margin-bottom: 12px; }
.process-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── Page Agence — About split ───────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 40px; } }
.about-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 20px; }
.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.about-stats { display: flex; flex-direction: column; gap: 24px; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-item { background: var(--surface); border-radius: 12px; padding: 20px; text-align: center; }
.stat-item strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--red); }
.stat-item span { font-size: .8rem; color: var(--muted); }
.badges-row { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-card { border-radius: 12px; padding: 16px 20px; font-size: .85rem; font-weight: 700; line-height: 1.4; }
.badge-red { background: rgba(165,0,0,.15); color: #f87171; border: 1px solid rgba(165,0,0,.3); }
.badge-dark { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.badge-light { background: rgba(255,255,255,.05); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.1); }

/* ── VMV ─────────────────────────────────────────────────── */
.vmv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.vmv-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.vmv-card--featured { background: var(--red); border-color: var(--red); }
.vmv-card--featured h3, .vmv-card--featured p { color: #fff; }
.vmv-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.vmv-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.vmv-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ── Équipe ──────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card { display: flex; gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: border-color .2s; }
.team-card:hover { border-color: rgba(165,0,0,.3); }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-red { background: rgba(165,0,0,.2); color: var(--red); }
.avatar-dark { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.team-info h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--red); font-weight: 600; display: block; margin-bottom: 8px; }
.team-info p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.team-linkedin { font-size: .78rem; color: var(--muted); text-decoration: none; }
.team-linkedin:hover { color: var(--red); }

/* ── Outils par catégorie ────────────────────────────────── */
.tools-by-cat { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.tools-cat-group { display: flex; align-items: flex-start; gap: 24px; }
.tools-cat-label { min-width: 120px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); padding-top: 8px; }
.tools-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 8px 16px; transition: border-color .2s; }
.tool-chip:hover { border-color: rgba(165,0,0,.4); }
.tool-name { font-size: .85rem; font-weight: 600; }
@media (max-width: 600px) { .tools-cat-group { flex-direction: column; gap: 8px; } }

/* ── Cookie banner ajustements ───────────────────────────── */
#cookie-banner { display: none; }

/* ── Barre de progression de lecture (scroll) ────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #C9A84C 100%);
  z-index: 10000;
  transition: width .1s linear;
}

/* ── Bouton retour en haut ────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px; /* à gauche du bouton WhatsApp, jamais superposé */
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red); }
@media (max-width: 600px) {
  .back-to-top { right: 20px; bottom: 92px; width: 44px; height: 44px; }
  .whatsapp-float { right: 20px; bottom: 28px; }
}

/* ── Fil d'Ariane ──────────────────────────────────────────── */
.breadcrumb-nav {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}
.breadcrumb-nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb-nav a { color: var(--gray); text-decoration: none; transition: color .15s; }
.breadcrumb-nav a:hover { color: var(--red); }
.breadcrumb-nav li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border); }
.breadcrumb-nav li:last-child { color: var(--black); font-weight: 600; }
.breadcrumb-nav.on-dark { background: transparent; border-bottom: 1px solid rgba(255,255,255,.1); }
.breadcrumb-nav.on-dark a { color: rgba(255,255,255,.55); }
.breadcrumb-nav.on-dark a:hover { color: var(--white); }
.breadcrumb-nav.on-dark li:last-child { color: var(--white); }
.breadcrumb-nav.on-dark li:not(:last-child)::after { color: rgba(255,255,255,.25); }

/* Variante intégrée directement dans une section hero (pas de fond/bordure propre) */
.page-hero .breadcrumb-nav {
  background: transparent;
  border-bottom: none;
  padding: 0;
  margin-bottom: 20px;
}
