/* ========================================================
   CQP Monts d'Or — Coordination de Travaux
   Design system : navy + coral, DM Sans + Manrope.
   ======================================================== */

:root {
  /* Palette */
  --c-navy:        #1B2541;
  --c-navy-deep:   #0F1729;
  --c-navy-soft:   #2A3760;
  --c-coral:       #D89077;
  --c-coral-dark:  #B86E5A;
  --c-gold:        #C9A875;
  --c-cream:       #F7F2EA;
  --c-stone:       #E8DDD0;
  --c-sand:        #EFE6D8;
  --c-paper:       #FAF7F2;
  --c-text:        #1B2541;
  --c-muted:       #5C5F6E;
  --c-line:        rgba(27, 37, 65, 0.10);
  --c-line-light:  rgba(247, 242, 234, 0.18);

  /* Type */
  --f-display: 'DM Sans', system-ui, -apple-system, sans-serif;
  --f-body:    'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Base ---------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--c-coral); color: var(--c-navy); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Type ---------------------------------------------------- */
.h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-navy);
  margin: 0 0 18px;
}
.h2 em {
  font-style: normal;
  color: var(--c-coral-dark);
  font-weight: 500;
}
.h2--light { color: var(--c-cream); }
.h2--light em { color: var(--c-coral); }

.lead {
  font-size: clamp(15.5px, 1.05vw, 17.5px);
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 60ch;
}
.lead--light { color: rgba(247, 242, 234, 0.72); }

.eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-coral-dark);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--light { color: var(--c-coral); }
.bullet {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.accent-word {
  position: relative;
  color: var(--c-coral);
  display: inline-block;
}
.accent-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.18em;
  background: var(--c-coral);
  opacity: .18;
  border-radius: 4px;
}

/* Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--lg { padding: 16px 26px; font-size: 15.5px; }
.btn--block { width: 100%; justify-content: center; padding: 18px; }

.btn--primary {
  background: var(--c-coral);
  color: var(--c-navy);
  box-shadow: 0 6px 20px -8px rgba(216, 144, 119, 0.6);
}
.btn--primary:hover {
  background: var(--c-coral-dark);
  color: var(--c-cream);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(184, 110, 90, 0.55);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(247, 242, 234, 0.4);
  color: var(--c-cream);
}
.btn--ghost:hover {
  background: rgba(247, 242, 234, 0.1);
  border-color: var(--c-cream);
}

/* Annonce bar -------------------------------------------- */
.annonce {
  background: var(--c-navy-deep);
  color: var(--c-cream);
  font-size: 13px;
  border-bottom: 1px solid var(--c-line-light);
}
.annonce__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px var(--pad);
  gap: 16px; flex-wrap: wrap;
}
.annonce__pill {
  font-family: var(--f-display);
  letter-spacing: 0.02em;
  color: rgba(247,242,234,.78);
}
.annonce__contact { display: flex; gap: 8px; align-items: center; }
.annonce__contact a {
  color: var(--c-cream);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .25s;
}
.annonce__contact a:hover { color: var(--c-coral); }
.annonce__sep { opacity: .35; }

/* Nav ----------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--c-line);
  transition: background .3s, box-shadow .3s;
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  box-shadow: 0 8px 30px -16px rgba(27, 37, 65, 0.18);
}
.nav__row {
  display: flex; align-items: center; gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__logo { width: 67px; height: 67px; object-fit: contain; }
.nav__brandtitle {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  display: block;
}
.nav__brandsub {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-coral-dark);
  display: block;
  margin-top: 1px;
}
.nav__menu { display: flex; gap: 28px; margin-left: auto; }
.nav__menu a {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--c-navy);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__menu a:hover { color: var(--c-coral-dark); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 10px 18px; font-size: 13.5px; }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  width: 44px; height: 44px;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--pad) 28px;
  gap: 14px;
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
}
.nav__mobile a {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
}
.nav__mobile .btn { margin-top: 8px; align-self: flex-start; }

/* Hero ---------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(640px, 100vh, 1080px);
  display: flex; align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--c-navy-deep);
  color: var(--c-cream);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.92);
  transform: scale(1.12);
  animation: heroKenBurns 14s var(--ease) .1s both;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.18) translate3d(-1.5%, 1%, 0); filter: saturate(0.7) blur(6px); opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: scale(1.02) translate3d(0, 0, 0); filter: saturate(0.92) blur(0); opacity: 1; }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(15,23,41,.92) 0%, rgba(15,23,41,.65) 45%, rgba(15,23,41,.18) 100%),
    linear-gradient(0deg, rgba(15,23,41,.55) 0%, rgba(15,23,41,0) 30%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(247,242,234,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(247,242,234,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black 30%, transparent 80%);
  -webkit-mask-image: linear-gradient(to right, black 30%, transparent 80%);
  pointer-events: none;
  opacity: 0;
  animation: heroGridIn 1.6s var(--ease) .8s forwards, heroGridDrift 32s linear 2.4s infinite;
}
@keyframes heroGridIn {
  to { opacity: 1; }
}
@keyframes heroGridDrift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
}
.hero__copy { max-width: 720px; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 18px 0 28px;
  color: var(--c-cream);
}
.hero__title .accent-word { color: var(--c-coral); font-style: italic; font-weight: 400; }
.hero__title .accent-word::after { background: var(--c-coral); opacity: .25; }

.hero .eyebrow { color: var(--c-coral); }
.hero__lead {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
  color: rgba(247, 242, 234, 0.82);
  max-width: 56ch;
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line-light);
  max-width: 540px;
}
.hero__trustcell { display: flex; flex-direction: column; gap: 4px; }
.hero__trustcell strong {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-coral);
}
.hero__trustcell span {
  font-size: 12.5px;
  color: rgba(247,242,234,0.7);
  letter-spacing: 0.01em;
}

/* Hero contact card */
.hero__card {
  background: rgba(247, 242, 234, 0.06);
  border: 1px solid rgba(247, 242, 234, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px;
  max-width: 380px;
  width: 100%;
  justify-self: end;
}
.hero__cardhead {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,234,.72);
  margin-bottom: 14px;
}
.hero__cardhead .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6BD18B;
  box-shadow: 0 0 0 4px rgba(107, 209, 139, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(107, 209, 139, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(107, 209, 139, 0.05); }
}
.hero__card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--c-cream);
}
.hero__card p {
  margin: 0 0 22px;
  color: rgba(247,242,234,.7);
  font-size: 14.5px;
}
.hero__cardphones { display: grid; gap: 10px; margin-bottom: 18px; }
.hero__cardphones a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(247,242,234,.16);
  border-radius: 12px;
  transition: all .3s var(--ease);
}
.hero__cardphones a:hover {
  background: rgba(216,144,119,.08);
  border-color: var(--c-coral);
}
.hero__phlabel { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,242,234,.55); }
.hero__phnum {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--c-cream);
}
.hero__cardmail {
  display: block;
  text-align: center;
  font-family: var(--f-display);
  font-size: 14.5px;
  color: var(--c-coral);
  padding-top: 14px;
  border-top: 1px solid rgba(247,242,234,.12);
  transition: color .25s;
}
.hero__cardmail:hover { color: var(--c-cream); }

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(247,242,234,.55);
  z-index: 2;
}
.hero__line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--c-coral), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); opacity: .3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Hero entrance animations -------------------------------- */
.hero .eyebrow,
.hero__title,
.hero__lead,
.hero__ctas,
.hero__trust,
.hero__card,
.hero__scroll {
  opacity: 0;
  will-change: transform, opacity;
  animation: heroFadeUp 1s var(--ease) both;
}
.hero .eyebrow   { animation-delay: .35s; }
.hero__title     { animation-delay: .55s; animation-duration: 1.1s; }
.hero__lead      { animation-delay: .85s; }
.hero__ctas      { animation-delay: 1.05s; }
.hero__ctas .btn { opacity: 0; animation: heroFadeUp .8s var(--ease) both; }
.hero__ctas .btn:nth-child(1) { animation-delay: 1.15s; }
.hero__ctas .btn:nth-child(2) { animation-delay: 1.30s; }
.hero__trust     { animation-delay: 1.30s; }
.hero__trustcell { opacity: 0; animation: heroFadeUp .8s var(--ease) both; }
.hero__trustcell:nth-child(1) { animation-delay: 1.45s; }
.hero__trustcell:nth-child(2) { animation-delay: 1.60s; }
.hero__trustcell:nth-child(3) { animation-delay: 1.75s; }
.hero__card      { animation: heroSlideIn 1.1s var(--ease) .8s both; }
.hero__scroll    { animation: heroFadeUp .9s var(--ease) 1.9s both; }

.hero__title .accent-word {
  display: inline-block;
  padding-right: 0.18em;
  margin-right: -0.1em;
  background: linear-gradient(90deg, var(--c-coral) 55%, rgba(216,144,119,0) 55%) right / 220% 100% no-repeat;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: heroAccentWipe 1.2s var(--ease) 1.0s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translate3d(28px, 12px, 0) scale(.97); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes heroAccentWipe {
  to { background-position: left; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg img,
  .hero__grid,
  .hero .eyebrow,
  .hero__title,
  .hero__title .accent-word,
  .hero__lead,
  .hero__ctas,
  .hero__ctas .btn,
  .hero__trust,
  .hero__trustcell,
  .hero__card,
  .hero__scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    background: initial;
    -webkit-background-clip: initial; background-clip: initial;
    color: var(--c-coral);
  }
}

/* Trust strip --------------------------------------------- */
.strip {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.strip__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 32px;
  padding-top: 28px; padding-bottom: 28px;
}
.strip__item { display: flex; flex-direction: column; gap: 4px; }
.strip__num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--c-coral-dark);
}
.strip__label {
  font-size: 13px;
  color: var(--c-muted);
}

/* Sections ------------------------------------------------ */
.section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}
.section--dark {
  background: var(--c-navy);
  color: var(--c-cream);
}
.section--soft { background: var(--c-cream); }

.sechead { max-width: 720px; margin-bottom: 56px; }
.sechead--center { margin-left: auto; margin-right: auto; text-align: center; }
.sechead--center .eyebrow { justify-content: center; display: flex; }
.sechead--center .lead { margin-left: auto; margin-right: auto; }

/* Métier -------------------------------------------------- */
.metier__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.metier__list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 12px;
}
.metier__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px;
  color: var(--c-text);
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  transition: transform .3s var(--ease), border-color .3s;
}
.metier__list li:hover {
  transform: translateX(4px);
  border-color: var(--c-coral);
}
.metier__list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--c-coral-dark);
}

.metier__figure {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  isolation: isolate;
}
.metier__figure::before {
  content: none;
}
.metier__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.metier__figure:hover img { transform: scale(1.04); }
.metier__figure figcaption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  padding: 14px 18px;
  background: rgba(15, 23, 41, 0.86);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  color: var(--c-cream);
  text-align: center;
}
.metier__figure figcaption span {
  display: block;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.metier__figure figcaption em {
  display: block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-top: 4px;
}
.metier__figure--logo {
  background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
}
.metier__figure--logo > img {
  width: 58% !important;
  height: auto !important;
  object-fit: contain !important;
  position: absolute;
  top: calc(42% - 27px);
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.95;
}
.metier__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--c-coral);
  color: var(--c-navy);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}

/* Services ----------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  background: rgba(247, 242, 234, 0.16);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 234, 0.16);
}
.srv {
  background: var(--c-navy);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: background .4s;
}
.srv:hover { background: var(--c-navy-soft); }
.srv__num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--c-coral);
  display: block;
  margin-bottom: 18px;
}
.srv__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 1.7vw, 26px);
  letter-spacing: -0.02em;
  color: var(--c-cream);
  margin: 0 0 12px;
}
.srv__txt {
  color: rgba(247,242,234,.74);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 22px;
}
.srv__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  padding-top: 18px;
}
.srv__list li {
  font-size: 13.5px;
  color: rgba(247,242,234,.85);
  padding-left: 20px;
  position: relative;
}
.srv__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: var(--c-coral);
}

/* Méthode ------------------------------------------------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 24px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  transition: all .4s var(--ease);
}
.step:hover {
  background: var(--c-cream);
  border-color: var(--c-coral);
  transform: translateY(-4px);
}
.step__n {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--c-coral);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.step__t {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--c-navy);
  margin: 0 0 8px;
  min-height: 2.4em;
}
.step p {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}

/* Gallery / Réalisations --------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 20px;
  margin-bottom: 48px;
}
.gcard {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  display: block;
  background: var(--c-navy);
  transition: transform .5s var(--ease);
}
.gcard--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.gcard img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gcard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,41,.85) 0%, rgba(15,23,41,.1) 50%, transparent 80%);
  z-index: 1;
  transition: opacity .4s;
}
.gcard:hover img { transform: scale(1.05); }
.gcard:hover .gcard__arrow { transform: translate(4px, -4px); background: var(--c-coral); color: var(--c-navy); }

.gcard__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  z-index: 2;
  display: flex; flex-direction: column;
  color: var(--c-cream);
}
.gcard__tag {
  font-family: var(--f-display);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: 8px;
}
.gcard__meta h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.015em;
  margin: 0;
}
.gcard__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(247,242,234,.16);
  color: var(--c-cream);
  display: grid; place-items: center;
  font-size: 18px;
  backdrop-filter: blur(6px);
  transition: all .35s var(--ease);
}

.cta-row { text-align: center; }

/* Why ----------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.whycard {
  padding: 32px 26px;
  border-radius: 18px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  transition: all .4s var(--ease);
}
.whycard:hover {
  background: var(--c-cream);
  transform: translateY(-4px);
  border-color: var(--c-coral);
  box-shadow: 0 24px 40px -28px rgba(27,37,65,.15);
}
.whycard__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-coral);
  color: var(--c-navy);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.whycard h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--c-navy);
}
.whycard p {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}

/* Quotes -------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.quote {
  margin: 0;
  padding: 32px;
  background: var(--c-paper);
  border-radius: 18px;
  border: 1px solid var(--c-line);
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: 14px; left: 26px;
  font-family: 'Times New Roman', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--c-coral);
  opacity: .3;
}
.quote blockquote {
  margin: 24px 0 18px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-text);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.quote figcaption {
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
}
.quote figcaption strong {
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--c-navy);
  display: block;
}
.quote figcaption span {
  font-size: 12.5px;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}

/* Zone ---------------------------------------------------- */
.zone__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.zone__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 32px;
}
.zone__cols h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-coral-dark);
  margin: 0 0 12px;
}
.zone__cols ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
  font-size: 14.5px;
  color: var(--c-text);
}
.zone__map {
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.zone__map svg { width: 100%; height: auto; display: block; }

/* Contact ------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
}
.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}
.contact__card {
  display: flex; flex-direction: column;
  padding: 18px 22px;
  border: 1px solid rgba(247,242,234,.16);
  border-radius: 14px;
  background: rgba(247, 242, 234, 0.04);
  transition: all .35s var(--ease);
}
.contact__card:hover {
  background: rgba(216, 144, 119, 0.1);
  border-color: var(--c-coral);
}
.contact__card--full { grid-column: span 2; }
.contact__lab {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,242,234,.55);
  margin-bottom: 4px;
}
.contact__val {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--c-cream);
}

.contact__form {
  background: rgba(247, 242, 234, 0.04);
  border: 1px solid rgba(247, 242, 234, 0.14);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px);
  display: grid; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-display);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,234,.7);
}
.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-cream);
  background: rgba(15, 23, 41, 0.55);
  border: 1px solid rgba(247, 242, 234, 0.16);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .25s, background .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-coral);
  background: rgba(15, 23, 41, 0.85);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field--check {
  flex-direction: row; align-items: flex-start; gap: 12px;
  font-size: 13px;
}
.field--check input { width: 18px; height: 18px; margin-top: 3px; }
.field--check label {
  font-family: var(--f-body);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(247,242,234,.7);
  line-height: 1.5;
}
.form__note {
  font-size: 12px;
  color: rgba(247,242,234,.55);
  text-align: center;
  margin: 4px 0 0;
}
.form__success {
  background: rgba(107, 209, 139, 0.16);
  color: #B7EDC8;
  border: 1px solid rgba(107, 209, 139, 0.3);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
}

/* Footer -------------------------------------------------- */
.foot {
  background: var(--c-navy-deep);
  color: rgba(247,242,234,.75);
  padding: 56px 0 36px;
  border-top: 1px solid rgba(247,242,234,.08);
}
.foot__row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.foot__brand {
  display: flex; align-items: center; gap: 16px;
  grid-column: 1;
}
.foot__brand img { width: 48px; height: 48px; }
.foot__brand strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--c-cream);
}
.foot__brand span {
  display: block;
  font-size: 13px;
  margin-top: 2px;
}
.foot__nav {
  display: flex; flex-wrap: wrap;
  gap: 18px 28px;
  justify-self: end;
  align-items: center;
  font-family: var(--f-display);
  font-size: 14.5px;
}
.foot__nav a { transition: color .25s; }
.foot__nav a:hover { color: var(--c-coral); }
.foot__legal {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: rgba(247,242,234,.45);
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(247,242,234,.08);
  display: flex; flex-wrap: wrap; gap: 6px;
}

/* Preloader ----------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  opacity: 1;
  transition: opacity .9s var(--ease), visibility .9s;
  padding: clamp(16px, 4vw, 40px);
}
.preloader.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__video {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: min(82vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: preFadeIn 1s .15s var(--ease) both;
}
.preloader__vignette {
  display: none;
}
@keyframes preFadeIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

.preloader__brand {
  position: absolute;
  top: clamp(20px, 4vw, 36px);
  left: clamp(20px, 4vw, 36px);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: preSlideIn .8s .3s var(--ease) both;
}
.preloader__brand img {
  width: 44px; height: 44px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.preloader__brand strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--c-cream);
}
.preloader__brand span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-coral);
  margin-top: 2px;
}
@keyframes preSlideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.preloader__skip {
  position: absolute;
  bottom: clamp(20px, 4vw, 36px);
  right: clamp(20px, 4vw, 36px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(247, 242, 234, 0.08);
  border: 1px solid rgba(247, 242, 234, 0.22);
  border-radius: 999px;
  color: var(--c-cream);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .25s var(--ease);
  animation: preSlideIn .8s .6s var(--ease) both;
}
.preloader__skip:hover {
  background: var(--c-coral);
  color: var(--c-navy);
  border-color: var(--c-coral);
  transform: translateY(-1px);
}

/* Progress bars at the bottom */
.preloader__bars {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  display: flex;
  z-index: 3;
}
.preloader__bars span {
  flex: 1;
  height: 100%;
  background: var(--c-coral);
  transform: scaleX(0);
  transform-origin: left;
}
.preloader__bars span:nth-child(1) { animation: barFill 4s 0.0s linear forwards; }
.preloader__bars span:nth-child(2) { animation: barFill 4s 0.1s linear forwards; opacity: .8; }
.preloader__bars span:nth-child(3) { animation: barFill 4s 0.2s linear forwards; opacity: .6; }
.preloader__bars span:nth-child(4) { animation: barFill 4s 0.3s linear forwards; opacity: .4; }
@keyframes barFill {
  to { transform: scaleX(1); }
}

@media (max-width: 560px) {
  .preloader { padding: 12px; }
  .preloader__video {
    max-width: 94vw;
    max-height: 64vh;
  }
  .preloader__brand strong { font-size: 14px; }
  .preloader__brand span { font-size: 10px; }
  .preloader__brand img { width: 38px; height: 38px; }
  .preloader__skip { font-size: 12px; padding: 8px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none !important; }
}

/* WhatsApp floating ------------------------------------- */
.wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 13px 20px 13px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,.18);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s;
  animation: waPop .4s var(--ease) both;
  animation-delay: 1s;
}
@keyframes waPop {
  from { transform: translateY(20px) scale(.85); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.wa:hover {
  transform: translateY(-2px);
  background: #20BC5C;
  box-shadow: 0 18px 32px -10px rgba(37, 211, 102, 0.65);
}
.wa::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid #25D366;
  opacity: .35;
  animation: waRing 2.4s ease-out infinite;
}
@keyframes waRing {
  0% { transform: scale(.95); opacity: .6; }
  80%, 100% { transform: scale(1.25); opacity: 0; }
}

/* Back to top -------------------------------------------- */
.totop {
  position: fixed;
  right: 22px; bottom: 90px;
  width: 44px; height: 44px;
  background: var(--c-navy);
  color: var(--c-cream);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -8px rgba(27, 37, 65, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .35s, transform .35s;
  z-index: 59;
}
.totop.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.totop:hover { background: var(--c-coral-dark); }

/* Legal pages --------------------------------------------- */
.legal {
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
  background: var(--c-paper);
}
.legal__head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.legal__head .h2 { margin-bottom: 12px; }
.legal__head .lead { margin: 0 auto; }

.legal__body {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 20px 50px -30px rgba(27, 37, 65, 0.18);
}
.legal__body h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.015em;
  color: var(--c-navy);
  margin: 40px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.legal__body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--c-navy);
  margin: 24px 0 8px;
}
.legal__body p,
.legal__body li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--c-text);
}
.legal__body p { margin: 0 0 14px; }
.legal__body strong { color: var(--c-navy); font-weight: 600; }
.legal__body a {
  color: var(--c-coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal__body a:hover { color: var(--c-navy); }
.legal__body ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal__body li { margin-bottom: 6px; }
.legal__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 22px;
  font-size: 14.5px;
}
.legal__body th,
.legal__body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
.legal__body thead th {
  background: var(--c-sand);
  color: var(--c-navy);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal__body .legal__meta {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--c-coral-dark);
}
.legal__back:hover { color: var(--c-navy); }

/* Cookie banner ------------------------------------------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  background: var(--c-navy);
  color: rgba(247,242,234,.92);
  border: 1px solid rgba(247,242,234,.10);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  display: none;
  max-width: 920px;
  margin: 0 auto;
}
.cookie.is-open { display: block; }
.cookie__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-cream);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cookie__txt {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: rgba(247,242,234,.78);
}
.cookie__txt a { color: var(--c-coral); text-decoration: underline; }
.cookie__row {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.cookie__btn {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(247,242,234,.20);
  background: transparent;
  color: var(--c-cream);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.cookie__btn:hover { background: rgba(247,242,234,.08); }
.cookie__btn--primary {
  background: var(--c-coral);
  color: var(--c-navy);
  border-color: var(--c-coral);
}
.cookie__btn--primary:hover { background: var(--c-coral-dark); border-color: var(--c-coral-dark); color: var(--c-cream); }

.cookie__panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(247,242,234,.10);
}
.cookie.is-detail .cookie__panel { display: block; }
.cookie__cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(247,242,234,.10);
}
.cookie__cat:last-child { border-bottom: none; }
.cookie__cat h4 {
  margin: 0 0 4px;
  font-family: var(--f-display);
  font-size: 14.5px;
  color: var(--c-cream);
  font-weight: 500;
}
.cookie__cat p {
  margin: 0;
  font-size: 13px;
  color: rgba(247,242,234,.65);
  line-height: 1.55;
}
.cookie__switch {
  position: relative;
  flex-shrink: 0;
  width: 42px; height: 24px;
  border-radius: 999px;
  background: rgba(247,242,234,.18);
  cursor: pointer;
  transition: background .25s;
}
.cookie__switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-cream);
  transition: transform .25s;
}
.cookie__switch.is-on { background: var(--c-coral); }
.cookie__switch.is-on::after { transform: translateX(18px); }
.cookie__switch.is-locked { opacity: .55; cursor: not-allowed; }

@media (max-width: 560px) {
  .cookie { padding: 18px; }
  .cookie__row { flex-direction: column; align-items: stretch; }
  .cookie__btn { width: 100%; text-align: center; }
}

/* Reveal animation --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Responsive --------------------------------------------- */
@media (max-width: 1100px) {
  .nav__menu { gap: 22px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { justify-self: start; max-width: 460px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .annonce__row { font-size: 12px; padding: 8px var(--pad); }
  .annonce__pill { display: none; }

  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; align-items: center; }
  .nav__brandsub { display: none; }

  .strip__row { grid-template-columns: 1fr 1fr; gap: 20px; }

  .metier__grid { grid-template-columns: 1fr; gap: 40px; }
  .metier__figure { aspect-ratio: 4/3; max-height: 460px; }
  .metier__figure::before { display: none; }

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

  .steps { grid-template-columns: 1fr; }
  .step__t { min-height: 0; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .gcard--lg { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }

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

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

  .zone__grid { grid-template-columns: 1fr; }
  .zone__cols { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .contact__card--full { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }

  .foot__row { grid-template-columns: 1fr; }
  .foot__nav { justify-self: start; }

  .wa__txt { display: none; }
  .wa { padding: 14px; }
}

@media (max-width: 560px) {
  .strip__row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gcard--lg { grid-column: span 1; }
  .hero { padding-top: 60px; padding-bottom: 80px; min-height: auto; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .hero__trust { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* Reduced motion ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Realisations - Avant / Apres ---------------------------- */
.avapres {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
  max-width: 960px;
  margin: 0 auto;
}
.ba { margin: 0; }
.ba__img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-stone);
  box-shadow: 0 30px 60px -30px rgba(27, 37, 65, 0.45);
}
.ba__img img { width: 100%; height: auto; display: block; }
.ba__divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(247, 242, 234, 0.85);
  box-shadow: 0 0 0 1px rgba(27, 37, 65, 0.15);
  pointer-events: none;
}
.ba__tag {
  position: absolute;
  bottom: 14px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.ba__tag--before { left: 14px; background: rgba(27, 37, 65, 0.78); color: var(--c-cream); }
.ba__tag--after  { right: 14px; background: var(--c-coral); color: var(--c-navy); }
.ba figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--c-navy);
}
@media (max-width: 600px) {
  .ba__tag { font-size: 11px; padding: 5px 11px; bottom: 10px; }
  .ba__tag--before { left: 10px; }
  .ba__tag--after  { right: 10px; }
}
