/* ═══════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════ */
:root {
  --ink:      #080C18;
  --navy:     #0B1A35;
  --navy-mid: #112244;
  --gold:     #C49A38;
  --gold-lt:  #DDB85A;
  --gold-pale:#F4E3B0;
  --cream:    #F7F3EC;
  --stone:    #EAE3D4;
  --gray:     #6B7280;
  --text:     #1A1E2E;
  --white:    #FFFFFF;

  --ff-d: 'Playfair Display', Georgia, serif;
  --ff-b: 'Inter', system-ui, sans-serif;

  --r:    10px;
  --r-lg: 18px;
  --sh:   0 4px 28px rgba(8,12,24,.10);
  --sh-lg:0 16px 56px rgba(8,12,24,.18);
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .3s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--ff-b); color: var(--text); background: var(--white); line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-b); }

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal[data-d="1"] { transition-delay: .10s; }
.reveal[data-d="2"] { transition-delay: .20s; }
.reveal[data-d="3"] { transition-delay: .30s; }
.reveal[data-d="4"] { transition-delay: .40s; }
.reveal[data-d="5"] { transition-delay: .50s; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-cream { background: var(--cream); }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.sec-head { margin-bottom: 60px; }
.sec-head--light .sec-title { color: var(--white); }

.sec-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.sec-tag--gold { color: var(--gold-lt); }

.sec-title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: .75rem;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-title--white { color: var(--white); }

.sec-rule {
  width: 52px; height: 2px;
  background: var(--gold);
  margin-top: .25rem;
}

.sec-sub { font-size: 1rem; color: var(--gray); margin-top: 1rem; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-solid {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .88rem;
  padding: .9rem 2rem; border-radius: 100px;
  transition: background var(--t), transform var(--t);
}
.btn-solid:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-solid--sm { padding: .65rem 1.4rem; font-size: .83rem; }
.btn-solid--full { width: 100%; justify-content: center; border-radius: var(--r); font-size: 1rem; padding: 1rem 1.5rem; }

.btn-text {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 500;
  padding: .9rem 0; transition: color var(--t), gap var(--t);
}
.btn-text:hover { color: var(--white); gap: .8rem; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed; inset: 0 0 auto;
  z-index: 200; padding: 1.25rem 0;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t), padding var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), var(--sh);
  padding: .8rem 0;
}

.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: var(--ff-d); font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: -.01em; transition: color var(--t);
}
.logo em { font-style: normal; color: var(--gold); }
.navbar.scrolled .logo { color: var(--navy); }
.logo--light { color: var(--white) !important; }

.nav-menu { display: flex; align-items: center; gap: 2.5rem; }

.nav-link {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  position: relative; transition: color var(--t);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--t);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--navy); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: .55rem 1.4rem; border-radius: 100px;
  font-weight: 700; font-size: .875rem;
  transition: background var(--t) !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }
.nav-cta::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--t), opacity var(--t), background var(--t);
  transform-origin: center;
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-switch { display: flex; align-items: center; gap: .35rem; margin-right: .25rem; }
.lang-sep { color: rgba(255,255,255,.25); font-size: .75rem; line-height: 1; }
.navbar.scrolled .lang-sep { color: rgba(0,0,0,.2); }
.lang-btn {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); padding: .2rem .35rem; border-radius: 4px;
  transition: color var(--t);
}
.lang-btn:hover, .lang-btn.active { color: var(--gold); }
.navbar.scrolled .lang-btn { color: rgba(0,0,0,.35); }
.navbar.scrolled .lang-btn:hover, .navbar.scrolled .lang-btn.active { color: var(--gold); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; overflow: hidden;
}

.hero-backdrop { position: absolute; inset: 0; z-index: 0; }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,12,24,.95) 0%, rgba(8,12,24,.78) 45%, rgba(8,12,24,.45) 100%);
}

.hero-body {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 160px 2rem 80px; width: 100%;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.75rem;
}
.eyebrow-bar { display: block; width: 36px; height: 1.5px; background: var(--gold); flex-shrink: 0; }

.display-title {
  font-family: var(--ff-d);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.75rem;
}
.dt-line { display: block; }
.dt-italic { font-style: italic; color: var(--gold-lt); }

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  max-width: 500px; margin-bottom: 2.25rem; line-height: 1.8;
}

.hero-btns { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* Hero right: framed photo */
.hero-right { position: relative; }

.hero-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px solid rgba(196,154,56,.4);
  box-shadow: var(--sh-lg), 0 0 0 8px rgba(196,154,56,.07);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hero-frame:hover img { transform: scale(1.04); }
.hero-frame::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,12,24,.6) 0%, transparent 55%);
}

.hero-badge {
  position: absolute; bottom: 1.5rem; right: 1.25rem;
  background: rgba(11,26,53,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(196,154,56,.6);
  border-radius: var(--r); padding: 1rem 1.25rem;
  min-width: 138px; z-index: 3;
}
.badge-num {
  display: block; font-family: var(--ff-d); font-size: 2.6rem;
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: .2rem;
}
.badge-label { font-size: .75rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* Stats strip */
.stats-strip {
  position: relative; z-index: 2;
  background: rgba(8,12,24,.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(196,154,56,.18);
  display: flex; align-items: stretch;
}

.stat-item {
  flex: 1; display: flex; align-items: center; gap: .6rem;
  padding: 1.6rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right: none; }

.stat-val {
  font-family: var(--ff-d); font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-unit { font-size: 1rem; color: var(--gold-lt); font-weight: 600; align-self: flex-end; padding-bottom: .1rem; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.3; margin-left: auto; text-align: right; }
.stat-sep { display: none; }

/* ═══════════════════════════════════════
   À PROPOS CARDS
═══════════════════════════════════════ */
.trio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 2.5rem;
}

.trio-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--stone);
  border-top: 3px solid var(--stone);
  border-radius: var(--r-lg); padding: 2.5rem 2rem 2rem;
  transition: box-shadow var(--t), transform var(--t), border-top-color var(--t);
}
.trio-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); border-top-color: var(--gold); }

.trio-card--dark { background: var(--navy); border-color: var(--navy); border-top-color: var(--gold); }
.trio-card--dark:hover { border-top-color: var(--gold-lt); }

.trio-num {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--ff-d); font-size: 4.5rem; font-weight: 700;
  color: var(--stone); line-height: 1; user-select: none;
  transition: color var(--t);
}
.trio-card--dark .trio-num { color: rgba(255,255,255,.06); }
.trio-card:hover .trio-num { color: rgba(196,154,56,.1); }

.trio-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(196,154,56,.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background var(--t);
}
.trio-card:hover .trio-icon { background: rgba(196,154,56,.18); }
.trio-card--dark .trio-icon { background: rgba(196,154,56,.15); }

.trio-card h3 { font-family: var(--ff-d); font-size: 1.2rem; color: var(--navy); margin-bottom: .75rem; }
.trio-card--dark h3 { color: var(--white); }

.trio-card p { font-size: .92rem; color: var(--gray); margin-bottom: .45rem; }
.trio-card--dark p { color: rgba(255,255,255,.65); }
.trio-card p strong { color: var(--text); }
.trio-card--dark p strong { color: var(--white); }

.card-accent { color: var(--gold) !important; font-weight: 600; font-size: .85rem !important; margin-top: .5rem; }

.card-motto {
  font-weight: 700; font-size: .78rem !important; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-lt) !important; margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* Team banner */
.team-banner {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 300px; box-shadow: var(--sh-lg);
}
.team-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .8s var(--ease); }
.team-banner:hover img { transform: scale(1.03); }
.team-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,12,24,.75) 0%, transparent 55%);
}
.team-banner-caption {
  position: absolute; bottom: 1.75rem; left: 2rem; right: 2rem; z-index: 2;
  font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════ */
.manifesto {
  position: relative; padding: 96px 0; text-align: center;
  background: var(--navy); overflow: hidden;
}
.manifesto-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,154,56,.12) 0%, transparent 70%);
}
.manifesto-inner { position: relative; z-index: 1; }

.mq {
  font-family: var(--ff-d); font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--white); line-height: 1.45;
  max-width: 820px; margin: 0 auto 1.5rem;
}
.mq em { color: var(--gold-lt); }
.mq-mark { font-size: 1.3em; color: var(--gold); vertical-align: -.1em; }
.mq-source {
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════
   EMPLOI
═══════════════════════════════════════ */
.emploi-layout {
  display: grid; grid-template-columns: 360px 1fr; gap: 4rem; align-items: start;
}

.emploi-visual {
  position: sticky; top: 100px;
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--sh-lg);
}
.emploi-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.emploi-visual:hover img { transform: scale(1.04); }
.emploi-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,12,24,.78) 0%, transparent 50%);
}
.emploi-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 2rem 1.75rem;
}
.emploi-caption p { font-family: var(--ff-d); font-size: 1.2rem; font-style: italic; color: var(--white); line-height: 1.3; }

.svc-list { margin-bottom: 2rem; }
.svc {
  display: flex; align-items: center; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--stone);
  font-size: .93rem; font-weight: 500; color: var(--text);
  transition: color var(--t), padding-left var(--t);
}
.svc:first-child { border-top: 1px solid var(--stone); }
.svc:hover { color: var(--gold); padding-left: .5rem; }
.svc span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.emploi-cta {
  background: var(--navy); border-radius: var(--r-lg); padding: 2rem 2.25rem; color: var(--white);
}
.emploi-cta p { font-size: .92rem; color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }
.emploi-cta p strong { color: var(--white); }
.emploi-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cta-mail { font-size: .88rem; font-weight: 600; color: var(--gold-lt); transition: color var(--t); }
.cta-mail:hover { color: var(--gold-pale); }

/* ═══════════════════════════════════════
   ENTREPRISE
═══════════════════════════════════════ */
.ent-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }

.ent-blocks { display: flex; flex-direction: column; }

.ent-block {
  padding: 2rem 0 2rem 1.5rem;
  border-left: 2px solid var(--stone);
  position: relative; transition: border-color var(--t);
}
.ent-block::before {
  content: ''; position: absolute; top: 2.25rem; left: -5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--stone); border: 2px solid var(--white);
  transition: background var(--t);
}
.ent-block:hover { border-color: var(--gold); }
.ent-block:hover::before { background: var(--gold); }

.ent-tag {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.ent-block p { font-size: .94rem; color: #374151; margin-bottom: .4rem; }
.ent-block p strong { color: var(--navy); }

.legal-seal {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1rem; background: var(--navy); color: var(--white);
  font-size: .8rem; font-weight: 600; padding: .65rem 1rem;
  border-radius: var(--r); border-left: 3px solid var(--gold);
}
.legal-seal svg { color: var(--gold); flex-shrink: 0; }

.ent-sidebar { position: sticky; top: 100px; }
.sidebar-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-lg) var(--r-lg) 0 0; }

.sidebar-body {
  background: var(--navy); border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 1.75rem; box-shadow: var(--sh-lg);
}
.sidebar-body h3 {
  font-family: var(--ff-d); font-size: 1.05rem; color: var(--white);
  margin-bottom: 1.25rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(196,154,56,.25);
}
.peri-group { margin-bottom: 1.25rem; }
.peri-group:last-child { margin-bottom: 0; }
.peri-group h4 { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.peri-group li {
  font-size: .87rem; color: rgba(255,255,255,.58);
  padding: .28rem 0 .28rem .75rem; border-left: 2px solid rgba(255,255,255,.07);
  transition: color var(--t), border-color var(--t);
}
.peri-group li:hover { color: var(--white); border-color: var(--gold); }

/* ═══════════════════════════════════════
   GARANTIE
═══════════════════════════════════════ */
.garantie-sec { background: var(--ink); padding: 100px 0; }

.garantie-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.04);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.04);
}

.garantie-item {
  background: var(--ink); padding: 3rem 2.5rem;
  position: relative; transition: background var(--t);
}
.garantie-item:hover { background: var(--navy); }

.gi-num {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: var(--ff-d); font-size: 5.5rem; font-weight: 700;
  color: rgba(255,255,255,.03); line-height: 1; user-select: none;
}

.gi-icon {
  width: 58px; height: 58px; border: 1.5px solid rgba(196,154,56,.25);
  border-radius: var(--r); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: border-color var(--t), background var(--t);
}
.garantie-item:hover .gi-icon { border-color: var(--gold); background: rgba(196,154,56,.08); }

.garantie-item h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.garantie-item p { font-size: .9rem; color: rgba(255,255,255,.5); }
.garantie-item p strong { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════
   CARRIÈRE
═══════════════════════════════════════ */
.career-banner {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 300px; margin-bottom: 2.5rem; box-shadow: var(--sh-lg);
}
.career-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.career-banner:hover img { transform: scale(1.03); }
.career-banner-text {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,12,24,.85) 0%, rgba(8,12,24,.25) 100%);
  display: flex; flex-direction: column; justify-content: center; padding: 3rem;
}
.career-banner-text h3 { font-family: var(--ff-d); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: .4rem; }
.career-banner-text p { font-size: .95rem; color: var(--gold-lt); }

.career-intro {
  background: var(--white); border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem; border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 2rem; font-size: .97rem; color: #374151; max-width: 700px;
}

.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.career-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--r-lg); padding: 2.25rem;
  transition: box-shadow var(--t), transform var(--t);
}
.career-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }

.career-card h3 {
  font-family: var(--ff-d); font-size: 1.2rem; color: var(--navy);
  margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--gold);
}
.career-card p { font-size: .93rem; color: #374151; margin-bottom: .5rem; }
.career-card p strong { color: var(--navy); }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .75rem; font-weight: 700; color: var(--navy); letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea {
  border: 1.5px solid var(--stone); border-radius: var(--r);
  padding: .85rem 1rem; font-family: var(--ff-b); font-size: .95rem;
  color: var(--text); background: var(--white); resize: vertical;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,56,.14);
}

.contact-aside { display: flex; flex-direction: column; }

.contact-photo { position: relative; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; height: 180px; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo-badge {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(8,12,24,.72); color: var(--gold-lt);
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  padding: .25rem .65rem; border-radius: 100px;
}

.contact-info {
  background: var(--cream); border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem;
}

.ci-item { display: flex; align-items: flex-start; gap: .9rem; }
.ci-icon {
  width: 36px; height: 36px; background: var(--navy); color: var(--gold);
  border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-item h5 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); margin-bottom: .2rem; }
.ci-item a, .ci-item address { font-size: .9rem; font-weight: 500; color: var(--navy); transition: color var(--t); }
.ci-item a:hover { color: var(--gold); }

.ci-note {
  background: var(--navy); color: var(--white);
  border-radius: var(--r); padding: 1rem; text-align: center; font-size: .85rem;
}
.ci-note strong { color: var(--gold-lt); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--ink); padding: 72px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand .logo { margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.8; }
.footer-since { margin-top: .5rem; font-size: .78rem !important; color: rgba(255,255,255,.25) !important; }

.footer-col h5 { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.25rem; }
.footer-col nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-col nav a { font-size: .88rem; color: rgba(255,255,255,.48); transition: color var(--t); }
.footer-col nav a:hover { color: var(--gold-lt); }
.footer-col > a { display: block; font-size: .88rem; color: rgba(255,255,255,.48); transition: color var(--t); margin-bottom: .55rem; }
.footer-col > a:hover { color: var(--gold-lt); }
.footer-hours { font-size: .78rem; color: rgba(255,255,255,.28); margin-top: .25rem; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; font-size: .76rem; color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   HERO BADGES
═══════════════════════════════════════ */
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.hbadge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 500;
  padding: .4rem .9rem; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hbadge svg { color: var(--gold); flex-shrink: 0; }

.badge-plus { font-size: .65em; vertical-align: super; margin-left: 1px; }

/* ═══════════════════════════════════════
   DOMAINES
═══════════════════════════════════════ */
.domains-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start;
}

.domain-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.domain-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--stone);
  transition: padding-left var(--t);
}
.domain-item:first-child { border-top: 1px solid var(--stone); }
.domain-item:hover { padding-left: .5rem; }

.domain-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; margin-top: .45rem;
}
.domain-item strong { display: block; font-size: .97rem; font-weight: 600; color: var(--navy); margin-bottom: .15rem; }
.domain-item p { font-size: .85rem; color: var(--gray); margin: 0; }

.domain-callout {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 2.5rem; position: sticky; top: 100px;
}
.callout-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  background: rgba(196,154,56,.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.domain-callout h3 { font-family: var(--ff-d); font-size: 1.25rem; color: var(--white); margin-bottom: .9rem; line-height: 1.3; }
.domain-callout p { font-size: .93rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.callout-legal {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(196,154,56,.15); color: var(--gold-lt);
  font-size: .82rem; font-weight: 700; padding: .6rem 1rem;
  border-radius: 100px; border: 1px solid rgba(196,154,56,.3);
}
.callout-legal svg { flex-shrink: 0; }

/* ═══════════════════════════════════════
   EXPERTISES CARDS (6)
═══════════════════════════════════════ */
.expertise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.expertise-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.expertise-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity var(--t);
}
.expertise-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-color: rgba(196,154,56,.3); }
.expertise-card:hover::before { opacity: 1; }

.xp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(196,154,56,.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background var(--t);
}
.expertise-card:hover .xp-icon { background: rgba(196,154,56,.18); }

.expertise-card h3 { font-family: var(--ff-d); font-size: 1.1rem; color: var(--navy); margin-bottom: .65rem; }
.expertise-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════
   ÉQUIPE
═══════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.team-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }

.team-photo-wrap {
  aspect-ratio: 1/1; overflow: hidden; background: var(--stone);
}
.team-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-photo-wrap img { transform: scale(1.06); }

.team-info { padding: 1.5rem; }
.team-info h3 { font-family: var(--ff-d); font-size: 1.05rem; color: var(--navy); margin-bottom: .3rem; }
.team-role {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); background: rgba(196,154,56,.1);
  padding: .3rem .8rem; border-radius: 100px;
}

/* ═══════════════════════════════════════
   POURQUOI NOUS
═══════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.why-item {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--r-lg); padding: 2.25rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: box-shadow var(--t), transform var(--t);
}
.why-item:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }

.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.why-item h3 { font-family: var(--ff-d); font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.why-item p { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════
   FORM REQ
═══════════════════════════════════════ */
.req { color: var(--gold); }

/* ═══════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.testi-card {
  background: var(--white); border: 1px solid var(--stone);
  border-radius: var(--r-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: box-shadow var(--t), transform var(--t);
}
.testi-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }

.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }

.testi-text {
  font-size: .93rem; color: #374151; line-height: 1.75;
  font-style: italic; flex: 1;
}
.testi-text::before { content: '\201C'; color: var(--gold); font-size: 1.5em; font-style: normal; line-height: 0; vertical-align: -.35em; margin-right: .1em; }

.testi-author { display: flex; align-items: center; gap: 1rem; margin-top: auto; }

.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: .1rem; }
.testi-author span { font-size: .78rem; color: var(--gray); }

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-final {
  position: relative; padding: 100px 0; text-align: center; overflow: hidden;
  background: var(--navy);
}
.cta-final-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(196,154,56,.14) 0%, transparent 65%);
}
.cta-final-inner { position: relative; z-index: 1; }

.cta-final-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: .75rem;
}
.cta-final-title {
  font-family: var(--ff-d); font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); line-height: 1.15; margin-bottom: 1.25rem;
}
.cta-final-title em { font-style: italic; color: var(--gold-lt); }
.cta-final-sub { font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: 2.5rem; line-height: 1.8; }
.btn-solid--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ═══════════════════════════════════════
   FOOTER (4 colonnes)
═══════════════════════════════════════ */
.footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr !important; }

/* Grands laptops */
@media (max-width: 1100px) {
  .hero-body { grid-template-columns: 1fr 280px; gap: 2.5rem; }
  .hero-frame { aspect-ratio: 2/3; }
  .emploi-layout { grid-template-columns: 260px 1fr; gap: 2.5rem; }
  .ent-layout { grid-template-columns: 1fr 260px; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr 300px; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablettes paysage */
@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr 220px; gap: 2rem; padding-top: 140px; }
  .hero-frame { aspect-ratio: 3/4; }
  .display-title { font-size: clamp(2rem, 5vw, 3rem); }
  .emploi-layout { grid-template-columns: 1fr; }
  .emploi-visual { position: relative; top: 0; aspect-ratio: 16/7; }
  .ent-layout { grid-template-columns: 1fr; }
  .ent-sidebar { position: relative; top: 0; }
  .contact-layout { grid-template-columns: 1fr; }
}

/* Mobiles */
@media (max-width: 640px) {
  .hero-body { grid-template-columns: 1fr; padding-top: 120px; padding-bottom: 0; }
  .hero-right {
    display: block;
    height: 280px;
    margin: 0 -2rem;
    border-radius: 0;
  }
  .hero-frame {
    height: 100%; border-radius: 0;
    aspect-ratio: unset; border: none; box-shadow: none;
  }
  .hero-frame img { object-position: center 20%; }
  .hero-badge { bottom: 1rem; right: 1rem; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .trio-grid { grid-template-columns: 1fr; }
  .garantie-grid { grid-template-columns: 1fr; gap: 0; }
  .career-grid { grid-template-columns: 1fr; }
  .domains-layout { grid-template-columns: 1fr; }
  .domain-callout { position: relative; top: 0; }
  .expertise-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-label { margin-left: .25rem; text-align: left; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none; position: fixed; inset: 72px 0 0;
    background: rgba(8,12,24,.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; padding: 2rem; z-index: 199;
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: rgba(255,255,255,.8) !important; font-size: 1.1rem; }
  .nav-link:hover { color: var(--white) !important; }
  .nav-cta { font-size: 1rem; padding: .8rem 2rem; }
  .hero-body { padding-top: 130px; padding-bottom: 60px; }
  .display-title { font-size: 2.4rem; }
  .garantie-item { border-bottom: 1px solid rgba(255,255,255,.04); }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
