/* ================================================
   ATA DISTRIBUTION V6
   Font: DM Serif Display (headings) + DM Sans (body)
   Palette: White / Off-white / Navy / Dark footer
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --white:   #ffffff;
  --off:     #f7f7f5;
  --line:    #e8e8e4;
  --ink:     #1a1a1a;
  --muted:   #6b6b65;
  --subtle:  #a0a09a;
  --navy:    #1c2f6b;
  --navy2:   #243680;
  --accent:  #2448b0;
  --pale:    #eef1f9;
  --dark:    #121827;
  --dark2:   #171f2f;
  --max:     1160px;
  --hdr:     60px;
  --ease:    cubic-bezier(.4,0,.2,1);
  /* Soft separators (premium look, avoid hard "traits") */
  --divider-shadow: 0 18px 44px rgba(12, 24, 48, .12);
}

/* =========================================
   DIVIDERS — soften separators
   (requested: more shadow on lines/traits)
========================================= */

/* Generic utility: add a soft shadow under a 1px divider */
.has-soft-divider{ position: relative; }
.has-soft-divider::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:1px;
  /* No visible line — shadow only */
  background: transparent;
  box-shadow: var(--divider-shadow);
  pointer-events:none;
}

/* Apply the soft divider to the main separators used on the site */
.hero,
.page-hero,
.slim-hero,
.who-section,
.carousel-section,
.magasin-section,
.services-section,
.qualite-section,
.values-section,
.process-section {
  position: relative;
}
.hero::after,
.page-hero::after,
.slim-hero::after,
.who-section::after,
.carousel-section::after,
.magasin-section::after,
.services-section::after,
.qualite-section::after,
.values-section::after,
.process-section::after {
  content: none; /* Removed — was creating fake dark rectangles above partners band */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 44px; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 500; color: var(--accent); display: block; margin-bottom: 10px;
}
.eyebrow-light { color: rgba(255,255,255,.4); }

.display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 400; letter-spacing: .02em; line-height: 1.12;
}
.display-white { color: var(--white); }

.title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400; letter-spacing: .01em; line-height: 1.18;
}
.heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600; letter-spacing: -.005em;
}
.body-lg { font-size: 16px; line-height: 1.85; color: var(--muted); font-weight: 300; }
.body    { font-size: 14px; line-height: 1.8;  color: var(--muted); }
.small   { font-size: 11px; color: var(--subtle); }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--hdr);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  /* removed */ rgba(0,0,0,.035);
  box-shadow: 0 12px 34px rgba(0,0,0,.07);
  transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }
.header-inner { display: flex; align-items: center; height: 100%; }

.logo-link {
  display: flex; align-items: center; flex-shrink: 0;
  padding-right: 28px; height: 100%;
  border-right: 1px solid rgba(0,0,0,.035);
  box-shadow: 14px 0 26px -26px rgba(0,0,0,.25);
}
.logo-img { height: 28px; width: auto; }

.nav { display: flex; align-items: center; padding: 0 20px; flex: 1; }
.nav-link {
  font-size: 12px; font-weight: 400; letter-spacing: .02em;
  color: var(--muted); padding: 5px 10px; border-radius: 5px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--off); }
.nav-link.active { color: var(--navy); font-weight: 500; }

.header-cta { margin-left: auto; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: .1em; font-weight: 500; text-transform: uppercase;
  padding: 10px 22px; border-radius: 6px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 2px 12px rgba(28,47,107,.2); }
.btn-primary:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(28,47,107,.28); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--pale); }
.btn-ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn-ghost:hover { color: var(--ink); background: var(--off); }
.btn-white { background: var(--white); color: var(--navy); border-color: rgba(255,255,255,.25); }
.btn-white:hover { background: var(--off); }
.btn-sm { padding: 8px 16px; font-size: 10px; }
.btn-lg { padding: 13px 30px; font-size: 12px; }

/* ── BURGER ── */
.burger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: 1.5px solid var(--line); border-radius: 6px;
  padding: 8px 10px; margin-left: auto;
}
.burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px; }

.mobile-nav { display: none; flex-direction: column; background: var(--white); position: fixed; top: 60px; left: 0; right: 0; bottom: 0; height: calc(100vh - 60px); z-index: 997; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 13px; color: var(--muted); padding: 12px 44px; transition: color .15s, background .15s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--ink); background: var(--off); }
.mobile-nav-actions { padding: 14px 44px 18px; }

/* ── PAGE TOP ── */
.page-top { padding-top: var(--hdr); }

/* ── PAGE HERO — compact, uniform ── */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: none;
  background: var(--white);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.page-hero-text { }
.page-hero-visual { }
.page-hero .eyebrow { color: var(--accent); }
.page-hero .display { color: var(--ink); }
.page-hero-sub { font-size: 13px; color: var(--muted); margin-top: 6px; max-width: 52ch; font-weight: 300; line-height: 1.6; }

.page-hero .display {
  font-size: clamp(18px, 1.8vw, 24px);
  margin-top: 4px; margin-bottom: 4px;
}

/* Accent line under page hero */
.page-hero-line {
  width: 28px; height: 2px; background: var(--accent);
  border-radius: 2px; margin-top: 10px;
}

/* Visual cards for each page hero */
.ph-card {
  border-radius: 14px; overflow: hidden;
  position: relative; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.ph-card-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  box-shadow: 0 20px 56px rgba(28,47,107,.18);
}
.ph-card-off {
  background: var(--off);
  border: 1.5px solid var(--line);
}
/* Grid overlay on navy cards */
.ph-card-navy::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.ph-card-content { position: relative; z-index: 1; padding: 36px 32px; width: 100%; }
.ph-card-label { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.ph-card-title { font-family: 'DM Serif Display', serif; font-size: clamp(18px, 2vw, 24px); color: rgba(255,255,255,.85); font-style: italic; line-height: 1.3; }
.ph-card-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.ph-card-chip { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 10px 14px; }
.ph-card-chip-val { font-family: 'DM Serif Display', serif; font-size: 16px; color: white; line-height: 1; }
.ph-card-chip-key { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 3px; }
.ph-card-foot { margin-top: 20px; padding-top: 16px; /* removed */ rgba(255,255,255,.1); font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .06em; display: flex; justify-content: space-between; }

/* Water visual for apropos */
.ph-water {
  border-radius: 14px; overflow: hidden; position: relative;
  background: var(--navy);
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 56px rgba(28,47,107,.18);
}
.ph-water::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.ph-water-img {
  width: 70%; height: auto; position: relative; z-index: 1;
  opacity: .7; filter: saturate(1.2) brightness(1.1);
  mix-blend-mode: luminosity;
}
.ph-water-text {
  position: absolute; bottom: 24px; left: 0; right: 0; text-align: center;
  font-family: 'DM Serif Display', serif; font-size: 13px; color: rgba(255,255,255,.45); font-style: italic;
  z-index: 2;
}

/* ── REVEAL ── */
.r { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.r.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }

/* ── FLOATING CTA BUTTON ── */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 12px 20px; border-radius: 50px;
  font-size: 11px; letter-spacing: .08em; font-weight: 500; text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(28,47,107,.35);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  text-decoration: none;
}
.float-cta:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(28,47,107,.45); }
.float-cta-icon { font-size: 14px; }

/* ── PARTNERS MARQUEE ── */
/* ── PARTNERS MARQUEE BAND ── */
.partners-band {
  position: relative;
  /* Consistent spacing above the band on all pages */
  margin-top: 0;
  /* Slightly stronger shadow for a more premium feel */
  box-shadow: 0 -10px 40px -4px rgba(28,47,107,.13), 0 -1px 0 0 rgba(28,47,107,.09);
}

/* No ::before needed — shadow is on the element itself */
.partners-band::before { content: none; }

/* Spacer before partners band — consistent on all pages/breakpoints */
.mobile-partners-spacer { height: 48px; }
@media (max-width: 768px) {
  .mobile-partners-spacer { height: 64px; }
}




.partners-inner {
  display: flex; align-items: center;
  height: 52px;
  position: relative;
}
.partners-label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 800;
  color: rgba(28,47,107,.95);
  white-space: nowrap; flex-shrink: 0;
  padding: 0 24px 0 0;
  border-right: none;
  margin-right: 0;
  position: relative; z-index: 2;
  background: transparent;
}

.partners-label::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(28,47,107,.05);
}
.partners-track-wrap {
  flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
}
.partners-track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-item {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(28,47,107,.55);
  white-space: nowrap; transition: color .2s;
}
.partner-item:hover { color: var(--navy); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 22px 0;
}
.cta-band-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cta-band-left {}
.cta-band-title { font-size: 15px; font-weight: 500; color: var(--white); font-family: 'DM Serif Display', serif; }
.cta-band-sub { font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .08em; margin-top: 2px; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #0b1431 0%, #0a1022 100%);
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px; padding: 28px 0 16px;
  /* removed */ rgba(255,255,255,.045);
}
.footer-brand{display:inline-block;margin-bottom:16px;}
.footer-brand-ata{font-family:'DM Serif Display',serif;font-size:22px;letter-spacing:-.02em;color:rgba(255,255,255,.82);line-height:1;}
.footer-brand-dist{font-size:10px;letter-spacing:.32em;text-transform:uppercase;color:rgba(255,255,255,.32);margin-top:6px;}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.34); line-height: 1.7; max-width: 30ch; }

.footer-col-head {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,.2); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.38); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }

.footer-contact-block { margin-bottom: 10px; }
.footer-ck { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 3px; }
.footer-cv { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-cv a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-cv a:hover { color: rgba(255,255,255,.7); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,.15); }
.footer-links-bottom { display: flex; gap: 18px; }
.footer-links-bottom a { font-size: 10px; color: rgba(255,255,255,.2); transition: color .15s; }
.footer-links-bottom a:hover { color: rgba(255,255,255,.5); }
.footer-links-bottom .dot { font-size: 10px; color: rgba(255,255,255,.2); }

/* ══════════════════════════
   ACCUEIL — HERO
══════════════════════════ */
.hero {
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
  /* removed */ rgba(0,0,0,.06);
  box-shadow: 0 1px 12px rgba(0,0,0,.02);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 72% 50%, var(--pale) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; color: var(--accent); margin-bottom: 16px;
}
.hero-tag::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-slogan {
  margin-top: 28px; padding-top: 20px;
  font-size: 11px; color: var(--subtle); letter-spacing: .06em; font-style: italic;
  position: relative;
}

/* Ultra subtle "shadow" separator (instead of a rigid line) */
.hero-slogan::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: rgba(0,0,0,.04);
  box-shadow: 0 6px 14px rgba(0,0,0,.04);
}

/* Hero visual — ATA logo large + watermark inspired */
.hero-visual { position: relative; }
.hero-visual-card {
  border-radius: 14px; overflow: hidden;
  background: var(--navy);
  padding: 56px 40px 48px;
  position: relative;
  box-shadow: 0 28px 72px rgba(28,47,107,.2);
}
.hero-visual-logo-bg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden;
}
.hero-visual-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 200px; font-weight: 400;
  color: rgba(255,255,255,.045);
  letter-spacing: -.04em; line-height: 1;
  user-select: none;
}
/* Geometric grid overlay */
.hero-visual-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-visual-content { position: relative; z-index: 1; }
.hero-visual-eyebrow {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px; font-family: 'DM Sans', sans-serif;
}
.hero-visual-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(255,255,255,.85); line-height: 1.3; font-style: italic;
  margin-bottom: 28px;
}
.hero-visual-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-visual-chip {
  background: rgba(255,255,255,.08); border-radius: 6px;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.1);
}
.hero-visual-chip-val { font-family: 'DM Serif Display', serif; font-size: 18px; color: white; line-height: 1; }
.hero-visual-chip-key { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 3px; }
.hero-visual-footer {
  margin-top: 28px; padding-top: 20px;
  /* removed */ rgba(255,255,255,.08);
  display: flex; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .06em;
}

/* ── WHO SECTION ── */
.who-section { padding: 80px 0; /* removed */ var(--line); }
.who-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 72px; align-items: center; }
.who-visual-wrap { position: relative; max-width: 380px; }

/* WHO VISUAL — Corporate premium, BTP institutional */
.who-visual {
  aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, #0d1830 0%, #1c2f6b 45%, #1a3a7a 100%);
  display: flex; align-items: stretch; justify-content: stretch;
  position: relative;
  box-shadow: 0 24px 64px rgba(12,24,56,.28), 0 4px 16px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.07);
}
/* Diagonal accent bar — top-right corner */
.who-visual::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 180px; height: 180px;
  background: linear-gradient(135deg, rgba(36,72,176,.4) 0%, transparent 60%);
  pointer-events: none;
}
/* Bottom left accent */
.who-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(36,72,176,.2) 100%);
  pointer-events: none;
}
.who-visual-bg-text {
  position: absolute; bottom: 12px; left: 0; right: 0;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(60px, 10vw, 120px); font-weight: 400;
  color: rgba(255,255,255,.025); line-height: 1;
  letter-spacing: .08em; pointer-events: none; user-select: none;
  text-align: center; text-transform: uppercase;
}
.who-visual-bg-text-top {
  position: absolute; top: 12px; left: 0; right: 0;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 7vw, 90px); font-weight: 400;
  color: rgba(255,255,255,.025); line-height: 1;
  letter-spacing: .5em; pointer-events: none; user-select: none;
  text-align: center; text-transform: uppercase;
}
.who-visual-content {
  position: relative; z-index: 1; text-align: center;
  padding: 40px 32px; display: flex; flex-direction: column;
  justify-content: center; align-items: center; width: 100%;
}
.who-visual-logo-img{ height:44px; width:auto; margin:0 auto; filter:brightness(0) invert(1); opacity:.92; }
.who-visual-logo {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 64px); font-weight: 400;
  color: rgba(255,255,255,.78); letter-spacing: .08em;
  line-height: 1;
}
.who-visual-sub {
  font-size: 9px; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-top: 8px; font-family: 'DM Sans', sans-serif;
}
.who-visual-line { width: 32px; height: 1px; background: rgba(255,255,255,.18); margin: 22px auto; }
/* Three stats inline */
.who-visual-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; width: 100%; margin-top: 24px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px; overflow: hidden;
}
.who-visual-stat {
  padding: 14px 10px; background: rgba(255,255,255,.04);
  text-align: center;
}
.who-visual-stat-val {
  font-family: 'DM Serif Display', serif; font-size: 20px;
  color: rgba(255,255,255,.8); line-height: 1;
}
.who-visual-stat-key {
  font-size: 8px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-top: 4px;
}
.who-visual-slogan {
  font-family: 'DM Serif Display', serif; font-size: 13px;
  color: rgba(255,255,255,.35); font-style: italic; line-height: 1.5;
  margin-top: 20px;
}

.who-text {}
.who-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.who-cta { margin-top: 24px; }

/* ── CAROUSEL ── */
.carousel-section { padding: 80px 0; /* removed */ rgba(0,0,0,.03); box-shadow: 0 18px 46px -46px rgba(0,0,0,.35) inset; }
.carousel-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px;
}
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--muted);
  transition: all .18s var(--ease);
}
.carousel-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--pale); }

.carousel-track-wrap { overflow: hidden; cursor: grab; user-select: none; touch-action: pan-y; }
.carousel-track-wrap:active { cursor: grabbing; }
.carousel-track { display: flex; gap: 16px; transition: transform .4s var(--ease); will-change: transform; }

.c-slide {
  flex: 0 0 calc(33.333% - 11px); border-radius: 10px; overflow: hidden;
  border: 1.5px solid var(--line); background: var(--white);
  cursor: pointer;
  transition: border-color .22s, box-shadow .22s, transform .22s;
  position: relative;
}
.c-slide:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(36,72,176,.1), 0 10px 32px rgba(28,47,107,.1);
  transform: translateY(-2px);
}
.c-slide-img-wrap { overflow: hidden; }
.c-slide-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .4s var(--ease); }
.c-slide:hover .c-slide-img { transform: scale(1.04); }
.c-slide-body { padding: 14px 16px 16px; }
.c-slide-name { font-family: 'DM Serif Display', serif; font-size: 16px; font-weight: 400; margin-bottom: 5px; }
.c-slide-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }
.c-slide-hint {
  position: absolute; top: 8px; right: 8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(28,47,107,.65); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  opacity: 0; transform: scale(.75); transition: opacity .18s, transform .18s;
}
.c-slide:hover .c-slide-hint { opacity: 1; transform: scale(1); }

.carousel-dots { display: flex; justify-content: center; gap: 5px; margin-top: 20px; }
.carousel-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; transition: background .2s, transform .2s; }
.carousel-dot.active { background: var(--navy); transform: scale(1.4); }

/* ── MODAL ── */
.modal-bg {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,10,20,.5); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--white); border-radius: 12px;
  width: min(660px, 100%); max-height: 88vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
  animation: modalIn .24s var(--ease);
}
@keyframes modalIn { from { opacity:0; transform:translateY(12px) } to { opacity:1; transform:none } }
.modal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px 12px 0 0; }
.modal-body { padding: 26px 30px 30px; }
.modal-eyebrow { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; font-weight: 600; }
.modal-title { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; margin-bottom: 14px; }
.modal-text p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.modal-head { position: relative; }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,.45); color: white; border: none;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background .2s;
}
.modal-close:hover { background: var(--navy); }

/* ══════════════════════════
   À PROPOS
══════════════════════════ */
.apropos-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; padding-top: 72px; padding-bottom: 72px; /* removed */ var(--line); }

/* Visuel avec goutte d'eau en filigrane */
.apropos-visual {
  aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
  background: linear-gradient(145deg, #1c2f6b 0%, #2448b0 60%, #3358c4 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 20px 56px rgba(28,47,107,.18);
}
.apropos-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(255,255,255,.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,.045) 0%, transparent 40%);
}
/* Water drop SVG filigrane */
.apropos-visual-drop {
  position: absolute; bottom: -30px; right: -20px;
  width: 220px; height: 220px; opacity: .06;
  pointer-events: none;
}
.apropos-visual-content { position: relative; z-index: 1; text-align: center; padding: 40px; }
.apropos-visual-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.8); line-height: 1.35; font-style: italic;
  margin-bottom: 16px;
}
.apropos-visual-attr { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); }

.apropos-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }

/* Chiffres clés — À propos uniquement */
.stats-band { padding: 52px 0; background: var(--off); border-bottom: none; border-top: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { padding: 20px 28px; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(28,47,107,.04); }
.stat-num { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3vw, 40px); color: var(--navy); line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--subtle); margin-top: 7px; font-weight: 500; }

/* Values */
.values-section { padding: 72px 0; /* removed */ var(--line); }
.values-header { margin-bottom: 44px; }
.values-header .eyebrow { margin-bottom: 8px; }
.values-header .title { font-size: clamp(20px, 2.2vw, 28px); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.value-card {
  padding: 36px 32px 32px; border-radius: 0;
  background: var(--white);
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  transition: background .25s;
}
.value-card:first-child { border-radius: 10px 0 0 10px; }
.value-card:last-child { border-radius: 0 10px 10px 0; }
.value-card::before {
  content: attr(data-num);
  position: absolute; right: 20px; top: 16px;
  font-family: 'DM Serif Display', serif; font-size: 80px; font-weight: 400;
  color: var(--off); line-height: 1; pointer-events: none;
  transition: color .3s, transform .3s;
}
.value-card:hover { background: var(--pale); }
.value-card:hover::before { color: rgba(36,72,176,.08); transform: scale(1.05); }

.value-marker {
  width: 28px; height: 2px; border-radius: 2px;
  background: var(--accent); margin-bottom: 22px;
  transition: width .25s;
}
.value-card:hover .value-marker { width: 44px; }
.value-title { font-family: 'DM Serif Display', serif; font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.value-text { font-size: 13px; color: var(--muted); line-height: 1.8; position: relative; z-index: 1; }

/* ══════════════════════════
   SERVICES
══════════════════════════ */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 64px; padding-bottom: 64px; }
.service-card {
  padding: 36px 30px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--white);
  position: relative; overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: transparent; box-shadow: 0 6px 28px rgba(28,47,107,.1); transform: translateY(-2px); }
.service-num { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--subtle); margin-bottom: 18px; font-weight: 500; }
.service-title { font-family: 'DM Serif Display', serif; font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.service-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════
   QUALITÉ
══════════════════════════ */
.qualite-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; padding-top: 32px; padding-bottom: 56px; }
.qualite-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }

/* Steps — dynamic process */
.process-steps { padding: 56px 0; border-top: 0; box-shadow: none; position: relative; }
/* Soft fade instead of hard line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(28,47,107,.10) 30%, rgba(28,47,107,.10) 70%, transparent);
}
.process-head { margin-bottom: 44px; }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 20px; left: 20px; right: 20px; height: 1px;
  background: var(--line); z-index: 0;
}
.step-item { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.step-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'DM Serif Display', serif; font-size: 14px; color: var(--navy);
  transition: background .3s, border-color .3s, transform .3s;
}
.step-item:hover .step-dot { background: var(--navy); border-color: var(--navy); color: white; transform: scale(1.1); }
.step-title { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.step-text { font-size: 11px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .wrap { padding: 0 22px; }
  .hero-grid, .who-grid, .apropos-grid, .magasin-grid, .qualite-content-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual, .who-visual-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .c-slide { flex: 0 0 calc(50% - 8px); }
  .float-cta span { display: none; }
  .float-cta { padding: 12px 14px; }

  /* Stats grid (2x2): remove the unwanted vertical line on the right of item #2 */
  /* Fix: the actual elements are .stat-item (not .stat). This bug caused
     extra borders (ex: unwanted right line next to "8 pôles produits"). */
  .stat-item:nth-child(2n) { border-right: 0; }
  .stat-item:nth-child(n+3) { /* removed */ rgba(28,47,107,.06); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .c-slide { flex: 0 0 80%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 48px 0 36px; }
  .hero-ctas { flex-direction: row; gap: 10px; }

  /* À propos visual: slightly bigger, softer (shadow > rounding) */
  .apropos-visual {
    border-radius: 12px !important;
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    box-shadow: 0 22px 54px rgba(0,0,0,.28), 0 4px 18px rgba(0,0,0,.14);
  }
}


/* Accueil — ajustements ciblés */
.who-title{font-size:clamp(20px,2.5vw,34px);}
.who-logo-card{display:inline-block;background:rgba(255,255,255,.96);border-radius:14px;padding:26px 28px;box-shadow:0 18px 50px rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.12);}
.who-visual-logo-img{width:min(260px,70%);height:auto;display:block;margin:0 auto;}

/* Footer — bottom legal links (RFP / secteur public) */
.footer-links-bottom{display:flex;gap:18px;align-items:center;}
.footer-links-bottom a{font-size:10px;color:rgba(255,255,255,.35);transition:color .15s;}
.footer-links-bottom a:hover{color:rgba(255,255,255,.65);}
.footer-links-bottom .dot{font-size:10px;color:rgba(255,255,255,.35);}

@media (max-width: 520px){
  .hero-visual-chips{grid-template-columns:1fr;gap:10px;}
}

/* ── CONTACT SIDEBAR MAP ── */
.contact-sidebar-map {
  border-radius: 8px; overflow: hidden;
  border: 1.5px solid var(--line);
  margin-top: 16px;
  height: 200px;
}
.contact-sidebar-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ── MAGASIN MAP ── */
.magasin-map {
  border-radius: 10px; overflow: hidden;
  border: 1.5px solid var(--line);
  height: 300px; margin-bottom: 56px;
}
.magasin-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── CTA BAND  ── */
.cta-band { background: var(--navy); padding: 22px 0; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-band-title { font-size: 15px; font-weight: 500; color: var(--white); font-family: 'DM Serif Display', serif; }
.cta-band-sub { font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .08em; margin-top: 2px; }

/* ── HIDE CTA BAND on inner pages (added per page via class) ── */
/* Contact: hide floating CTA */
body.page-contact .float-cta { display: none; }

/* Form note italic under button */
.form-note-italic {
  display: block; font-size: 10px; color: var(--subtle);
  font-style: italic; margin-top: 6px; letter-spacing: .02em;
}

/* Qualite engagements — better aligned */
.engagements-list { display: flex; flex-direction: column; gap: 0; }
.engagement-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0; /* removed */ var(--line);
}
.engagement-item:last-child { border-bottom: none; }
.engagement-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.engagement-text { font-size: 13px; color: var(--muted); line-height: 1.7; padding-top: 2px; }


/* ── CONTACT SIDEBAR phone size fix ── */
.sidebar-phone-big { font-size: 16px !important; font-weight: 600; }

/* ── FORM required asterisk red ── */
.form-lbl .req { color: #c0392b; }

/* ── MAGASIN: space between columns ── */
.magasin-grid { column-gap: 96px; }

/* ── VALUES header: ensure eyebrow stays small, title reads well ── */
.values-header { margin-bottom: 36px; }
.values-header .eyebrow { font-size: 10px; }
.values-header .title { font-size: clamp(22px, 2.6vw, 32px); margin-top: 4px; }

/* ── WHO visual on accueil — keep as is ── */

/* ── RESPONSIVE additions ── */
@media (max-width: 960px) {
  .magasin-grid { column-gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── V9 RESPONSIVE ── */
@media (max-width: 960px) {
  .who-visual-stats { grid-template-columns: repeat(3, 1fr); }
  .apropos-visual { aspect-ratio: 16/9; }
  .apropos-visual-monogram { font-size: 36px; margin-bottom: 16px; }
  .apropos-visual-badge { display: none; }
  .who-visual-logo { font-size: 38px; }
}
@media (max-width: 600px) {
  .who-visual-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .who-visual-stat-val { font-size: 15px; }
  .who-visual-stat-key { font-size: 7px; }
  .apropos-visual { aspect-ratio: 4/3; }
}

/* ══ SERVICES V10 — layout 2 colonnes avec icône latérale ══ */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 56px; padding-bottom: 72px; }
.service-card {
  padding: 32px 28px; border-radius: 10px;
  background: var(--white);
  border: 1.5px solid var(--line);
  position: relative; overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s, background .22s;
  display: grid; grid-template-columns: 40px 1fr; gap: 0 20px; align-items: start;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--navy), var(--accent));
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
.service-card:hover::after { transform: scaleY(1); }
.service-card:hover { border-color: rgba(28,47,107,.15); box-shadow: 0 8px 32px rgba(28,47,107,.09); transform: translateY(-2px); background: var(--white); }
.service-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: background .22s;
}
.service-icon svg { width: 18px; height: 18px; stroke: var(--navy); stroke-width: 1.5; fill: none; }
.service-card:hover .service-icon { background: var(--navy); }
.service-card:hover .service-icon svg { stroke: white; }
.service-card-body { min-width: 0; }
.service-num { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--subtle); margin-bottom: 10px; font-weight: 500; }
.service-title { font-family: 'DM Serif Display', serif; font-size: 18px; font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.service-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; gap: 12px; }
}


/* Contact sidebar — cleaner */
.contact-sidebar-label { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--ink); opacity: .5; padding-bottom: 10px; margin-bottom: 14px; /* removed */ var(--line); }
.sidebar-key { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--subtle); margin-bottom: 4px; }
.sidebar-val { font-size: 14px; color: var(--ink); font-weight: 400; }

/* ── PHONE SIZE ── */
a[href^="tel:"] { font-size: inherit; }
.coord-val a[href^="tel:"] { font-size: 16px; font-weight: 600; color: var(--accent); }
.sidebar-val a[href^="tel:"] { font-size: 15px !important; font-weight: 600; color: var(--accent); }


/* ── SECTION PADDING standardize ── */
.who-section { padding: 72px 0 96px; border-bottom: none; }
.carousel-section { padding: 72px 0; /* removed */ rgba(0,0,0,.03); box-shadow: 0 18px 46px -46px rgba(0,0,0,.35) inset; }
.values-section { padding: 64px 0 96px; }

/* ── APROPOS visual — smaller ── */
.apropos-visual { max-height: 520px; }
.apropos-grid { gap: 56px; align-items: center; }

/* ── MAGASIN hours + coords alignment ── */
.magasin-grid { gap: 48px; }
.hour-day { min-width: 90px; display: inline-block; }
.hour-time { color: var(--muted); }
.coord-key { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--subtle); margin-bottom: 3px; }
.coord-val { font-size: 14px; color: var(--ink); padding-bottom: 14px; margin-bottom: 14px; /* removed */ var(--line); }
.coord-row:last-child .coord-val { border-bottom: none; }

/* ── CONTACT form — add blue left border accent ── */
.contact-grid { gap: 72px; }
.form-section-label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--accent); opacity: 1;
  padding-bottom: 12px; margin-bottom: 20px; /* removed */ var(--line);
}
/* Light blue accent on focus fields */
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(36,72,176,.07); outline: none; }

/* Contact sidebar clean */
.contact-sidebar-block { margin-bottom: 24px; padding-bottom: 24px; /* removed */ var(--line); }
.contact-sidebar-block:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-row { padding: 10px 0; /* removed */ var(--line); }
.sidebar-row:last-child { border-bottom: none; }

/* Section separators — thin lines, no white gaps */
.values-section { /* removed */ var(--line); }
.stats-band { border-bottom: none; }
.process-steps { /* removed */ var(--line); }
.magasin-section-wrap { /* removed */ var(--line); }

/* ── CONTACT form accent ── */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; padding-top: 56px; padding-bottom: 72px; }

/* APROPOS visual smaller */
.apropos-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; padding-top: 40px; padding-bottom: 64px; }
.apropos-visual { aspect-ratio: 2/3 !important; }

/* ── APROPOS WATER SVG ── */
.apropos-water-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.apropos-visual { position: relative; overflow: hidden; }
.apropos-visual-content { position: relative; z-index: 2; }
.apropos-visual-monogram { display: none; } /* removed from new design */

/* ── MAGASIN: fix hours layout — day fixed width, time right-aligned ── */
.hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; /* removed */ var(--line); font-size: 13px; gap: 16px;
}
.hour-day { width: 80px; flex-shrink: 0; color: var(--ink); font-weight: 500; }
.hour-time { color: var(--muted); text-align: right; }

/* removed */

/* ── QUALITE: space before partners ── */
/* Match the generous gap used on Services before the partners band */
.process-steps { padding-bottom: 56px; border-bottom: none; }


/* ════════════════════════════════════════════
   À PROPOS VISUAL V14 — Premium, comme accueil
════════════════════════════════════════════ */
.apropos-visual {
  aspect-ratio: 4/5 !important;
  border-radius: 14px; overflow: hidden;
  /* Warm deep charcoal — almost black with a slight warm undertone */
  background: linear-gradient(160deg, #1a1a1f 0%, #1f1e26 40%, #16151c 100%);
  position: relative;
  box-shadow: 0 28px 72px rgba(0,0,0,.38), 0 4px 20px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column;
}

/* Subtle grid texture */
.apropos-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none; z-index: 0;
}
/* Warm red-orange glow — top left corner */
.apropos-visual::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse at 0% 0%, rgba(180,50,30,.28) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
/* Bottom accent bar — red */
.apropos-visual-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, #c0392b 0%, rgba(192,57,43,.1) 100%);
  z-index: 2;
}
.apropos-water-svg { display: none; }
.apropos-visual-img { display: none; }
.apropos-visual-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 48px 36px;
  height: 100%; flex: 1;
}
.apropos-visual-monogram {
  display: block !important;
  font-family: 'DM Serif Display', serif;
  font-size: 72px; font-weight: 400;
  color: rgba(255,255,255,.07); letter-spacing: .16em;
  line-height: 1; margin-bottom: 0;
  position: absolute; top: 24px; left: 0; right: 0;
  text-align: center; pointer-events: none;
}
/* Central emblem */
.apropos-emblem {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; position: relative;
}
.apropos-emblem::before {
  content: '';
  position: absolute; inset: 8px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.apropos-emblem-inner {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
.apropos-visual-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.85); line-height: 1.5; font-style: italic;
  margin-bottom: 20px; max-width: 22ch;
}
.apropos-visual-line-short {
  width: 28px; height: 1px; background: rgba(255,255,255,.2);
  margin: 0 auto 14px;
}
.apropos-visual-attr {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.3); font-family: 'DM Sans', sans-serif;
}
/* Stats row at bottom */
.apropos-visual-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; width: 100%; margin-top: 36px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px; overflow: hidden;
}
.apropos-visual-stat {
  padding: 12px 8px; background: rgba(255,255,255,.04);
  text-align: center;
}
.apropos-visual-stat-val {
  font-family: 'DM Serif Display', serif; font-size: 17px;
  color: rgba(255,255,255,.75); line-height: 1;
}
.apropos-visual-stat-key {
  font-size: 7px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-top: 4px;
}



/* Standard padding for all content sections */
.who-section,
.carousel-section,
.magasin-section,
.services-section,
.qualite-section {
  padding: 64px 0;
  /* removed */ var(--line);
}

/* À propos grid — tighter, visual not too far from text */
.apropos-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}
.apropos-section { /* removed */ var(--line); }

/* Values section */
.values-section { padding: 64px 0 96px; /* removed */ var(--line); }

/* Process / qualite */
.quality-grid { padding: 64px 0; }
.process-section { padding: 64px 0; /* removed */ var(--line); }

/* Contact form section */
.contact-section { padding: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  padding: 56px 0 72px;
  align-items: start;
}

/* Form label section header */
.form-section-title {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px; margin-bottom: 24px;
  display: block;
}

/* ════════════════════════════════════════════
   À PROPOS VISUAL V15 — Splitscreen premium
   Left: deep navy / Right: off-white accent
════════════════════════════════════════════ */
.apropos-visual {
  aspect-ratio: 4/5 !important;
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(12,24,56,.32), 0 4px 20px rgba(0,0,0,.12);
  border: none !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
}
.apropos-visual::before, .apropos-visual::after { display: none !important; }

/* Top half — dark navy with geometric art */
.apropos-split-top {
  flex: 1.2;
  background: linear-gradient(145deg, #0a1528 0%, #0f1e45 50%, #162454 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* Blueprint circles */
.apropos-split-top::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 0 0 40px rgba(255,255,255,.025),
    0 0 0 80px rgba(255,255,255,.015),
    0 0 0 120px rgba(255,255,255,.008);
}
/* Accent diagonal line */
.apropos-split-top::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(36,72,176,.6) 30%,
    rgba(74,120,232,.8) 50%,
    rgba(36,72,176,.6) 70%,
    transparent 100%);
}
.apropos-top-content {
  position: relative; z-index: 2;
  text-align: center; padding: 32px;
}
.apropos-initials {
  font-family: 'DM Serif Display', serif;
  font-size: 64px; font-weight: 400;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em; line-height: 1;
  display: block;
}
.apropos-tagline-top {
  font-size: 8px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-top: 10px; display: block;
  font-family: 'DM Sans', sans-serif;
}
/* Corner accent dots */
.apropos-corner-dot {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(74,120,232,.5);
}
.apropos-corner-dot:nth-child(1) { top: 18px; left: 18px; }
.apropos-corner-dot:nth-child(2) { top: 18px; right: 18px; }
.apropos-corner-dot:nth-child(3) { bottom: 18px; left: 18px; }
.apropos-corner-dot:nth-child(4) { bottom: 18px; right: 18px; }

/* Bottom half — off-white with stats */
.apropos-split-bottom {
  flex: 1;
  background: #f5f5f2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: none;
}
.apropos-stat-cell {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px 12px; text-align: center;
  border-right: 1px solid rgba(0,0,0,.07);
  position: relative;
}
.apropos-stat-cell:last-child { border-right: none; }
/* Accent bar top */
.apropos-stat-cell::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: var(--accent); opacity: .35;
  transition: opacity .2s;
}
.apropos-stat-cell:hover::before { opacity: 1; }
.apropos-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; font-weight: 400;
  color: var(--navy); line-height: 1;
}
.apropos-stat-lbl {
  font-size: 8px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--subtle); margin-top: 5px;
}

/* Hide old visual elements */
.apropos-visual-monogram,
.apropos-visual-content,
.apropos-visual-bottom-bar,
.apropos-emblem,
.apropos-water-svg,
.apropos-visual-img,
.apropos-visual-stats { display: none !important; }


/* ════════════════════════════════════════════
   COORDS MAGASIN V15 — 2×2 Feature grid
════════════════════════════════════════════ */
.coords-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.coord-feat {
  border-radius: 10px;
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.coord-feat:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.coord-feat--address  { background: linear-gradient(135deg, #0f1e45 0%, #1c3068 100%); grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 16px; }
.coord-feat--phone    { background: linear-gradient(135deg, #1a3a7a 0%, #2448b0 100%); }
.coord-feat--email    { background: var(--off); border: 1.5px solid var(--line); }
.coord-feat--delivery { background: var(--off); border: 1.5px solid var(--line); }

.coord-feat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.coord-feat--address .coord-feat-icon,
.coord-feat--phone   .coord-feat-icon { background: rgba(255,255,255,.12); }
.coord-feat--email   .coord-feat-icon,
.coord-feat--delivery .coord-feat-icon { background: var(--pale); }

.coord-feat-icon svg { width: 16px; height: 16px; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.coord-feat--address .coord-feat-icon svg,
.coord-feat--phone   .coord-feat-icon svg { stroke: rgba(255,255,255,.9); }
.coord-feat--email   .coord-feat-icon svg,
.coord-feat--delivery .coord-feat-icon svg { stroke: var(--navy); }

.coord-feat-label {
  font-size: 8px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 3px;
}
.coord-feat--address .coord-feat-label,
.coord-feat--phone   .coord-feat-label { color: rgba(255,255,255,.4); }
.coord-feat--email   .coord-feat-label,
.coord-feat--delivery .coord-feat-label { color: var(--subtle); }

.coord-feat-val { font-size: 13px; font-weight: 500; line-height: 1.4; }
.coord-feat--address .coord-feat-val,
.coord-feat--phone   .coord-feat-val { color: rgba(255,255,255,.92); }
.coord-feat--email   .coord-feat-val,
.coord-feat--delivery .coord-feat-val { color: var(--ink); }

/* arrow on hover for links */
.coord-feat-arrow {
  margin-top: auto; font-size: 16px;
  transition: transform .18s;
}
.coord-feat--address .coord-feat-arrow { color: rgba(255,255,255,.25); margin-left: auto; margin-top: 0; }
.coord-feat--phone   .coord-feat-arrow { color: rgba(255,255,255,.3); }
.coord-feat:hover .coord-feat-arrow { transform: translateX(3px); }

@media (max-width: 600px) {
  .coords-feature-grid { grid-template-columns: 1fr; }
  .coord-feat--address { grid-column: 1; }
  .apropos-split-bottom { grid-template-columns: repeat(3,1fr); }
}

/* ════════════════════════════════════════════
   À PROPOS VISUAL V16 — Photo eau + overlay élégant
════════════════════════════════════════════ */
.apropos-visual {
  aspect-ratio: 3/4 !important;
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 72px rgba(12,24,56,.22);
  background: #0a1628 !important;
  display: block !important;
  flex-direction: unset !important;
}
.apropos-visual::before { display: none !important; }
.apropos-visual::after {
  display: block !important;
  content: '';
  position: absolute; top: 0; left: 0;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse at 15% 10%, rgba(56,110,180,.35) 0%, rgba(30,60,120,.15) 40%, transparent 65%);
  pointer-events: none; z-index: 1;
}

/* Photo background — water image */
.apropos-photo-bg {
  position: absolute; inset: 0;
  background: url('../assets/water.png') center center / cover no-repeat;
  filter: saturate(1.2) brightness(.9);
  transition: transform 6s ease;
}
.apropos-visual:hover .apropos-photo-bg { transform: scale(1.03); }

/* Rich gradient overlay — bottom-heavy, left edge accent */
.apropos-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      175deg,
      rgba(10,22,40,.35) 0%,
      rgba(15,30,65,.5) 40%,
      rgba(10,18,45,.82) 75%,
      rgba(8,14,38,.95) 100%
    );
}
/* Subtle left accent line */
.apropos-photo-overlay::before {
  content: '';
  position: absolute; top: 15%; bottom: 15%; left: 0; width: 3px;
  background: linear-gradient(180deg, transparent, rgba(74,120,232,.6), transparent);
}

/* Content sits above photo */
.apropos-photo-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}
.apropos-photo-eyebrow {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.38); font-family: 'DM Sans', sans-serif;
  margin-bottom: 10px;
}
.apropos-photo-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(255,255,255,.92);
  font-style: italic; line-height: 1.35;
  margin-bottom: 20px;
}
.apropos-photo-divider {
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent), rgba(74,120,232,.3));
  margin-bottom: 18px;
  border: none;
}
.apropos-photo-meta {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.28); font-family: 'DM Sans', sans-serif;
}

/* Hide all old apropos visual elements */
.apropos-split-top, .apropos-split-bottom,
.apropos-visual-content, .apropos-visual-monogram,
.apropos-visual-bottom-bar, .apropos-emblem,
.apropos-water-svg, .apropos-visual-img,
.apropos-visual-stats, .apropos-top-content,
.apropos-corner-dot { display: none !important; }


/* ════════════════════════════════════════════
   INFOS MAGASIN — V16 Layout
   Top: Adresse card (full) + Ouvrir Maps btn
   Bottom: Tél + Email side by side
════════════════════════════════════════════ */
.coords-v16 { display: flex; flex-direction: column; gap: 12px; }

/* Adresse block — full width with Maps btn */
.coord-address-block {
  border: 1.5px solid var(--line);
  border-radius: 10px; overflow: hidden;
}
.coord-address-inner {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--white);
}
.coord-addr-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.coord-addr-icon svg { width: 16px; height: 16px; stroke: white; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.coord-addr-text {}
.coord-addr-label { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--subtle); margin-bottom: 3px; }
.coord-addr-val { font-size: 13px; color: var(--ink); font-weight: 500; line-height: 1.45; }
.coord-maps-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 18px;
  background: var(--off); border-top: 0; box-shadow: inset 0 1px 0 rgba(28,47,107,.08);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--navy);
  text-decoration: none; transition: background .18s, color .18s;
}
.coord-maps-btn:hover { background: var(--navy); color: white; }
.coord-maps-btn svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Tél + Email row */
.coord-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.coord-contact-card {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 16px 16px;
  text-decoration: none; color: inherit;
  background: var(--white); transition: border-color .18s, background .18s;
  display: flex; align-items: center; gap: 12px;
}
.coord-contact-card:hover { border-color: var(--accent); background: var(--pale); }
.coord-contact-icon {
  width: 34px; height: 34px; border-radius: 7px; flex-shrink: 0;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
}
.coord-contact-icon svg { width: 14px; height: 14px; stroke: var(--navy); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.coord-contact-label { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--subtle); margin-bottom: 3px; }
.coord-contact-val { font-size: 12px; color: var(--ink); font-weight: 500; line-height: 1.35; }

/* Livraison tag — subtle, below contact row */
.coord-livraison {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--line);
  border-radius: 8px; background: var(--off); font-size: 12px; color: var(--muted);
}
.coord-livraison svg { width: 13px; height: 13px; stroke: var(--subtle); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

@media (max-width: 600px) {
  .coord-contact-row { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════
   À PROPOS VISUAL V17 — SVG abstrait eau/mouvement
   Inspiré de la sphère eau : profondeur, flux, bulles
════════════════════════════════════════════ */
.apropos-visual {
  aspect-ratio: 3/4 !important;
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #0b1929 0%, #0f2040 45%, #0a1a35 100%) !important;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 4px 20px rgba(0,0,0,.2) !important;
  display: block !important;
}
.apropos-visual::before { display: none !important; }
.apropos-visual::after {
  display: block !important;
  content: '';
  position: absolute; top: 0; left: 0;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse at 15% 10%, rgba(56,110,180,.35) 0%, rgba(30,60,120,.15) 40%, transparent 65%);
  pointer-events: none; z-index: 1;
}

/* Hide all old layers */
.apropos-split-top, .apropos-split-bottom,
.apropos-visual-content, .apropos-visual-monogram,
.apropos-visual-bottom-bar, .apropos-emblem,
.apropos-water-svg, .apropos-visual-img,
.apropos-visual-stats, .apropos-top-content,
.apropos-corner-dot, .apropos-photo-bg,
.apropos-photo-overlay { display: none !important; }

/* SVG fills entire card */
.apropos-svg-art {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

/* Text overlay at bottom */
.apropos-photo-content {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}
.apropos-photo-eyebrow {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-family: 'DM Sans', sans-serif;
  margin-bottom: 8px;
}
.apropos-photo-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(255,255,255,.9);
  font-style: italic; line-height: 1.35;
  margin-bottom: 16px;
}
.apropos-photo-divider {
  width: 28px; height: 2px;
  background: linear-gradient(90deg, #c0392b, rgba(192,57,43,.2));
  margin-bottom: 14px; border: none;
}
.apropos-photo-meta {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.25); font-family: 'DM Sans', sans-serif;
}


/* ════════════════════════════════════════════
   INFOS MAGASIN V17 — 2 colonnes élégantes
   Gauche: horaires + adresse + livraison + maps
   Droite: téléphone + email — accent rouge
════════════════════════════════════════════ */
.magasin-v17 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  padding: 56px 0 72px;
  align-items: start;
}

/* Section label — red accent */
.magasin-label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: #c0392b;
  padding-bottom: 10px; margin-bottom: 0;
  border-bottom: 2px solid #c0392b;
  display: block;
}

/* Horaires — no borders between days, just space */
.hours-list { margin-top: 0; }
.hour-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; font-size: 13px;
}
.hour-item:last-child { padding-bottom: 0; }
.hour-day-name { color: var(--ink); font-weight: 500; min-width: 80px; }
.hour-day-time { color: var(--muted); }

/* Adresse block — below hours */
.magasin-address-block {
  margin-top: 28px; padding-top: 24px;
  border-top: 0; box-shadow: inset 0 1px 0 rgba(28,47,107,.08);
}
.magasin-address-label {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--subtle); margin-bottom: 6px;
}
.magasin-address-val {
  font-size: 13px; color: var(--ink); line-height: 1.6; margin-bottom: 6px;
}
.magasin-livraison {
  font-size: 12px; color: var(--muted); margin-top: 6px; margin-bottom: 16px;
}
.magasin-maps-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; color: var(--navy);
  border: 1.5px solid var(--navy); border-radius: 6px;
  padding: 8px 16px; text-decoration: none;
  transition: background .18s, color .18s;
}
.magasin-maps-link:hover { background: var(--navy); color: white; }
.magasin-maps-link svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Contact column — right */
.magasin-contact-col { padding-top: 0; }
.magasin-contact-item {
  padding: 20px 0; /* removed */ var(--line);
}
.magasin-contact-item:first-child { padding-top: 0; }
.magasin-contact-item:last-child { border-bottom: none; }
.magasin-contact-key {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--subtle); margin-bottom: 6px;
}
.magasin-contact-val {
  font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.3;
}
.magasin-contact-val a { color: var(--ink); text-decoration: none; }
.magasin-contact-val a:hover { color: var(--accent); }

/* Red dot accent */
.magasin-accent-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #c0392b; margin-right: 8px; vertical-align: middle;
}

@media (max-width: 768px) {
  .magasin-v17 { grid-template-columns: 1fr; gap: 40px; }
}


/* ════════════════════════════════════════════
   INFOS MAGASIN V18 — Premium redesign
   Equal visual weight, readable, elegant
════════════════════════════════════════════ */

/* Whole section with subtle background */
/* ════════════════════════════════════════════
   LEGAL PAGES — clean doc format (no cards)
════════════════════════════════════════════ */
.legal-doc {
  max-width: 700px;
  margin: 0 auto;
}
.legal-doc-section {
  padding: 36px 0;
  /* removed */ var(--line, #e8e8e4);
}
.legal-doc-section:first-child { padding-top: 0; }
.legal-doc-section--last { border-bottom: none; }
.legal-doc-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; font-weight: 400; font-style: italic;
  color: var(--navy, #1c2f6b);
  margin-bottom: 12px; line-height: 1.3;
}
.legal-doc-section p {
  font-size: 14px; color: var(--muted, #6b6b65);
  line-height: 1.85; margin-bottom: 10px;
}
.legal-doc-section p:last-child { margin-bottom: 0; }
.legal-doc-section ul {
  margin: 10px 0 10px 0; padding-left: 0; list-style: none;
}
.legal-doc-section ul li {
  font-size: 14px; color: var(--muted, #6b6b65); line-height: 1.8;
  padding: 3px 0 3px 18px; position: relative;
}
.legal-doc-section ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--accent, #2448b0); font-weight: 600;
}
.legal-doc-section a {
  color: var(--accent, #2448b0); text-decoration: none; /* removed */ rgba(36,72,176,.2);
  transition: border-color .15s;
}
.legal-doc-section a:hover { border-color: var(--accent, #2448b0); }
.legal-doc-section em { color: var(--subtle, #a0a09a); font-style: italic; }


/* ════════════════════════════════════════════
   ADDRESS EDITORIAL STYLE (mag20)
════════════════════════════════════════════ */

.mag20-block-addr .mag20-addr-editorial {
  padding-top: 4px;
}
.mag20-addr-street {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px; font-weight: 400; font-style: italic;
  color: var(--navy, #1c2f6b); letter-spacing: -.01em;
  line-height: 1.3; margin-bottom: 3px;
}
.mag20-addr-city {
  font-size: 17px; font-weight: 600; color: var(--ink, #1a1a1a);
  letter-spacing: -.005em; margin-bottom: 4px;
}
.mag20-addr-region {
  font-size: 12px; color: var(--muted, #6b6b65);
  letter-spacing: .04em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 14px;
}
.mag20-maps-text {
  font-size: 12px; color: var(--accent, #2448b0);
  text-decoration: none; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: opacity .15s; display: inline-block;
}
.mag20-maps-text:hover { opacity: .65; }

/* Remove old button style */
.mag20-maps-btn { display: none; }


/* ════════════════════════════════════════════
   LOGO-BLUE PALETTE — extracted from logo
   Logo dominant: rgb(40, 40, 120) → #282878
   Warmer, deeper indigo — not bright electric blue
════════════════════════════════════════════ */

/* À PROPOS card — richer indigo bloom instead of cold bright blue */
.apropos-visual-bloom-main {
  background: radial-gradient(ellipse 80% 65% at 15% 10%,
    rgba(45, 45, 150, .7) 0%,
    rgba(28, 28, 100, .35) 45%,
    transparent 70%) !important;
}
.apropos-visual-bloom-secondary {
  background: radial-gradient(ellipse 55% 45% at 105% 80%,
    rgba(20, 20, 85, .45) 0%,
    transparent 60%) !important;
}

/* CONTACT sidebar — warmer indigo-slate, not #1e2a3a cold */
.ct20-sidebar {
  padding: 0;
  background: #13202e;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
/* Richer top bloom matching logo indigo */
.ct20-sidebar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 160px;
  background: radial-gradient(ellipse 120% 100% at 80% 0%,
    rgba(45, 45, 140, .45) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
/* Ensure content above bloom */
.ct20-sidebar-accent,
.ct20-sidebar-eyebrow,
.ct20-contact-item,
.ct20-response-badge { position: relative; z-index: 1; }

/* Icon tints harmonized with logo indigo */
.ct20-icon-tel  { background: rgba(192, 57, 43, .22);  color: #e08878; }
.ct20-icon-mail { background: rgba(45, 45, 150, .28);  color: #9090d8; }
.ct20-icon-loc  { background: rgba(39, 174, 96, .18);  color: #70d494; }

/* Livraison dot blue — matches logo */
.mag20-livr-dot--blue { background: #2828a0; }

/* Magasin right section coords bar icon harmonized */
.mag20-coord-icon { color: #282878; background: rgba(40, 40, 120, .08); }

/* ════════════════════════════════════════════
   FINAL POLISH — Feb 2026
════════════════════════════════════════════ */

/* Magasin — remove the hard divider line between blocks, use spacing only */
.mag20-block {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  padding-top: 24px !important;
}
.mag20-block:first-child { padding-top: 0 !important; }
.mag20-block + .mag20-block {
  padding-top: 22px;
  /* removed */ rgba(0,0,0,.06) !important;
}

/* Address — more editorial weight */
.mag20-addr-street {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px; font-weight: 400; font-style: italic;
  color: var(--navy, #1c2f6b); letter-spacing: -.015em; line-height: 1.25;
}
.mag20-addr-city {
  font-size: 16px; font-weight: 600; color: var(--ink, #1a1a1a); letter-spacing: -.01em;
}
.mag20-addr-region {
  font-size: 11px; color: var(--muted, #6b6b65); letter-spacing: .05em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 12px;
}
.mag20-maps-text {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  color: var(--accent, #2448b0); text-decoration: none;
  letter-spacing: .08em; text-transform: uppercase;
  transition: opacity .15s;
}
.mag20-maps-text::after { content: ' →'; }
.mag20-maps-text:hover { opacity: .65; }

/* Elevate contact sidebar a final notch */
/* Warm glow at top-right */
.ct20-sidebar::after {
  content: '';
  position: absolute; top: 0; right: -20px; width: 200px; height: 160px;
  background: radial-gradient(ellipse at 80% 0%, rgba(192,57,43,.14) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
/* Soft glow at bottom-left */
.ct20-sidebar::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 130% 60% at 110% 0%, rgba(36,72,160,.35) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  pointer-events: none;
}
/* Ensure all children above pseudo-elements */
.ct20-sidebar > * { position: relative; z-index: 1; }

/* Phone number — slightly larger, more impact */
.ct20-contact-val { font-size: 15px; letter-spacing: -.01em; }
.ct20-contact-item:first-of-type .ct20-contact-val { font-size: 17px; font-weight: 700; }

/* ════════════════════════════════════════════
   CONTACT — form + sidebar FINAL
════════════════════════════════════════════ */
.ct20-grid {
  display: grid; grid-template-columns: 1fr 280px;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,.07); align-items: stretch;
}

/* Form panel */
.contact-form-panel { padding: 44px 40px; border-right: 1px solid rgba(28,47,107,.08); }

.contact-form-eyebrow {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 700; color: var(--subtle);
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.contact-form-eyebrow::before {
  content: ''; width: 18px; height: 2px; background: var(--accent); display: block;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.span2 { grid-column: span 2; }

.form-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink);
}
.input {
  width: 100%; box-sizing: border-box; padding: 10px 13px;
  font-size: 14px; font-family: inherit; color: var(--ink);
  background: var(--off); border: 1.5px solid var(--line);
  border-radius: 9px; outline: none;
  transition: border-color .15s, box-shadow .15s; appearance: none;
}
.input::placeholder { color: var(--subtle); }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(36,72,176,.07); background: white; }
textarea.input { resize: vertical; min-height: 110px; line-height: 1.6; }
select.input { cursor: pointer; }

.rgpd {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 12px; color: var(--subtle); line-height: 1.5; cursor: pointer;
  margin-top: 4px;
}
.rgpd input { margin-top: 2px; flex-shrink: 0; }
.rgpd a { color: var(--accent); text-decoration: none; }

/* Sidebar */
.ct20-sidebar {
  display: flex; flex-direction: column;
  background: #1f2937; position: relative; overflow: hidden;
}
.ct20-sidebar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 140% 50% at 100% 0%, rgba(70,110,170,.22) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}
.ct20-sidebar-accent {
  height: 2.5px; flex-shrink: 0; z-index: 1; position: relative;
  background: linear-gradient(90deg, #c0392b, #e67e22 55%, transparent);
}
.ct20-sidebar-eyebrow {
  font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.22);
  padding: 22px 22px 16px; position: relative; z-index: 1;
}
.ct20-contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 22px; /* removed */ rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.ct20-contact-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ct20-contact-icon svg { width: 14px; height: 14px; }
.ct20-icon-tel  { background: rgba(192,57,43,.2);  color: #e07070; }
.ct20-icon-mail { background: rgba(80,130,210,.2);  color: #90b8ff; }
.ct20-icon-loc  { background: rgba(39,174,96,.16);  color: #60cc80; }
.ct20-contact-body { min-width: 0; }
.ct20-contact-label {
  font-size: 8px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.22); font-weight: 700; margin-bottom: 3px;
}
/* ALL values same size — uniform, aligned */
.ct20-contact-val {
  display: block; text-decoration: none; font-weight: 500;
  font-size: 12.5px; color: rgba(240,245,255,.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color .15s;
}
.ct20-contact-val:hover { color: white; }
.ct20-contact-link {
  font-size: 12.5px; color: #90b8ff; text-decoration: none;
  font-weight: 500; transition: color .15s;
}
.ct20-contact-link:hover { color: #b8d4ff; }
.ct20-response-badge {
  margin: auto 22px 20px; display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: rgba(255,255,255,.25); padding: 9px 12px;
  background: rgba(255,255,255,.05); border-radius: 7px;
  border: 1px solid rgba(255,255,255,.07); position: relative; z-index: 1;
}

@media (max-width: 900px) {
  .ct20-grid { grid-template-columns: 1fr; }
  .contact-form-panel { border-right: none; /* removed */ var(--line); padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.span2 { grid-column: span 1; }
}

/* ════════════════════════════════════════════
   MAGASIN FINAL v11
════════════════════════════════════════════ */
.mag20-section { padding: 24px 0 56px; }

.mag20-heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 40px; }
.mag20-heading-bar { width: 2.5px; height: 28px; background: #c0392b; border-radius: 2px; flex-shrink: 0; margin-top: 2px; }
.mag20-heading-eyebrow { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--subtle); font-weight: 600; margin-bottom: 3px; }
.mag20-heading-title { font-family: 'DM Serif Display', serif; font-style: normal; font-weight: 400; font-size: 16px; color: var(--navy); }

.mag20-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; min-height: 420px; }

/* Big grey card — contains everything */
.mag20-big-card {
  background: #ebebea;
  border-radius: 18px;
  padding: 32px 28px 32px;
  display: flex; flex-direction: column; gap: 0;
  height: 100%; box-sizing: border-box;
}

.mag20-block { }
.mag20-block-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--subtle); margin-bottom: 18px;
}
.mag20-block-label svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--accent); }

.mag20-inner-rule { display: none; margin: 0; }

/* Rows — softer contrast: #f5f4f2 instead of white */
.mag20-rows { display: flex; flex-direction: column; gap: 6px; }
.mag20-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #f5f4f2;
  border-radius: 9px; padding: 10px 14px;
}
.mag20-row-closed {
  background: rgba(0,0,0,.03);
}
.mag20-day { font-size: 13.5px; color: var(--ink); font-weight: 400; display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; }
.mag20-day-muted { color: var(--subtle); }
.mag20-badge { font-size: 12px; font-weight: 600; color: var(--navy); background: rgba(28,47,107,.09); padding: 3px 11px; border-radius: 20px; white-space: nowrap; font-family: 'DM Sans', sans-serif; }
.mag20-closed-label { font-size: 10px; color: var(--subtle); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* Bottom row: livraison + contact side by side */
.mag20-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; align-items: start; border-top: none; }

/* Plain lists — no boxes */
.mag20-plain-list { display: flex; flex-direction: column; gap: 5px; }
.mag20-plain-list span { display: flex; align-items: center; gap: 0; font-size: 13.5px; font-weight: 400; color: var(--ink); font-family: 'DM Sans', sans-serif; }
.mag20-plain-list span .mag20-dot { display: none; }

.mag20-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.mag20-dot--green { background: #27ae60; }
.mag20-dot--amber { background: #e67e22; }
.mag20-dot--navy  { background: var(--accent); }

/* Contact plain */
.mag20-plain-contacts { display: flex; flex-direction: column; gap: 5px; }
.mag20-plain-contacts a {
  font-size: 13.5px; font-weight: 400;
  text-decoration: none; transition: opacity .15s;
  font-family: 'DM Sans', sans-serif;
}
.mag20-plain-contacts a:first-child { color: var(--ink); }
.mag20-plain-contacts a:last-child { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.mag20-plain-contacts a:hover { opacity: .75; }

/* Map */
.mag20-right { height: 100%; }
.mag20-map-card { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 4px 20px rgba(0,0,0,.08); height: 100%; display: flex; flex-direction: column; }
.mag20-map-card iframe { width: 100%; flex: 1; min-height: 320px; border: none; display: block; }

/* Contact hero */
.contact-hero-title { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(16px, 1.6vw, 22px); font-weight: 400; letter-spacing: -.01em; line-height: 1.2; color: var(--ink); }
.ct20-contact-phone { font-size: 13px !important; font-weight: 500 !important; }

@media (max-width: 900px) {
  .mag20-grid { grid-template-columns: 1fr; }
  .mag20-map-card iframe { height: 280px; }
}
@media (max-width: 500px) {
  .mag20-bottom-row { grid-template-columns: 1fr; }
}

/* Kill stray trait before contact */
.mag20-bottom-row > *:last-child { border-top: none !important; }
.mag20-bottom-row .mag20-block { border-top: none !important; padding-top: 0 !important; }

/* ════════════════════════════════════════════
   SLIM HERO — horizontal compact bar
════════════════════════════════════════════ */
.slim-hero {
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  padding: 0;
}

.slim-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: auto;
  padding: 40px 0 32px;
}

.slim-hero-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.slim-hero-divider {
  display: none;
}
.slim-hero-divider--hide { display: none; }

.slim-hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slim-hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  font-style: normal;
}

.slim-hero-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 52ch;
  margin-top: 10px;
}

.slim-hero-tag {
  display: none;
}


/* ════════════════════════════════════════════

/* ════════════════════════════════════════════
   MOBILE FINAL V29
════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── WRAP : 20px partout, jamais écrasé ── */
  .wrap { padding-left: 20px !important; padding-right: 20px !important; box-sizing: border-box !important; }

  /* ── HEADER ── */
  .logo-link { border-right: none !important; padding-right: 0 !important; }
  .header-cta { display: none !important; }
  .burger { display: flex !important; }
  .nav { display: none !important; }

  /* ── BURGER ── */
  .mobile-nav { position: fixed !important; top: 60px !important; left: 0 !important; right: 0 !important; bottom: 0 !important; height: calc(100vh - 60px) !important; z-index: 997 !important; background: var(--white) !important; overflow-y: auto !important; flex-direction: column !important; display: none !important; }
  .mobile-nav.open { display: flex !important; }
  .mobile-nav a { font-size: 15px !important; padding: 14px 24px !important; }
  .mobile-nav-actions { display: none !important; }

  /* ── SLIM HERO ── */
  .slim-hero { padding-top: 0 !important; padding-bottom: 0 !important; background: transparent !important; box-shadow: none !important; }
  .slim-hero-inner { display: flex !important; flex-direction: column !important; height: auto !important; min-height: auto !important; padding-top: 22px !important; padding-bottom: 18px !important; }
  .slim-hero-divider { display: none !important; }
  .slim-hero-eyebrow { display: block !important; font-size: 9px !important; margin-bottom: 8px !important; color: var(--accent) !important; }
  .slim-hero-title { display: block !important; font-size: clamp(20px, 5.5vw, 26px) !important; line-height: 1.18 !important; }
  .slim-hero-tag { display: none !important; }
  .slim-hero-sub { display: none !important; }

  /* ── HERO ACCUEIL ── */
  .hero { padding-top: 20px !important; padding-bottom: 24px !important; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-visual { display: none !important; }
  .display { font-size: 22px !important; line-height: 1.13 !important; }
  .hero-tag { font-size: 8px !important; letter-spacing: .16em !important; margin-bottom: 10px !important; }
  .hero-ctas { flex-direction: row !important; gap: 10px !important; flex-wrap: nowrap !important; margin-top: 14px !important; }
  .hero-ctas .btn-lg { flex: 1 1 0 !important; padding: 9px 6px !important; font-size: 8px !important; white-space: nowrap !important; }
  /* Trait hero→carousel : shadow-only (no rigid line) */
  .hero-slogan { border-top: none !important; }
  .carousel-section { border-bottom: none !important; border-top: 0 !important; box-shadow: 0 -18px 36px -36px rgba(28,47,107,.55) !important; }

  /* Évite les traits 1px visibles avant le bandeau partenaires (on garde uniquement des séparations en ombre) */
  .who-section,
  .values-section,
  .apropos-grid,
  .process-section,
  .magasin-section-wrap,
  .contact-section { border-bottom: none !important; }

  /* ── WHO SECTION ── */
  .who-section { padding-top: 24px !important; padding-bottom: 52px !important; border-bottom: none !important; }
  .who-grid { grid-template-columns: 1fr !important; }
  .who-visual-wrap { display: none !important; }

  /* ── PARTENAIRES ── */
  .partners-band {
    margin-top: 0 !important;
    border-top: 0 !important;
    border-bottom: none !important;
    background: transparent !important;
    position: relative !important;
    /* Keep the shadow on the band itself */
    box-shadow: 0 -10px 40px -4px rgba(28,47,107,.12), 0 -1px 0 0 rgba(28,47,107,.08) !important;
  }
  /* No fake gradient rectangle above the band */
  .partners-band::before { content: none !important; }

  /* ── CAROUSEL ── */
  .carousel-section { padding-top: 28px !important; padding-bottom: 28px !important; }

  /* ── STATS ── */
  .stats-band { padding-top: 0 !important; padding-bottom: 0 !important; }
  .stats-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 0 !important; }
  /* Softer separators (avoid “hard” grid traits) */
  .stat-item { padding: 12px 14px !important; box-shadow: none !important; border-right: 1px solid rgba(28,47,107,.04) !important; }
  .stat-item:nth-child(2n) { border-right: 0 !important; }
  .stat-item:nth-last-child(-n+2) { border-bottom: 0 !important; }
  .stat-num { font-size: 22px !important; }
  .stat-label { font-size: 8px !important; }

  /* ── À PROPOS ── */
  .apropos-grid { grid-template-columns: 1fr !important; gap: 18px !important; padding-top: 18px !important; padding-bottom: 52px !important; }
  .apropos-visual { display: block !important; width: 94% !important; max-width: 340px !important; height: 230px !important; margin: 0 auto !important; aspect-ratio: unset !important; border-radius: 14px !important; overflow: hidden !important; position: relative !important; }
  .apropos-visual-inner-content { padding: 22px 20px !important; }
  .ap-title { font-size: 16px !important; margin-bottom: 10px !important; }
  .ap-label-top { margin-bottom: 6px !important; font-size: 6px !important; letter-spacing: .28em !important; opacity: .55 !important; }
  .ap-label-bottom { font-size: 7.5px !important; letter-spacing: .18em !important; opacity: .65 !important; }
  .apropos-text { width: 100% !important; }

  /* ── VALEURS ── */
  .values-section { padding-top: 24px !important; padding-bottom: 52px !important; border-bottom: none !important; }
  .values-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .value-card { padding: 20px !important; min-height: auto !important; border-radius: 12px !important; }
  .value-title { font-size: 15px !important; margin-bottom: 6px !important; }
  .value-text { font-size: 12.5px !important; line-height: 1.6 !important; }

  /* ── SERVICES : marges latérales grâce au wrap ── */
  /* services-grid a déjà padding-top/bottom séparés (corrigé à la source) */
  /* donc le wrap's padding-left/right s'applique correctement */
  .services-section { padding-top: 0 !important; padding-bottom: 52px !important; }
  .services-grid { grid-template-columns: 1fr !important; gap: 14px !important; padding-top: 10px !important; padding-bottom: 0 !important; }
  .service-card { padding: 18px !important; border-radius: 12px !important; grid-template-columns: 38px 1fr !important; gap: 0 14px !important; }
  .service-title { font-size: 15px !important; }
  .service-text { font-size: 12.5px !important; }

  /* ── INFO MAGASIN ── */
  .mag20-section { padding-top: 28px !important; padding-bottom: 48px !important; }
  .mag20-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .mag20-big-card { padding: 18px 16px !important; }
  .mag20-bottom-row { grid-template-columns: 1fr !important; gap: 10px !important; margin-top: 16px !important; }
  .mag20-map-card { margin-top: 8px !important; }
  .mag20-map-card iframe { height: 210px !important; min-height: 210px !important; }

  /* ── QUALITÉ ── */
  .qualite-content-grid { grid-template-columns: 1fr !important; gap: 20px !important; padding-top: 24px !important; padding-bottom: 20px !important; }
  .qualite-text .eyebrow { margin-bottom: 2px !important; }
  .process-section { padding-top: 24px !important; padding-bottom: 52px !important; }
  .process-steps { background: transparent !important; border-top: none !important; padding-top: 8px !important; padding-bottom: 0 !important; }
  .engagements-card { padding: 16px !important; margin-bottom: 28px !important; }
  .steps-grid { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .steps-grid::before { display: none !important; }
  .step-item { display: grid !important; grid-template-columns: 36px 1fr !important; align-items: start !important; gap: 0 12px !important; padding-top: 12px !important; padding-bottom: 12px !important; /* removed */ var(--line) !important; text-align: left !important; }
  .step-item:last-child { border-bottom: none !important; }
  .step-dot { width: 30px !important; height: 30px !important; font-size: 12px !important; margin: 0 !important; flex-shrink: 0 !important; }
  .step-content { text-align: left !important; padding: 0 !important; }
  .step-title { font-size: 13px !important; font-weight: 600 !important; margin: 0 0 2px !important; display: block !important; }
  .step-text { font-size: 12px !important; line-height: 1.5 !important; margin: 0 !important; }

  /* ── CONTACT ── */
  .ct20-grid { grid-template-columns: 1fr !important; }
  .ct20-sidebar { display: none !important; }
  .contact-form-panel { padding-top: 6px !important; padding-bottom: 52px !important; }
  .page-hero { padding-top: 44px !important; padding-bottom: 32px !important; }

  /* ── FOOTER : compact sur mobile ── */
  .footer { padding-top: 0 !important; padding-bottom: 0 !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 0 !important; padding-top: 10px !important; padding-bottom: 0 !important; }
  /* Masquer la colonne Navigation sur mobile, garder Brand + Contact */
  .footer-inner > div:nth-child(2) { display: none !important; }
  /* Brand */
  .footer-inner > div:first-child { margin-bottom: 14px !important; }
  .footer-brand-ata { font-size: 17px !important; }
  .footer-tagline { font-size: 11px !important; max-width: 100% !important; margin-top: 4px !important; }
  /* Contact block : compact */
  .footer-col-head { font-size: 8px !important; margin-bottom: 8px !important; margin-top: 0 !important; }
  .footer-contact-block { padding-top: 4px !important; padding-bottom: 4px !important; }
  .footer-ck { font-size: 8px !important; }
  .footer-cv { font-size: 11px !important; }
  .footer-cv a { font-size: 11px !important; }
  /* Bottom bar */
  .footer-bottom { padding-top: 6px !important; padding-bottom: 6px !important; margin-top: 8px !important; flex-direction: column !important; text-align: center !important; gap: 5px !important; font-size: 10px !important; }
  .footer-links-bottom { justify-content: center !important; flex-wrap: wrap !important; gap: 4px !important; font-size: 10px !important; }

  /* ── FLOAT CTA ── */
  .float-cta { padding: 10px 16px !important; }
  .float-cta span { display: inline !important; font-size: 10px !important; }

  /* ── TYPO ── */
  p { font-size: 13.5px !important; line-height: 1.65 !important; }
  section:last-of-type { padding-bottom: 0 !important; }
}


/* Mobile spacing */
@media (max-width: 900px) {
  .hero + section {
    padding-top: 28px !important;
  }
}


/* ===== CLEAN SEPARATORS ===== */

/* Remove process section top line */
.process, .process::before, .process::after {
    border: none !important;
    box-shadow: none !important;
}

/* Footer smooth transition — shadow ON the footer itself, not a floating rectangle above */
.footer {
    border-top: none !important;
    position: relative;
    box-shadow: 0 -8px 32px -4px rgba(12,18,39,.10);
}
.footer::before { content: none !important; }

/* Stats grid cleanup */
.stat-item {
    border: none;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(28,47,107,.04);
}
