/* ═══════════════════════════════════════════════════════════════════════════
   CGR EXPERTISE — main.css
   Variables → Reset → Base → Nav → Hero → Sections → Footer → Responsive
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
   VARIABLES
   ───────────────────────────────────────────────────────────────────────── */
:root {
  /* Couleurs */
  --red:         #C0272D;
  --red-hover:   #A8202A;
  --red-pale:    #FDF0F0;
  --red-border:  rgba(192, 39, 45, .18);

  --charcoal:    #1A1D23;
  --dark:        #2C3039;
  --mid:         #5C6270;
  --muted:       #949BAA;
  --light:       #BEC4CE;

  --white:       #FFFFFF;
  --bg:          #F8F9FB;
  --bg-mid:      #F0F2F5;
  --border:      #E2E5EA;
  --border-mid:  #D0D4DC;

  /* Espacements */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
  --sp-3xl: 128px;

  /* Conteneurs */
  --wrap:    1240px;
  --wrap-sm: 820px;

  /* Nav */
  --nav-h: 70px;

  /* Rayons */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t1:   .18s;
  --t2:   .3s;
}


/* ─────────────────────────────────────────────────────────────────────────
   RESET
   ───────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a       { color: inherit; text-decoration: none; }
ul      { list-style: none; }
address { font-style: normal; }
button  { cursor: pointer; background: none; border: none; }


/* ─────────────────────────────────────────────────────────────────────────
   UTILITAIRES
   ───────────────────────────────────────────────────────────────────────── */

/* Conteneur centré */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}
.wrap--sm { max-width: var(--wrap-sm); }

/* Étiquette rouge */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-sm);
}
.tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Titres de section */
.h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}
.h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: var(--sp-sm);
}
.h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
}
.h1 em, .h2 em, .h3 em { font-style: italic; color: var(--red); }

/* Texte de lead */
.lead {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
}


/* ─────────────────────────────────────────────────────────────────────────
   BOUTONS
   ───────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: 12px 26px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: var(--r-md);
  line-height: 1;
  white-space: nowrap;
  transition:
    background   var(--t1) var(--ease),
    color        var(--t1) var(--ease),
    border-color var(--t1) var(--ease),
    transform    var(--t1) var(--ease),
    box-shadow   var(--t1) var(--ease);
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(192,39,45,.28);
}
.btn--outline {
  color: var(--mid);
  border: 1.5px solid var(--border-mid);
}
.btn--outline:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline svg { transition: transform var(--t1) var(--ease); }
.btn--outline:hover svg { transform: translateX(4px); }

.btn--lg { padding: 14px 32px; font-size: 14.5px; }
.btn--sm { padding: 9px 18px;  font-size: 12px; }


/* ─────────────────────────────────────────────────────────────────────────
   LISTE AVEC COCHES
   ───────────────────────────────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block: var(--sp-md) var(--sp-lg);
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C0272D' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat, var(--red-pale);
}


/* ─────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--t2) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

/* ── Wrapper ── */
.nav {
  max-width: var(--wrap);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

/* ── Logo ── */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  margin-inline-end: var(--sp-md);
}
.nav__logo-mark {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__logo-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .5px;
  line-height: 1;
}
.nav__logo-sub {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
}

/* ── Liens desktop ── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline-start: auto;
  margin-inline-end: var(--sp-sm);
}
.nav__link {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--mid);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition:
    background var(--t1) var(--ease),
    color      var(--t1) var(--ease);
}
.nav__link:hover  { background: var(--bg); color: var(--charcoal); }
.nav__link.is-active {
  background: var(--bg);
  color: var(--charcoal);
  font-weight: 500;
}

/* ── Bouton CTA ── */
.nav__cta {
  flex-shrink: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
  padding: 10px 22px;
  border-radius: var(--r-md);
  transition:
    background var(--t1) var(--ease),
    transform  var(--t1) var(--ease),
    box-shadow var(--t1) var(--ease);
}
.nav__cta:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192,39,45,.28);
}

/* ── Burger ── */
.nav__burger {
  display: none;            /* caché desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background var(--t1) var(--ease);
}
.nav__burger:hover { background: var(--bg); }
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform var(--t2) var(--ease),
    opacity   var(--t2) var(--ease),
    width     var(--t2) var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer mobile ── */
.nav__drawer {
  display: none;            /* activé en media query */
  flex-direction: column;
  position: fixed;
  inset-block-start: var(--nav-h);
  inset-inline: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-xs) var(--sp-sm) var(--sp-md);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  gap: 3px;
  /* Animation */
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    transform   var(--t2) var(--ease),
    opacity     var(--t2) var(--ease),
    visibility  0s linear var(--t2);
}
.nav__drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition:
    transform var(--t2) var(--ease),
    opacity   var(--t2) var(--ease);
}
.nav__drawer-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  transition:
    background var(--t1) var(--ease),
    color      var(--t1) var(--ease);
}
.nav__drawer-link:hover    { background: var(--bg); }
.nav__drawer-link.is-active {
  background: var(--red-pale);
  color: var(--red);
  font-weight: 500;
}
.nav__drawer-cta {
  margin-top: var(--sp-xs);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
  padding: 13px;
  border-radius: var(--r-md);
  transition: background var(--t1) var(--ease);
}
.nav__drawer-cta:hover { background: var(--red-hover); }


/* ─────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────── */
main { padding-block-start: var(--nav-h); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

/* Côté gauche */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-2xl) var(--sp-lg);
  max-width: 660px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-pale);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--sp-md);
  width: fit-content;
}
.hero__pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.hero__title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: var(--sp-md);
}
.hero__title em { font-style: italic; color: var(--red); }
.hero__sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: var(--sp-lg);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}
.hero__stats {
  display: flex;
  gap: var(--sp-xl);
  padding-block-start: var(--sp-lg);
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  display: block;
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.hero__stat-num sup { font-size: 18px; color: var(--red); vertical-align: super; }
.hero__stat-label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 5px;
}

/* Côté droit */
.hero__visual {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
.hero__visual-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-lg);
  gap: var(--sp-sm);
  position: relative;
  z-index: 1;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__shape--1 { width:360px;height:360px;background:rgba(192,39,45,.05);top:-90px;right:-90px; }
.hero__shape--2 { width:220px;height:220px;background:rgba(192,39,45,.04);top:38%;left:-70px; }
.hero__shape--3 { width:130px;height:130px;background:rgba(192,39,45,.06);bottom:160px;right:48px; }

.hero__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  position: relative; z-index: 1;
}
.hero__mini-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.hero__mini-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 10px;
}
.hero__mini-card h3 { font-size: 12.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.hero__mini-card p  { font-size: 11px; color: var(--muted); font-weight: 300; }

.hero__quote {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 26px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  position: relative; z-index: 1;
}
.hero__quote::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 10px;
}
.hero__quote p    { font-family:'Lora',serif; font-style:italic; font-size:14.5px; line-height:1.65; color:var(--dark); }
.hero__quote cite { display:block; font-size:11.5px; color:var(--muted); font-style:normal; margin-top:9px; }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION ABOUT
   ───────────────────────────────────────────────────────────────────────── */
.section-about { padding-block: var(--sp-2xl); }
.section-about .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-mid);
}
.about__img img { width:100%; height:100%; object-fit:cover; }
.about__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: 0 8px 28px rgba(192,39,45,.3);
}
.about__badge-num { display:block; font-family:'Lora',serif; font-size:40px; font-weight:500; line-height:1; }
.about__badge-num sup { font-size:18px; }
.about__badge-label { display:block; font-size:11px; opacity:.9; margin-top:3px; }
.about__content { padding-block-start: var(--sp-xs); }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION SERVICES
   ───────────────────────────────────────────────────────────────────────── */
.section-services {
  padding-block: var(--sp-2xl);
  background: var(--bg);
}
.section-services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--t2) var(--ease),
    box-shadow   var(--t2) var(--ease),
    transform    var(--t2) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset-block: 0; inset-inline-start: 0;
  width: 3px;
  background: var(--red);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t2) var(--ease);
}
.service-card:hover { border-color: var(--red-border); box-shadow: 0 10px 36px rgba(0,0,0,.08); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleY(1); }

.service-card__icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: var(--sp-md);
  transition: background var(--t1) var(--ease);
}
.service-card:hover .service-card__icon { background: var(--red); }
.service-card:hover .service-card__icon svg { stroke: var(--white); }

.service-card__title { font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.service-card__desc  { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; margin-bottom: var(--sp-md); }
.service-card__link  {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 500; color: var(--red);
  transition: gap var(--t1) var(--ease);
}
.service-card__link:hover { gap: 12px; }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION CHIFFRES
   ───────────────────────────────────────────────────────────────────────── */
.section-numbers {
  padding-block: var(--sp-xl);
  background: var(--charcoal);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.number-block {
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.number-block:last-child { border-right: none; }
.number-block__num   { display:block; font-family:'Lora',serif; font-size:54px; font-weight:500; color:var(--white); line-height:1; margin-bottom:10px; }
.number-block__num span { color:var(--red); font-size:32px; }
.number-block__label { display:block; font-size:12px; font-weight:300; color:rgba(255,255,255,.4); letter-spacing:.5px; }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION ÉQUIPE
   ───────────────────────────────────────────────────────────────────────── */
.section-team { padding-block: var(--sp-2xl); }
.section-team__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.team-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.team-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.09); transform: translateY(-2px); }

.team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-mid);
  position: relative;
}
.team-card__photo img { width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,29,35,.35) 0%, transparent 55%);
}
.team-card__body  { padding: 18px 20px 22px; }
.team-card__name  { font-size: 15.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; }
.team-card__role  { font-size: 11.5px; font-weight: 500; color: var(--red); letter-spacing: .3px; margin-bottom: 13px; }
.team-card__sep   { width: 26px; height: 1.5px; background: var(--border); margin-bottom: 13px; }
.team-card__bio   { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.65; }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION VALEURS (page équipe)
   ───────────────────────────────────────────────────────────────────────── */
.section-values { padding-block: var(--sp-2xl); background: var(--bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: var(--sp-xl);
}
.value-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-lg) var(--sp-md); }
.value-item__icon { width:44px;height:44px;background:var(--red-pale);border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;color:var(--red);margin-bottom:var(--sp-sm); }
.value-item h3 { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.value-item p  { font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.65; }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION APPROCHE
   ───────────────────────────────────────────────────────────────────────── */
.section-approach { padding-block: var(--sp-2xl); }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  position: relative;
}
.approach-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(10% + 16px); right: calc(10% + 16px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.approach-step { text-align: center; }
.approach-step__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  margin: 0 auto var(--sp-md);
  position: relative; z-index: 1;
  transition: background var(--t1) var(--ease), border-color var(--t1) var(--ease), color var(--t1) var(--ease);
}
.approach-step:hover .approach-step__dot { background:var(--red); border-color:var(--red); color:var(--white); }
.approach-step__title { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.approach-step__desc  { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.65; }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION CTA
   ───────────────────────────────────────────────────────────────────────── */
.section-cta {
  padding-block: var(--sp-2xl);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.section-cta .wrap { text-align: center; max-width: 680px; }
.section-cta .h2   { margin-bottom: var(--sp-sm); }
.section-cta .lead { max-width: 520px; margin-inline: auto; margin-bottom: var(--sp-lg); }
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-sm); flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────────────────────────
   PAGE HERO (pages internes)
   ───────────────────────────────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--sp-2xl) + 8px) 0 var(--sp-xl);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero .tag  { margin-bottom: var(--sp-sm); }
.page-hero .h1   { margin-bottom: var(--sp-sm); }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION CONTACT
   ───────────────────────────────────────────────────────────────────────── */
.section-contact { padding-block: var(--sp-2xl); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}
.contact-intro .h2   { margin-block: var(--sp-xs) var(--sp-sm); }
.contact-intro .lead { margin-bottom: var(--sp-xl); }

.contact-items { display:flex; flex-direction:column; gap:var(--sp-md); }
.contact-item  { display:flex; align-items:flex-start; gap:var(--sp-sm); }
.contact-item__icon {
  width:42px; height:42px;
  border-radius:var(--r-md);
  background:var(--red-pale);
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-item__label {
  display:block;
  font-size:10px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  color:var(--muted); margin-bottom:4px;
}
.contact-item__value { font-size:14.5px; font-weight:300; color:var(--dark); line-height:1.55; }
.contact-item__value a { transition: color var(--t1); }
.contact-item__value a:hover { color: var(--red); }

/* Formulaire */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  box-shadow: 0 4px 28px rgba(0,0,0,.06);
}
.contact-form-card__title { font-size:20px; font-weight:600; color:var(--charcoal); margin-bottom:4px; }
.contact-form-card__sub   { font-size:13.5px; font-weight:300; color:var(--muted); margin-bottom:var(--sp-lg); }

.field { display:flex; flex-direction:column; gap:5px; margin-bottom:var(--sp-sm); }
.field label { font-size:12px; font-weight:500; color:var(--dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  appearance: none;
  transition: border-color var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,39,45,.08);
}
.field input::placeholder, .field textarea::placeholder { color: var(--light); }
.field textarea { height: 110px; resize: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }

.form-submit {
  width: 100%;
  margin-top: var(--sp-xs);
  padding: 14px;
  font-size: 14.5px; font-weight: 500;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: var(--r-md);
  transition: background var(--t1) var(--ease), transform var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
}
.form-submit:hover { background:var(--red-hover); transform:translateY(-1px); box-shadow:0 6px 22px rgba(192,39,45,.28); }
.form-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; }

.form-feedback { padding:13px 16px; border-radius:var(--r-md); font-size:13.5px; margin-bottom:var(--sp-sm); }
.form-feedback--ok  { background:#F0FDF4; color:#166534; border:1px solid #BBF7D0; }
.form-feedback--err { background:var(--red-pale); color:var(--red); border:1px solid var(--red-border); }


/* ─────────────────────────────────────────────────────────────────────────
   SECTION DÉTAIL SERVICE
   ───────────────────────────────────────────────────────────────────────── */
.section-service-detail { padding-block: var(--sp-2xl); }
.service-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-img { border-radius:var(--r-lg); overflow:hidden; aspect-ratio:5/6; }
.service-detail-img img { width:100%; height:100%; object-fit:cover; }
.service-detail-cta { display:flex; gap:var(--sp-sm); flex-wrap:wrap; margin-top:var(--sp-lg); }

.section-other-services { padding-block: var(--sp-2xl); background: var(--bg); }
.section-other-services .h2 { margin-block: var(--sp-xs) var(--sp-lg); }


/* ─────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.5); }
.footer-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: var(--sp-xl) var(--sp-lg) 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-block-end: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display:flex; flex-direction:column; gap:10px; }
.footer-brand .nav__logo-mark { border-radius:var(--r-sm); }
.footer-brand__name { font-size:14px; font-weight:600; color:rgba(255,255,255,.9); letter-spacing:.6px; }
.footer-brand p     { font-size:13px; font-weight:300; line-height:1.8; color:rgba(255,255,255,.38); max-width:280px; }
.footer-brand address { font-size:12.5px; line-height:1.75; color:rgba(255,255,255,.35); }
.footer-brand address a { color:inherit; transition:color var(--t1); }
.footer-brand address a:hover { color:rgba(255,255,255,.8); }

.footer-col__heading {
  font-size:10.5px; font-weight:700;
  letter-spacing:1.8px; text-transform:uppercase;
  color:rgba(255,255,255,.28); margin-bottom:var(--sp-sm);
}
.footer-col ul  { display:flex; flex-direction:column; gap:10px; }
.footer-col a   { font-size:13.5px; font-weight:300; color:rgba(255,255,255,.5); transition:color var(--t1); }
.footer-col a:hover { color:rgba(255,255,255,.92); }
.footer-col__hours { font-size:12px; color:rgba(255,255,255,.28); margin-top:var(--sp-sm); line-height:1.7; }

.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  gap:var(--sp-sm); flex-wrap:wrap;
  padding-block: var(--sp-md);
  font-size:12px; color:rgba(255,255,255,.25);
}
.footer-bottom nav { display:flex; align-items:center; gap:var(--sp-sm); }
.footer-bottom a   { color:rgba(255,255,255,.25); transition:color var(--t1); }
.footer-bottom a:hover { color:rgba(255,255,255,.65); }
.footer-bottom span { opacity:.4; }


/* ─────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero__content > * { opacity:0; animation: fadeUp .65s var(--ease) forwards; }
.hero__content > *:nth-child(1) { animation-delay:.05s; }
.hero__content > *:nth-child(2) { animation-delay:.15s; }
.hero__content > *:nth-child(3) { animation-delay:.25s; }
.hero__content > *:nth-child(4) { animation-delay:.35s; }
.hero__content > *:nth-child(5) { animation-delay:.46s; }

.reveal { opacity:0; transform:translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — 4 breakpoints
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── ≤ 1200px : Large ─────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --sp-2xl: 80px; --sp-3xl: 100px; }

  .wrap, .nav, .footer-inner { padding-inline: var(--sp-md); }
  .hero__content { padding-inline-end: var(--sp-md); }

  /* Approche 5 → 3 colonnes */
  .approach-steps { grid-template-columns: repeat(3, 1fr); }
  .approach-steps::before { display: none; }
}

/* ── ≤ 1024px : Tablette ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sp-2xl: 72px; --sp-xl: 48px; }

  /* Hero : 1 colonne */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual  { display: none; }
  .hero__content { padding: var(--sp-xl) var(--sp-md); max-width: 100%; }
  .hero__sub     { max-width: 100%; }

  /* About */
  .section-about .wrap { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .about__img-wrap { max-width: 460px; }
  .about__badge    { bottom: -14px; right: -12px; }

  /* Équipe : 4 → 2 */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Valeurs : 4 → 2 */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* Chiffres : 4 → 2 */
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-block:nth-child(2) { border-right: none; }
  .number-block:nth-child(1),
  .number-block:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }

  /* Footer : 4 → 2 */
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }

  /* Contact : 2 → 1 */
  .contact-wrap { grid-template-columns: 1fr; gap: var(--sp-xl); }

  /* Service détail */
  .service-detail-wrap { grid-template-columns: 1fr; }
  .service-detail-img  { max-width: 480px; }

  /* Services autres : 3 → 2 */
  .services-grid--3 { grid-template-columns: repeat(2, 1fr); }

  /* Headers sections */
  .section-services__header,
  .section-team__header { flex-direction: column; align-items: flex-start; }
}

/* ── ≤ 768px : Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --sp-xl: 40px; --sp-2xl: 60px; --nav-h: 64px; }

  /* Nav : burger visible, liens masqués */
  .nav__links   { display: none; }
  .nav__cta     { display: none; }
  .nav__burger  { display: flex; }
  .nav__drawer  { display: flex; }
  .nav          { padding-inline: var(--sp-sm); }

  /* Forcer le logo-sub visible ici */
  .nav__logo-sub { display: block; }

  /* Hero */
  .hero__content { padding: var(--sp-xl) var(--sp-sm); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; width: 100%; }
  .hero__stats  { gap: var(--sp-lg); }
  .hero__stat-num { font-size: 28px; }

  /* About */
  .section-about .wrap { gap: var(--sp-lg); }
  .about__img-wrap { max-width: 100%; }
  .about__badge { padding: 16px 18px; }
  .about__badge-num { font-size: 30px; }

  /* Services : 2 → 1 */
  .services-grid,
  .services-grid--3 { grid-template-columns: 1fr; }

  /* Chiffres : 2 col ok */
  .numbers-grid { grid-template-columns: 1fr 1fr; }

  /* Équipe : garder 2 col */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-sm); }
  .section-team__header { flex-direction: column; align-items: flex-start; }

  /* Valeurs : 2 col */
  .values-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }

  /* Approche : 2 col */
  .approach-steps { grid-template-columns: repeat(2, 1fr); }

  /* Formulaire */
  .contact-form-card { padding: var(--sp-md); }
  .field-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom nav { justify-content: center; }

  /* Service détail */
  .service-detail-wrap { gap: var(--sp-lg); }
}

/* ── ≤ 480px : Petit mobile ───────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --sp-xl: 32px; --sp-2xl: 48px; }

  .wrap { padding-inline: var(--sp-sm); }

  /* Logo : masquer le sous-titre */
  .nav__logo-sub { display: none; }
  .nav { padding-inline: var(--sp-xs); }

  /* Hero */
  .hero__title  { font-size: 34px; }
  .hero__sub    { font-size: 14.5px; }
  .hero__stats  { flex-direction: column; gap: var(--sp-sm); }

  /* Équipe : 2 → 1 */
  .team-grid    { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

  /* Valeurs : 2 → 1 */
  .values-grid  { grid-template-columns: 1fr; }

  /* Chiffres : 2 → 1 */
  .numbers-grid { grid-template-columns: 1fr; }
  .number-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .number-block:last-child { border-bottom: none; }
  .number-block:nth-child(1),
  .number-block:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }

  /* Approche : 2 → 1 */
  .approach-steps { grid-template-columns: 1fr; }

  /* About badge */
  .about__badge { bottom: var(--sp-sm); right: var(--sp-sm); }
}
