/* ═══════════════════════════════════════════════════
   DESIGN SYSTEM — Armor Drive
   Direction: Coastal Heritage × Modern Craft
   Palette: Atlantic slate, warm stone, aged bronze
   Encodage : UTF-8
═══════════════════════════════════════════════════ */
:root {
  --slate-900: #1a1f2e;
  --slate-800: #232a3b;
  --slate-700: #2f3848;
  --slate-600: #3d4758;
  --slate-400: #6b7a8d;
  --stone-100: #f7f4ef;
  --stone-200: #ede8df;
  --stone-300: #ddd6c8;
  --stone-white: #fdfcf9;
  --bronze: #b08050;
  --bronze-light: #c99a6a;
  --bronze-glow: rgba(176,128,80,0.12);
  --bronze-dark: #8d6540;
  --ocean: #4a6d7c;
  --ocean-light: #6a98aa;
  --text-on-dark: #f0ece5;
  --text-muted-dark: rgba(240,236,229,0.5);
  --text-on-light: #1a1f2e;
  --text-muted-light: #6b7a8d;
  --border-light: rgba(26,31,46,0.08);
  --border-dark: rgba(240,236,229,0.1);
  --font-display: 'Libre Caslon Display', 'Georgia', serif;
  --font-serif: 'Libre Caslon Text', 'Georgia', serif;
  --font-sans: 'Sora', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1300px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--stone-white);
  color: var(--text-on-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }

/* ═══ TYPO HELPERS ═══ */
.eyebrow {
  font-family: var(--font-sans);
  /* font-size: 0.68rem; */
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bronze);
}
.h-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
}
.h-md {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
}
.body-lg {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  font-style: italic;
}
.body-rg {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: all 0.4s var(--ease);
  position: relative;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--bronze { background: var(--bronze); color: var(--stone-white); }
.btn--bronze:hover { background: var(--bronze-light); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(176,128,80,0.3); }
.btn--outline { border: 1.5px solid var(--slate-900); color: var(--slate-900); background: transparent; }
.btn--outline:hover { background: var(--slate-900); color: var(--text-on-dark); }
.btn--outline-light { border: 1.5px solid rgba(240,236,229,0.3); color: var(--text-on-dark); background: transparent; }
.btn--outline-light:hover { background: var(--text-on-dark); color: var(--slate-900); }
.arrow-svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(45px); } to { opacity: 1; transform: translateY(0); } }
@keyframes clipIn { from { clip-path: inset(8% 8% 8% 8%); opacity: 0; } to { clip-path: inset(0); opacity: 1; } }
@keyframes lineWidth { from { width: 0; } to { width: 60px; } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

[data-anim] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
[data-anim].in { opacity: 1; transform: translateY(0); }
[data-anim="scale"] { transform: scale(0.96); }
[data-anim="scale"].in { transform: scale(1); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.5s var(--ease);
}
.nav.stuck {
  background: rgba(253,252,249,0.92);
  backdrop-filter: blur(24px);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo__img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(1);          /* blanc sur fond sombre — par défaut */
  transition: filter 0.5s var(--ease), opacity 0.4s;
}
.logo:hover .logo__img { opacity: 0.85; }
.nav.stuck .logo__img {
  /* Blanc → bronze #b08050 (distance colorimétrique : 1.16) */
  filter: brightness(0) invert(55%) sepia(95%) hue-rotate(-10deg) saturate(210%) brightness(80%);
}

.nav__menu { display: flex; gap: 2.2rem; list-style: none; }
.nav__menu a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(240,236,229,0.65);
  transition: color 0.3s;
}
.nav__menu a:hover { color: var(--text-on-dark); }
.nav.stuck .nav__menu a { color: var(--text-muted-light); }
.nav.stuck .nav__menu a:hover { color: var(--slate-900); }

.nav__phone {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-on-dark);
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.5s;
}
.nav.stuck .nav__phone { color: var(--slate-900); }
.nav__phone-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bronze); }

.nav__burger {
  display: none;
  width: 26px; height: 18px;
  flex-direction: column; justify-content: space-between; cursor: pointer;
}
.nav__burger span {
  height: 1.5px; width: 100%; background: var(--text-on-dark); transition: background 0.4s;
}
.nav.stuck .nav__burger span { background: var(--slate-900); }

/* ═══════════════════════════════════════════════════
   HERO — Full bleed with centered text
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--slate-900);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.32) contrast(1.1);
  animation: clipIn 1.8s var(--ease-out) both;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 70%, transparent 30%, rgba(26,31,46,0.6) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 0 2rem;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--bronze);
}
.hero__title {
  color: var(--text-on-dark);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}
.hero__subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(240,236,229,0.65);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 3rem;
  animation: fadeUp 0.8s var(--ease-out) 0.8s both;
}
.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 1s both;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════
   TAGLINE BAR
═══════════════════════════════════════════════════ */
.tagline {
  background: var(--slate-900);
  border-top: 1px solid var(--border-dark);
  padding: 1.2rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.tagline p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--bronze-light);
  letter-spacing: 0.5px;
}

/* Flèche scroll */
.tagline__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.3s;
  animation: arrowBounce 2s var(--ease) infinite;
  animation-delay: 1.8s;
}
.tagline__arrow:hover { opacity: 1; }
.tagline__arrow svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Flèche scroll générique — bas de section */
.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--bronze);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s;
  animation: arrowBounce 2.2s var(--ease) infinite;
}
.scroll-arrow:hover { opacity: 1; }
.scroll-arrow svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════
   SECTION: PHILOSOPHIE
═══════════════════════════════════════════════════ */
.philo {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0 5rem;
}
.philo__layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.philo__left .eyebrow { margin-bottom: 1.5rem; }
.philo__left .h-lg { margin-bottom: 1.5rem; color: var(--slate-900); }
.philo__left .body-lg {
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  max-width: 420px;
}
.philo__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.philo__point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.philo__point-bar {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  min-height: 48px;
  background: var(--bronze);
  border-radius: 2px;
}
.philo__point h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--slate-900);
}
.philo__point p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted-light);
  line-height: 1.6;
}
.philo__right {
  position: relative;
}
.philo__img-main {
  border-radius: 4px;
  overflow: hidden;
}
.philo__img-main img {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.philo__img-main:hover img { transform: scale(1.03); }
.philo__accent {
  position: absolute;
  bottom: -2rem;
  left: -2.5rem;
  background: var(--slate-900);
  color: var(--text-on-dark);
  padding: 1.8rem 2rem;
  border-radius: 4px;
  max-width: 260px;
  box-shadow: 0 20px 50px rgba(26,31,46,0.25);
}
.philo__accent-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--bronze-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.philo__accent-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(240,236,229,0.6);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   SECTION: SERVICES — Bento grid
═══════════════════════════════════════════════════ */
.services {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0 5rem;
  background: var(--stone-200);
}
.services__head {
  text-align: center;
  margin-bottom: 4rem;
}
.services__head .eyebrow { margin-bottom: 1rem; }
.services__head .h-lg { margin-bottom: 1rem; }
.services__head .body-rg {
  color: var(--text-muted-light);
  max-width: 550px;
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.svc {
  background: var(--stone-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(26,31,46,0.08);
  border-color: var(--bronze);
}
.svc__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bronze-glow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.4s;
}
.svc__icon svg {
  width: 24px; height: 24px;
  /* color: var(--bronze); */
  color: black;
  transition: color 0.4s;
}
.svc:hover .svc__icon { background: var(--bronze); }
.svc:hover .svc__icon svg { color: var(--stone-white); }
.svc h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--slate-900);
}
.svc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.svc ul li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted-light);
  padding-left: 1rem;
  position: relative;
}
.svc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bronze);
}

/* ═══════════════════════════════════════════════════
   SECTION: PAS UN GARAGE — Full-width statement
═══════════════════════════════════════════════════ */
.statement {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 5rem;
  background: var(--slate-900);
  overflow: hidden;
}
.statement::before {
  content: 'AD';
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(15rem, 25vw, 30rem);
  font-weight: 400;
  color: rgba(240,236,229,0.02);
  line-height: 1;
  pointer-events: none;
}
.statement__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.statement__text .eyebrow { margin-bottom: 1.5rem; }
.statement__text .h-lg {
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
}
.statement__text .body-lg {
  color: var(--text-muted-dark);
  margin-bottom: 2rem;
  max-width: 460px;
}
.statement__not-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.statement__not-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(240,236,229,0.55);
}
.statement__not-item .x {
  font-size: 0.7rem;
  color: var(--bronze);
  width: 20px;
  text-align: center;
}
.statement__is {
  background: rgba(176,128,80,0.08);
  border: 1px solid rgba(176,128,80,0.15);
  border-radius: 6px;
  padding: 1.8rem 2rem;
}
.statement__is p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--bronze-light);
  line-height: 1.7;
}
.statement__visual {
  border-radius: 6px;
  overflow: hidden;
}
.statement__visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.statement__visual:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════════════════════
   SECTION: MORBIHAN — Local pride
═══════════════════════════════════════════════════ */
.local {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0 5rem;
}
.local__layout {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 5rem;
  align-items: center;
}
.local__img {
  border-radius: 6px;
  overflow: hidden;
}
.local__img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.local__text .eyebrow { margin-bottom: 1.5rem; }
.local__text .h-lg { margin-bottom: 1.5rem; }
.local__text .body-rg {
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  max-width: 440px;
}
.local__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.local__benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--slate-900);
}
.local__benefit-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bronze-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--bronze);
  font-size: 1rem;
}
.local__locations {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.local__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-900);
  background: var(--stone-200);
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
}
.local__loc .pin { color: var(--bronze); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════
   SECTION: CTA CONTACT
═══════════════════════════════════════════════════ */
.cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
}
.cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.25) contrast(1.1);
}
.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,46,0.9) 0%, rgba(26,31,46,0.6) 100%);
}
.cta__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta__content .eyebrow { margin-bottom: 1.5rem; }
.cta__content .h-lg {
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
}
.cta__content .body-rg {
  color: var(--text-muted-dark);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta__methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.cta__method {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-on-dark);
  transition: color 0.3s;
}
.cta__method:hover { color: var(--bronze-light); }
.cta__method-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}
.cta__method:hover .cta__method-icon {
  border-color: var(--bronze);
  background: rgba(176,128,80,0.15);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--slate-900);
  padding: 3.5rem 0 1.5rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 1.5rem;
}
.footer__brand p {
  font-size: 0.88rem; font-weight: 300;
  color: var(--text-muted-dark);
  max-width: 340px;
  margin-top: 1rem;
  line-height: 1.65;
}
.footer__cols {
  display: flex;
  gap: 4rem;
}
.footer__col h5 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li + li { margin-top: 0.45rem; }
.footer__col ul a {
  font-size: 0.84rem; font-weight: 300;
  color: var(--text-muted-dark);
  transition: color 0.3s;
}
.footer__col ul a:hover { color: var(--bronze-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  font-weight: 300;
}
.footer__bottom a:hover { color: var(--bronze-light); }

/* ═══════════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════════ */
.mobile-ov {
  position: fixed; inset: 0; z-index: 200;
  background: var(--slate-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; pointer-events: none; transition: opacity 0.5s;
}
.mobile-ov.open { opacity: 1; pointer-events: all; }
.mobile-ov a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-on-dark);
  transition: color 0.3s;
}
.mobile-ov a:hover { color: var(--bronze-light); }
.mobile-ov__close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.6rem; color: var(--text-on-dark); cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   MODE ÉDITION CMS
═══════════════════════════════════════════════════ */
.cms-toolbar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--slate-900);
  border: 1px solid var(--bronze);
  border-radius: 50px;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(26,31,46,0.45);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-on-dark);
  white-space: nowrap;
}
.cms-toolbar__badge {
  background: var(--bronze);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.cms-toolbar input[type="password"] {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(240,236,229,0.15);
  border-radius: 4px;
  padding: 0.45rem 0.9rem;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  width: 160px;
  outline: none;
  transition: border-color 0.3s;
}
.cms-toolbar input[type="password"]:focus {
  border-color: var(--bronze);
}
.cms-toolbar__btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.cms-toolbar__btn--save {
  background: var(--bronze);
  color: white;
}
.cms-toolbar__btn--save:hover { background: var(--bronze-light); }
.cms-toolbar__btn--cancel {
  background: transparent;
  color: rgba(240,236,229,0.55);
  border: 1px solid rgba(240,236,229,0.15);
}
.cms-toolbar__btn--cancel:hover { color: var(--text-on-dark); }
.cms-toolbar__msg {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}
.cms-toolbar__msg--ok { background: rgba(80,176,80,0.15); color: #7dca7d; }
.cms-toolbar__msg--err { background: rgba(176,80,80,0.15); color: #e08080; }

/* Éléments éditables */
body.cms-active [data-cms] {
  outline: 2px dashed rgba(176,128,80,0.4);
  outline-offset: 3px;
  cursor: text;
  border-radius: 2px;
  transition: outline-color 0.2s;
}
body.cms-active [data-cms]:focus {
  outline: 2px solid var(--bronze);
  background: rgba(176,128,80,0.04);
}
body.cms-active [data-cms]:hover {
  outline-color: var(--bronze);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .philo__layout { grid-template-columns: 1fr; gap: 3rem; }
  .philo__accent { position: relative; bottom: auto; left: auto; margin-top: 1.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .statement__layout { grid-template-columns: 1fr; gap: 3rem; }
  .local__layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { flex-direction: column; }
}
@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.6rem; }
  .cta__methods { flex-direction: column; align-items: center; }
  .footer__cols { flex-direction: column; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.7rem; text-align: center; }
  .cms-toolbar { width: calc(100% - 2rem); border-radius: 16px; flex-wrap: wrap; justify-content: center; }
}
/* ═══════════════════════════════════════════════════
   MODALE CONTACT
═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(26,31,46,0.82);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal {
  background: var(--stone-white);
  width: 100%; max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 40px 100px rgba(26,31,46,0.35);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

/* En-tête modale */
.modal__header {
  background: var(--slate-900);
  padding: 2.5rem 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.modal__header::before {
  content: 'AD';
  position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 8rem; font-weight: 400;
  color: rgba(240,236,229,0.04);
  line-height: 1; pointer-events: none;
}
.modal__header .eyebrow { margin-bottom: 0.75rem; }
.modal__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.modal__header p {
  font-family: var(--font-serif);
  font-size: 0.9rem; font-style: italic;
  color: var(--text-muted-dark);
  max-width: 480px;
  line-height: 1.65;
}
.modal__close {
  position: absolute; top: 1.5rem; right: 1.8rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(240,236,229,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,236,229,0.55);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: none;
  font-family: inherit;
}
.modal__close:hover {
  border-color: var(--bronze);
  color: var(--text-on-dark);
  background: rgba(176,128,80,0.1);
}

/* Corps formulaire */
.modal__body {
  padding: 2.5rem 3rem;
}

.modal-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.modal-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.modal-form__field.full { grid-column: 1 / -1; }

.modal-form__field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted-light);
}
.modal-form__field label span.req {
  color: var(--bronze);
  margin-left: 2px;
}
.modal-form__field input,
.modal-form__field textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-on-light);
  background: var(--stone-100);
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  resize: none;
}
.modal-form__field input::placeholder,
.modal-form__field textarea::placeholder {
  color: var(--text-muted-light);
  opacity: 0.5;
}
.modal-form__field input:focus,
.modal-form__field textarea:focus {
  border-color: var(--bronze);
  background: white;
}
.modal-form__field input.error,
.modal-form__field textarea.error {
  border-color: #c0504a;
  background: rgba(192,80,74,0.03);
}
.modal-form__field textarea { min-height: 120px; }

/* Séparateur */
.modal-form__divider {
  height: 1px;
  background: var(--border-light);
  margin: 1.6rem 0;
}

/* Message de confirmation */
.modal-form__feedback {
  border-radius: 6px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.6;
  display: none;
  margin-bottom: 1.2rem;
}
.modal-form__feedback.ok {
  background: rgba(80,160,80,0.08);
  border: 1px solid rgba(80,160,80,0.2);
  color: #3d8a3d;
  display: block;
}
.modal-form__feedback.err {
  background: rgba(192,80,74,0.08);
  border: 1px solid rgba(192,80,74,0.2);
  color: #c0504a;
  display: block;
}

/* Actions */
.modal-form__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.modal-form__note {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  font-weight: 300;
  line-height: 1.5;
  flex: 1;
}
.modal-form__note strong {
  font-weight: 500;
  color: var(--slate-900);
}

/* Responsive modale */
@media (max-width: 640px) {
  .modal__header { padding: 2rem 1.6rem 1.6rem; }
  .modal__body   { padding: 1.8rem 1.6rem; }
  .modal-form__row { grid-template-columns: 1fr; }
  .modal-form__actions { flex-direction: column; align-items: flex-start; }
}