/* ═══════════════════════════════════════════════════════════════════
   GTC EXPERTISE GROUPE — style.css
   Charte : Marine #0d2b5e · Orange #d4601c · Crème #f7f5f0
   Typographie : Cormorant Garamond (titres) + DM Sans (corps)
═══════════════════════════════════════════════════════════════════ */

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

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  --marine:      #0d2b5e;
  --marine-dk:   #081c3d;
  --marine-lt:   #1e4080;
  --marine-xl:   #2a5298;
  --orange:      #d4601c;
  --orange-lt:   #e8711e;
  --orange-pale: rgba(212,96,28,.08);
  --gold:        #c9952a;
  --white:       #ffffff;
  --off:         #f7f5f0;
  --off2:        #edeae3;
  --border:      #e0ddd6;
  --text:        #1c1c2e;
  --muted:       #6b7280;
  --light-muted: #9ca3af;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:   0 24px 48px rgba(13,43,94,.18);

  --transition:  all .22s ease;
}

/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .18s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── UTILITAIRES ───────────────────────────────────────────────── */
.container        { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container--wide  { max-width: 1340px; margin: 0 auto; padding: 0 2rem; }
.container--narrow{ max-width: 800px;  margin: 0 auto; padding: 0 2rem; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-marine { color: var(--marine); }
.text-muted  { color: var(--muted); }

/* ── TYPOGRAPHIE ───────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--marine);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}
.section-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--marine-lt));
  border-radius: 2px;
  margin: 1rem 0 2rem;
}
.section-divider--center { margin-left: auto; margin-right: auto; }

/* ── BOUTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-lt);
  border-color: var(--orange-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.8); }

.btn--outline {
  background: transparent;
  color: var(--marine);
  border-color: var(--marine);
}
.btn--outline:hover {
  background: var(--marine);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--marine);
  border-color: #fff;
}
.btn--white:hover { background: var(--off2); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn--lg { padding: .9rem 2.2rem; font-size: .95rem; }

/* ── TOPBAR ────────────────────────────────────────────────────── */
.topbar {
  background: var(--marine-dk);
  padding: .3rem 0;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 100;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.topbar__lang a {
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.topbar__lang a:hover,
.topbar__lang a.active { color: var(--orange); }
.topbar__lang span { color: rgba(255,255,255,.25); }

/* ── HEADER ────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.logo__mark {
  width: 44px;
  height: 44px;
  background: var(--marine);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}
.logo__text-gtc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}
.logo__flag {
  width: 26px;
  height: 3px;
  border-radius: 1px;
  background: linear-gradient(90deg, #002d62 33.33%, #fecb00 33.33% 66.66%, #c00 66.66%);
}
.logo__info { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--marine);
  letter-spacing: -.02em;
}
.logo__sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 3px;
}

/* Navigation */
.nav { flex: 1; }
.nav__list {
  display: flex;
  gap: .15rem;
  align-items: center;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: .5rem .9rem;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.nav__link:hover,
.nav__link.is-active,
.nav__link--active { color: var(--orange); background: var(--orange-pale); }
.nav__caret { font-size: .62rem; margin-left: 2px; }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 255px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s;
  z-index: 999;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.nav__dropdown-link {
  display: block;
  padding: .6rem 1.15rem;
  font-size: .8rem;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--off2);
  transition: var(--transition);
}
.nav__dropdown-link:last-child { border-bottom: none; }
.nav__dropdown-link:hover {
  background: var(--off);
  color: var(--orange);
  padding-left: 1.5rem;
}
.header__accent {
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--marine-xl) 100%);
}
.header__search {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .45rem .65rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.header__search:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
  margin-left: auto;
}
.hamburger__line {
  width: 22px;
  height: 2px;
  background: var(--marine);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BREADCRUMB ────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--off2);
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--muted);
}
.breadcrumb__item a { color: var(--marine); }
.breadcrumb__item a:hover { color: var(--orange); }
.breadcrumb__sep { color: var(--border); }

/* ── PAGE HERO (compact, sous-pages) ───────────────────────────── */
.page-hero {
  background: var(--marine);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,96,28,.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 90%,  rgba(30,64,128,.4) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__eyebrow { color: rgba(255,255,255,.45); }
.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.page-hero__desc { color: rgba(255,255,255,.62); max-width: 580px; line-height: 1.78; font-size: .92rem; }
.page-hero__stripe {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--marine-lt));
  border-radius: 2px;
  margin-top: 1.8rem;
}

/* ── HERO V2 ACCUEIL ────────────────────────────────────────────── */

/* Variables locales hero */
.hero2 {
  --h2-bg:        #06101e;
  --h2-blue:      #0d2b5e;
  --h2-blue-lt:   #1a4b9c;
  --h2-red:       #bf2418;
  --h2-red-lt:    #e0301e;
  --h2-orange:    #d4601c;
  --h2-orange-lt: #f07530;
  --h2-border:    rgba(255,255,255,.09);
  --h2-card-bg:   rgba(255,255,255,.035);
  --h2-r:         18px;
}

/* Section */
.hero2 {
  background: url('../images/hero/hero_gtc.jpg') center top / cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
}

/* ── Arrière-plan overlay ────────────────────────────────────────── */
.h2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* overlay gradient pour lisibilité du texte */
  background: linear-gradient(
    110deg,
    rgba(6,16,30,.88) 0%,
    rgba(13,43,94,.72) 50%,
    rgba(6,16,30,.60) 100%
  );
}
/* glows désactivés (photo suffit) */
.h2-glow { display: none; }
.h2-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── Layout principal ────────────────────────────────────────────── */
.h2-body {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: center;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* ── Gauche ──────────────────────────────────────────────────────── */
.h2-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

/* Badge */
.h2-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(13,43,94,.5);
  border: 1px solid rgba(26,75,156,.45);
  color: rgba(160,195,255,.85);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.9rem;
  width: fit-content;
}
.h2-badge__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4a8fe2;
  box-shadow: 0 0 8px rgba(74,143,226,.9);
  animation: h2-pulse 2.4s ease-in-out infinite;
}
@keyframes h2-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}

/* Titre */
.h2-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
}
.h2-t1 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  color: rgba(255,255,255,.65);
  font-weight: 400;
  margin-bottom: .18em;
  transition: color .35s, letter-spacing .35s;
}
.h2-title:hover .h2-t1 {
  color: rgba(255,255,255,.85);
  letter-spacing: .01em;
}
.h2-t2 {
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
  color: #fff;
  line-height: 1.0;
  transition: transform .4s cubic-bezier(.22,1,.36,1), text-shadow .4s;
}
.h2-title:hover .h2-t2 {
  transform: translateX(6px);
  text-shadow: 0 4px 40px rgba(232,105,10,.35);
}
.h2-t2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--h2-red-lt) 0%, var(--h2-orange-lt) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position .6s ease;
}
.h2-title:hover .h2-t2 em {
  background-position: 100% 0;
}
.h2-t3 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin-top: .2em;
  transition: color .35s, transform .4s cubic-bezier(.22,1,.36,1);
}
.h2-title:hover .h2-t3 {
  color: rgba(255,255,255,.9);
  transform: translateX(4px);
}

/* Description */
.h2-desc {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  line-height: 1.88;
  max-width: 540px;
  margin-bottom: 2.4rem;
  transition: color .3s;
}
.h2-left:hover .h2-desc {
  color: rgba(255,255,255,.75);
}

/* CTAs */
.h2-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.h2-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 1.65rem;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .22s ease;
}
.h2-btn--primary {
  background: linear-gradient(130deg, var(--h2-red) 0%, var(--h2-orange) 100%);
  color: #fff;
  box-shadow: 0 4px 22px rgba(191,36,24,.38), inset 0 1px 0 rgba(255,255,255,.1);
}
.h2-btn--primary:hover {
  background: linear-gradient(130deg, var(--h2-red-lt) 0%, var(--h2-orange-lt) 100%);
  box-shadow: 0 8px 30px rgba(191,36,24,.48);
  transform: translateY(-2px);
  color: #fff;
}
.h2-btn--ghost {
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.18);
}
.h2-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.32);
  transform: translateY(-2px);
}

/* Stats */
.h2-stats {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.h2-stat {
  flex: 1;
  text-align: center;
  padding: 0 .8rem;
}
.h2-stat__sep {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.h2-stat__n {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--h2-orange-lt);
  line-height: 1;
  margin-bottom: .28rem;
}
.h2-stat__n--txt {
  font-size: 1.55rem;
  color: #5fa8f5;
}
.h2-stat__l {
  display: block;
  font-size: .65rem;
  color: rgba(255,255,255,.42);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Droite ──────────────────────────────────────────────────────── */
.h2-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.h2-visual {
  position: relative;
  width: 100%;
  max-width: 430px;
  padding: 30px 40px 40px 50px;
}

/* Anneau décoratif */
.h2-ring {
  position: absolute;
  width: 360px; height: 360px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(26,75,156,.25);
  box-shadow:
    0 0 0 18px rgba(13,43,94,.12),
    0 0 0 54px rgba(13,43,94,.05);
  pointer-events: none;
  z-index: 0;
}
.h2-ring::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(26,75,156,.18);
  animation: h2-spin 35s linear infinite;
}
@keyframes h2-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Carte principale */
.h2-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.038);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 1.75rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.07);
  animation: h2-float 7s ease-in-out infinite;
}
@keyframes h2-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}

/* En-tête carte */
.h2-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.h2-card__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.h2-card__logo {
  border-radius: 10px;
  flex-shrink: 0;
}
.h2-card__name {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}
.h2-card__sub {
  display: block;
  font-size: .66rem;
  color: rgba(255,255,255,.42);
  margin-top: 2px;
}
.h2-card__cert {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(74,143,226,.15);
  color: #7ab8f8;
  border: 1px solid rgba(74,143,226,.3);
  padding: .22rem .72rem;
  border-radius: 100px;
}

/* Séparateur */
.h2-card__sep {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.2rem;
}
.h2-card__sep span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}

/* Domaines */
.h2-domains {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.h2-domain {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .72rem .85rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  transition: background .18s, border-color .18s;
}
.h2-domain:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.h2-domain__ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h2-domain__ico svg { width: 17px; height: 17px; }
.h2-domain__ico--blue  { background: rgba(26,75,156,.25); border: 1px solid rgba(26,75,156,.4); color: #7ab8f8; }
.h2-domain__ico--red   { background: rgba(191,36,24,.2);  border: 1px solid rgba(191,36,24,.35); color: #f08080; }
.h2-domain__ico--orange{ background: rgba(212,96,28,.2);  border: 1px solid rgba(212,96,28,.35); color: #f0a060; }
.h2-domain__name {
  display: block;
  font-size: .77rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 2px;
}
.h2-domain__desc {
  display: block;
  font-size: .64rem;
  color: rgba(255,255,255,.38);
}

/* Pied de carte */
.h2-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.h2-card__tags {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.h2-card__tags span {
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(201,149,42,.12);
  color: #c9a84b;
  border: 1px solid rgba(201,149,42,.25);
  padding: .18rem .52rem;
  border-radius: 100px;
}
.h2-card__ref {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .18s;
  white-space: nowrap;
}
.h2-card__ref:hover { color: rgba(255,255,255,.8); }

/* Chips flottantes */
.h2-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  padding: .44rem 1.05rem;
  font-size: .7rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  z-index: 4;
}
.h2-chip--1 {
  top: 8px; right: 8px;
  color: #7ab8f8;
  border: 1px solid rgba(74,143,226,.28);
  background: rgba(74,143,226,.1);
  animation: h2-fc 5.5s ease-in-out infinite;
}
.h2-chip--2 {
  bottom: 20px; left: 8px;
  color: #f08080;
  border: 1px solid rgba(191,36,24,.28);
  background: rgba(191,36,24,.1);
  animation: h2-fc 7s ease-in-out infinite .6s;
}
.h2-chip--3 {
  bottom: 8px; right: 28px;
  color: #f0a060;
  border: 1px solid rgba(212,96,28,.28);
  background: rgba(212,96,28,.1);
  animation: h2-fc 6.5s ease-in-out infinite 1.2s;
}
.h2-chip svg { flex-shrink: 0; }
@keyframes h2-fc {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-7px) rotate(-1deg); }
  66%      { transform: translateY(-3px) rotate(.5deg); }
}

/* ── Bande domaines ──────────────────────────────────────────────── */
.h2-stripe {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(191,36,24,.95) 0%, rgba(212,96,28,.95) 100%);
  border-top: 1px solid rgba(255,255,255,.1);
}
.h2-stripe__inner {
  display: flex;
  flex-wrap: wrap;
}
.h2-stripe__item {
  flex: 1;
  min-width: 140px;
  padding: 1.15rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.18);
  text-align: center;
}
.h2-stripe__item:last-child { border-right: none; }
.h2-stripe__val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.h2-stripe__key {
  display: block;
  font-size: .64rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: .12rem;
}


/* ── SECTIONS ──────────────────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--off); }
.section--dark { background: var(--marine); }
.section--compact { padding: 3.5rem 0; }

.section__header { margin-bottom: 3rem; }
.section__header--center { text-align: center; }
.section__header--center .section-desc { margin: 0 auto; }
.section__header--center .section-divider { margin-left: auto; margin-right: auto; }

.section__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ── CARDS DOMAINES ────────────────────────────────────────────── */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.domain-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.domain-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--marine-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.domain-card:hover {
  background: var(--marine);
  border-color: var(--marine);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}
.domain-card:hover::after { transform: scaleX(1); }
.domain-card:hover .domain-card__title,
.domain-card:hover .domain-card__desc,
.domain-card:hover .domain-card__link { color: rgba(255,255,255,.9); }
.domain-card:hover .domain-card__icon-wrap { background: rgba(255,255,255,.1); }
.domain-card__percent {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(13,43,94,.07);
  line-height: 1;
  transition: var(--transition);
}
.domain-card:hover .domain-card__percent { color: rgba(255,255,255,.07); }
.domain-card__icon-wrap {
  width: 50px; height: 50px;
  background: var(--off2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: var(--transition);
}
.domain-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: .55rem;
  line-height: 1.35;
  transition: color .25s;
}
.domain-card__desc {
  font-size: .81rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  transition: color .25s;
}
.domain-card__link {
  font-size: .76rem;
  font-weight: 600;
  color: var(--orange);
  transition: color .25s;
}

/* ── ACTUALITÉS ────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
}
.news-card--featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card--featured:hover { box-shadow: var(--shadow-lg); }
.news-card__image {
  height: 240px;
  background: linear-gradient(135deg, var(--marine), var(--marine-xl));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.news-card__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.news-card__image-label {
  position: relative;
  z-index: 1;
  background: rgba(212,96,28,.9);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: var(--radius-sm);
  letter-spacing: .06em;
}
.news-card__body { padding: 1.5rem; }
.news-card__cat {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .45rem;
}
.news-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--marine);
  line-height: 1.35;
  margin-bottom: .7rem;
}
.news-card__title:hover { color: var(--orange); }
.news-card__excerpt { font-size: .84rem; color: var(--muted); line-height: 1.72; margin-bottom: 1rem; }
.news-card__date  { font-size: .72rem; color: var(--light-muted); }

.news-aside { display: flex; flex-direction: column; gap: .9rem; }
.news-card--small {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  transition: var(--transition);
  cursor: pointer;
}
.news-card--small:hover { box-shadow: var(--shadow-md); }
.news-card--small .news-card__title {
  font-size: .96rem;
  margin: .35rem 0 .5rem;
}

/* ── BANDEAU CTA ───────────────────────────────────────────────── */
.cta-band { background: var(--marine); padding: 4.5rem 0; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .65rem;
}
.cta-band__desc { color: rgba(255,255,255,.6); max-width: 560px; font-size: .9rem; line-height: 1.78; }

/* ── PARTENAIRES ───────────────────────────────────────────────── */
.partners-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.partner-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: .48rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--marine);
  transition: var(--transition);
  cursor: default;
}
.partner-badge:hover { border-color: var(--orange); color: var(--orange); }

/* ── SIDEBAR LAYOUT ────────────────────────────────────────────── */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-nav {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-nav__head {
  padding: .85rem 1.15rem;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--marine);
  color: var(--orange);
}
.sidebar-nav__link {
  display: block;
  padding: .65rem 1.15rem;
  font-size: .8rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-nav__link:last-child { border-bottom: none; }
.sidebar-nav__link:hover, .sidebar-nav__link.is-active {
  color: var(--orange);
  padding-left: 1.5rem;
  background: var(--off2);
}
.sidebar-cta {
  background: var(--marine);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-cta__label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .7rem;
  display: block;
}
.sidebar-cta__text { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1rem; }
.sidebar-cta__btn {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: .72rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .83rem;
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-cta__btn:hover { background: var(--orange-lt); }

/* ── CONTENT SECTIONS ──────────────────────────────────────────── */
.content-section {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.content-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.content-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.content-section p { font-size: .9rem; color: #3d4451; line-height: 1.82; margin-bottom: 1rem; }
.content-section p:last-child { margin-bottom: 0; }

/* Listes stylisées */
.list-arrow { display: flex; flex-direction: column; gap: .55rem; }
.list-arrow li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .87rem; color: #3d4451; line-height: 1.6;
}
.list-arrow li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .08em;
}

/* Grille valeurs */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.6rem; }
.value-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.1rem 1.3rem;
  transition: var(--transition);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.value-card__title { font-size: .88rem; font-weight: 600; color: var(--marine); margin-bottom: .25rem; }
.value-card__text { font-size: .8rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* Grille équipe */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.6rem; }
.team-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--orange); background: var(--white); box-shadow: var(--shadow-sm); }
.team-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--marine);
  margin: 0 auto .8rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
  color: var(--orange);
}
.team-card__name { font-size: .88rem; font-weight: 600; color: var(--marine); margin-bottom: .25rem; }
.team-card__role {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .35rem;
}
.team-card__desc { font-size: .77rem; color: var(--muted); line-height: 1.55; }

/* Étapes méthodologie */
.method-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
.method-step {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  transition: var(--transition);
}
.method-step:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.method-step__num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--marine);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--orange);
}
.method-step__tag {
  font-size: .67rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .2rem; display: block;
}
.method-step__title { font-size: .88rem; font-weight: 600; color: var(--marine); margin-bottom: .3rem; }
.method-step__text { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Citation */
.blockquote {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.3rem 1.6rem;
  margin-top: 1.5rem;
}
.blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--marine);
  line-height: 1.7;
  margin: 0;
}

/* Tableau légal */
.legal-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.legal-table td { padding: .65rem .9rem; border: 1px solid var(--border); line-height: 1.5; }
.legal-table tr:nth-child(odd) td { background: var(--off); }
.legal-table td:first-child { font-weight: 600; color: var(--marine); width: 36%; }

/* ── SERVICES TABS ─────────────────────────────────────────────── */
.services-tabs-bar {
  background: var(--off2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 100;
  overflow-x: auto;
}
.services-tabs-bar::-webkit-scrollbar { height: 0; }
.services-tabs-list {
  display: flex;
  white-space: nowrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-tab {
  display: inline-block;
  padding: .9rem 1.1rem;
  font-size: .79rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.services-tab:hover, .services-tab.is-active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.services-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.services-section:last-child { border-bottom: none; }
.services-section__header { margin-bottom: 2.2rem; }
.services-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.services-section__desc { font-size: .87rem; color: var(--muted); max-width: 640px; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.service-item {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .8rem 1rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .83rem;
  color: var(--text);
  transition: var(--transition);
}
.service-item:hover { border-color: var(--orange); background: var(--white); }
.service-code {
  background: var(--marine);
  color: var(--orange);
  font-size: .64rem;
  font-weight: 700;
  padding: .18rem .48rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  letter-spacing: .04em;
  margin-top: 1px;
}
.service-ref-note {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .8rem;
  color: var(--muted);
}
.service-ref-note strong { color: var(--marine); }

/* ── RÉFÉRENCES ────────────────────────────────────────────────── */
.ref-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ref-filter {
  background: var(--off);
  border: 1px solid var(--border);
  padding: .42rem .95rem;
  border-radius: 100px;
  font-size: .77rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--marine);
  transition: var(--transition);
}
.ref-filter.is-active, .ref-filter:hover {
  background: var(--marine);
  color: var(--orange);
  border-color: var(--marine);
}
.refs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.ref-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.ref-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ref-card__top {
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--marine-xl));
}
.ref-card__body { padding: 1.4rem; }
.ref-card__cat {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: .4rem;
}
.ref-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem; font-weight: 700;
  color: var(--marine); margin-bottom: .45rem; line-height: 1.4;
}
.ref-card__client { font-size: .79rem; font-weight: 600; color: #374151; margin-bottom: .25rem; }
.ref-card__period { font-size: .72rem; color: var(--light-muted); margin-bottom: .9rem; }
.ref-card__tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.ref-card__tag {
  background: var(--off);
  border: 1px solid var(--border);
  padding: .14rem .52rem;
  border-radius: 100px;
  font-size: .68rem; color: var(--muted);
}
.ref-card__desc { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: .79rem; color: var(--muted); line-height: 1.65; }
.ref-card__contact { margin-top: .65rem; font-size: .71rem; color: var(--light-muted); font-style: italic; }

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.contact-card {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1.1rem; background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: .9rem;
}
.contact-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--marine);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.contact-card__label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .18rem; display: block;
}
.contact-card__value { font-size: .84rem; color: #374151; line-height: 1.55; }
.contact-card__value a { color: var(--marine); }
.contact-card__value a:hover { color: var(--orange); }
.contact-rep {
  background: var(--marine);
  border-radius: var(--radius-lg);
  padding: 1.4rem; color: #fff; margin-top: 1.8rem;
}
.contact-rep__label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .5rem; display: block;
}
.contact-rep__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: .2rem;
}
.contact-rep__title { font-size: .78rem; color: rgba(255,255,255,.55); }

/* Formulaire */
.contact-form {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--marine); margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--marine); margin-bottom: .38rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .72rem 1rem; font-size: .87rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text); outline: none;
  transition: border-color .18s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(212,96,28,.08); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-group--checkbox { display: flex; gap: .6rem; align-items: flex-start; }
.form-group--checkbox input { width: auto; margin-top: 3px; }
.form-group--checkbox label {
  font-size: .76rem; text-transform: none; letter-spacing: 0;
  color: var(--muted); font-weight: 400; line-height: 1.5;
}
.form-submit {
  width: 100%; background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius-md); padding: .92rem;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.form-submit:hover { background: var(--orange-lt); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-note { font-size: .72rem; color: var(--light-muted); text-align: center; margin-top: .65rem; }

/* ── FOOTER ────────────────────────────────────────────────────── */

/* Band 1 — CTA sombre + réseaux sociaux */
.footer__band1 {
  background: var(--marine);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 0;
}
.footer__band1-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer__band1-cta { flex: 1; min-width: 260px; }
.footer__band1-cta h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .35rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.footer__band1-cta p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.footer__band1-btn {
  display: inline-block;
  padding: .55rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 100px;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.footer__band1-btn:hover { background: var(--orange); border-color: var(--orange); }
.footer__band1-div {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.footer__band1-social { min-width: 200px; }
.footer__band1-social-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: .75rem;
}
.footer__social-icons { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer__social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.footer__social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Band 2 — Colonnes de navigation */
.footer__band2 {
  background: var(--off);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.footer__col h4 {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--marine);
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer__col ul { display: flex; flex-direction: column; gap: .45rem; list-style: none; padding: 0; }
.footer__col li { font-size: .82rem; }
.footer__col a { color: var(--muted); transition: color .15s; text-decoration: none; }
.footer__col a:hover { color: var(--orange); }
.footer__contact li { display: flex; gap: .45rem; align-items: flex-start; }
.footer__contact li i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

/* Band 3 — Marque + bas de page */
.footer__band3 {
  background: #fff;
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__bottom-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__bottom-address {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.55;
}
.footer__bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
  text-align: right;
}
.footer__bottom-legal {
  font-size: .68rem;
  color: var(--light-muted);
  line-height: 1.6;
}
.footer__bottom-flag {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footer__nav-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__band1-div { display: none; }
}
@media (max-width: 640px) {
  .footer__nav-grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom-right { align-items: flex-start; text-align: left; }
}

/* backward-compat: hide old footer structure if still present */
.footer__grid, .footer__brand, .footer__legal, .footer__top { display: none; }

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.animate-fade-up { animation: fadeUp .55s ease forwards; }
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-delay-3 { animation-delay: .3s; opacity: 0; }
.animate-delay-4 { animation-delay: .4s; opacity: 0; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* hero v2 tablet */
  .h2-body { padding-top: 4rem; padding-bottom: 2.5rem; }
  .h2-desc { max-width: 100%; }
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav, .header__search { display: none; }
  .hamburger { display: flex; }
  .news-grid { grid-template-columns: 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; }
}

@media (max-width: 600px) {
  /* hero v2 mobile */
  .h2-title { gap: 0; }
  .h2-t1 { font-size: 1.1rem; }
  .h2-t2 { font-size: 2.2rem; }
  .h2-t3 { font-size: 1.2rem; }
  .h2-stats { flex-wrap: wrap; gap: .5rem 0; padding-top: 1.4rem; }
  .h2-stat { flex: 1 1 40%; }
  .h2-stat__sep { display: none; }
  .h2-stripe__item { min-width: 50%; flex: 1 1 50%; }
  .h2-ctas { gap: .75rem; }
  .container { padding: 0 1.25rem; }
  .domains-grid, .refs-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .topbar { display: none; }
}

/* ── MOBILE NAV ────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--marine-dk);
  z-index: 999;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.5rem; color: #fff; cursor: pointer;
}
.mobile-nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .15s;
}
.mobile-nav__link:hover { color: var(--orange); }

/* ── PRINT ─────────────────────────────────────────────────────── */
@media print {
  .topbar, .header, .footer, .cta-band, .hamburger, .mobile-nav { display: none; }
  body { font-size: 12pt; }
  .container { max-width: 100%; padding: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   AFD-INSPIRED DESIGN SYSTEM v2
   ═══════════════════════════════════════════════════════════════ */

/* ── Mot du Directeur Exécutif ── */
.mot-dir { background: #fff; }
.mot-dir__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.mot-dir__photo-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,43,94,.14);
  aspect-ratio: 3/4;
  background: var(--off);
}
.mot-dir__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mot-dir__identity {
  margin-top: 1rem;
  text-align: center;
  padding: 1rem;
  background: var(--marine);
  border-radius: 8px;
}
.mot-dir__role {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .3rem;
}
.mot-dir__name {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.mot-dir__intro {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin: 1rem 0 1.25rem;
  font-style: italic;
}
.mot-dir__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.mot-dir__list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
}
.mot-dir__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.mot-dir__body {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.85;
  text-align: justify;
  margin-bottom: 1.5rem;
}
.mot-dir__body strong { color: var(--marine); }
.mot-dir__signature { margin-top: .5rem; }

@media (max-width: 900px) {
  .mot-dir__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mot-dir__photo-wrap {
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 3/4;
  }
  .mot-dir__identity { max-width: 220px; margin: .75rem auto 0; }
}

/* ── Section title with orange underline ── */
.sec-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--marine);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.sec-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-top: .55rem;
}
.sec-title--center { text-align: center; }
.sec-title--center::after { margin-left: auto; margin-right: auto; }
.sec-title--white { color: #fff; }
.sec-title--white::after { background: var(--orange); }
.sec-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

/* ══ INVESTIR AU TCHAD ══════════════════════════════════════════════ */
.itc-section { background: #f4f2ed; }

.itc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.itc-header__desc {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 520px;
  margin-top: .6rem;
}

/* ── Bento grid ── */
.itc-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
}

/* Tile base */
.itc-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
}
.itc-tile:hover {
  box-shadow: 0 10px 40px rgba(13,43,94,.1);
  transform: translateY(-3px);
}
.itc-tile__tag {
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: .6rem;
}
.itc-tile__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.itc-tile__desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}
.itc-tile__note {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .75rem;
  font-style: italic;
}

/* Featured tile (col 1, row 1–2) */
.itc-tile--featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--marine);
  border-color: transparent;
}
.itc-tile--featured .itc-tile__title { color: #fff; }
.itc-tile--featured .itc-tile__tag { color: var(--orange); }
.itc-tile--featured .itc-tile__desc { color: rgba(255,255,255,.68); }
.itc-tile__icon-lg {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.itc-tile__list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.itc-tile__list li {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.itc-tile__list li strong { color: #fff; }
.itc-tile__bullet { color: var(--orange); margin-right: .4rem; }
.itc-tile__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  margin-top: .5rem;
}

/* Stats tile */
.itc-tile--stats { grid-column: 2; grid-row: 1; }
.itc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .5rem;
}
.itc-stat {
  background: var(--off);
  border-radius: 8px;
  padding: .9rem .75rem;
  text-align: center;
  border-bottom: 2px solid var(--orange);
}
.itc-stat__num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--marine);
  line-height: 1;
}
.itc-stat__lbl {
  display: block;
  font-size: .63rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-top: .3rem;
}

/* Resources tile (full width) */
.itc-tile--resources {
  grid-column: 1 / -1;
  grid-row: 2;
  /* override row from featured */
}
/* fix: featured is row 1-3, resources is row 2 col 2 only */
.itc-tile--stats { grid-column: 2; grid-row: 1; }
.itc-tile--resources { grid-column: 2; grid-row: 2; }

/* Marquee */
.itc-marquee-wrap {
  overflow: hidden;
  border-radius: 8px;
  background: var(--off);
  padding: .75rem 0;
  margin-top: .5rem;
}
.itc-marquee { overflow: hidden; white-space: nowrap; }
.itc-marquee__track {
  display: inline-flex;
  gap: 1rem;
  animation: itcScroll 28s linear infinite;
}
.itc-marquee__track:hover { animation-play-state: paused; }
@keyframes itcScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.itc-res {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .4rem 1rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.itc-res__ico { font-size: 1.1rem; }
.itc-res__name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--marine);
}
.itc-res__name em { color: var(--orange); font-style: normal; font-size: .72rem; }

/* Laws tile */
.itc-tile--laws { grid-column: 1; grid-row: 3; }
.itc-laws-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .25rem;
}
.itc-law {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .6rem;
  align-items: center;
  padding: .6rem .75rem;
  background: var(--off);
  border-radius: 6px;
  border-left: 3px solid var(--marine);
  transition: border-color .2s;
}
.itc-law:hover { border-left-color: var(--orange); }
.itc-law__code {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.itc-law__name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--marine);
}
.itc-law__tag {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--orange);
  background: rgba(212,96,28,.08);
  border-radius: 3px;
  padding: .15rem .45rem;
  white-space: nowrap;
}

/* Sectors tile */
.itc-tile--sectors { grid-column: 2; grid-row: 3; }
.itc-sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-top: .75rem;
}
.itc-sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem .5rem .7rem;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--marine);
  text-align: center;
  line-height: 1.2;
  transition: all .2s;
  cursor: default;
  position: relative;
}
.itc-sector i {
  font-size: 1.35rem;
  color: var(--marine);
  opacity: .75;
}
.itc-sector:hover {
  background: var(--marine);
  border-color: var(--marine);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13,43,94,.15);
}
.itc-sector:hover i { color: #fff; opacity: 1; }
.itc-sector--hot {
  background: rgba(232,105,10,.06);
  border-color: rgba(232,105,10,.3);
}
.itc-sector--hot i { color: var(--orange); opacity: 1; }
.itc-sector--hot::after {
  content: '↑';
  position: absolute;
  top: .3rem;
  right: .4rem;
  font-size: .6rem;
  font-weight: 700;
  color: var(--orange);
}
.itc-sector--hot:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.itc-sector--hot:hover i { color: #fff; }
.itc-sector--hot:hover::after { color: rgba(255,255,255,.8); }

/* CTA tile */
.itc-tile--cta {
  grid-column: 1 / -1;
  grid-row: 4;
  background: linear-gradient(120deg, var(--marine) 0%, #1a3d7a 50%, #0f2448 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 2.5rem;
}
.itc-tile--cta:hover { transform: none; box-shadow: none; }
.itc-tile__cta-icon { font-size: 3rem; flex-shrink: 0; }
.itc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
  margin-left: auto;
}
.itc-cta-btn:hover { background: var(--orange-lt, #e8722c); transform: translateX(3px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .itc-bento {
    grid-template-columns: 1fr 1fr;
  }
  .itc-tile--featured { grid-row: 1 / 2; }
  .itc-tile--stats    { grid-column: 2; grid-row: 1; }
  .itc-tile--resources{ grid-column: 1 / -1; grid-row: 2; }
  .itc-tile--laws     { grid-column: 1; grid-row: 3; }
  .itc-tile--sectors  { grid-column: 2; grid-row: 3; }
  .itc-tile--cta      { grid-column: 1 / -1; grid-row: 4; flex-direction: column; gap: 1.25rem; text-align: center; }
  .itc-cta-btn        { margin-left: 0; }
}
@media (max-width: 640px) {
  .itc-bento { grid-template-columns: 1fr; }
  .itc-tile--featured,
  .itc-tile--stats,
  .itc-tile--resources,
  .itc-tile--laws,
  .itc-tile--sectors,
  .itc-tile--cta { grid-column: 1; grid-row: auto; }
  .itc-stats-grid { grid-template-columns: 1fr 1fr; }
  .itc-law { grid-template-columns: 1fr; gap: .3rem; }
  .itc-law__tag { display: none; }
  .itc-header { flex-direction: column; align-items: flex-start; }
}

/* ── KPI Section (stats over photo background) ── */
.kpi-sec {
  position: relative;
  background: var(--marine);
  overflow: hidden;
  padding: 5rem 0;
}
.kpi-sec__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.kpi-sec__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.kpi-sec__lead p {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.kpi-sec__lead .kpi-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.kpi-sec__lead .kpi-cta:hover { border-color: var(--orange); }
.kpi-sec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.kpi-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}
.kpi-card__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--marine);
  line-height: 1;
}
.kpi-card__label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: .4rem;
}

/* ── Project/Reference cards (AFD style) ── */
.proj2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proj2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.proj2-card:hover {
  box-shadow: 0 8px 32px rgba(13,43,94,.12);
  transform: translateY(-4px);
}
.proj2-card__img {
  height: 180px;
  overflow: hidden;
  background: var(--off);
}
.proj2-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.proj2-card:hover .proj2-card__img img { transform: scale(1.05); }
.proj2-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.proj2-card__cat {
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .55rem;
}
.proj2-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--marine);
  line-height: 1.35;
  flex: 1;
  margin-bottom: .6rem;
}
.proj2-card__client {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: .35rem;
}
.proj2-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.proj2-card__date { font-size: .7rem; color: var(--muted); }
.proj2-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--marine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: background .2s;
}
.proj2-card:hover .proj2-card__arrow { background: var(--orange); }

/* ── Domain cards v2 ── */
.section--marine {
  background: var(--marine);
}
.section--marine .sec-eyebrow { color: var(--orange); }
.section--marine .sec-title   { color: #fff; }
.section--marine p             { color: rgba(255,255,255,.65); }
.section--marine .btn--outline {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.section--marine .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.dom2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dom2-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem;
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.dom2-card::after {
  content: attr(data-watermark);
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--marine);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.dom2-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  transform: translateY(-4px);
}
.dom2-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: .75rem;
  line-height: 1.35;
}
.dom2-card__desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.dom2-card__link {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange);
  padding-bottom: .3rem;
  border-bottom: 2px solid var(--orange);
  transition: opacity .2s;
}
.dom2-card:hover .dom2-card__link { opacity: .75; }

/* ── CTA Band v2 ── */
.cta2 {
  background: var(--marine);
  padding: 5rem 0;
  text-align: center;
}
.cta2__eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .7rem;
}
.cta2__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.cta2__desc {
  color: rgba(255,255,255,.68);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: .95rem;
  line-height: 1.8;
}
.cta2__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Partners strip ── */
.partners2 { padding: 3.5rem 0; background: #fff; }
.partners2__title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.5rem;
}
.partners2__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
}
/* Logo cards */
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo__mark {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  padding: 6px;
}
.partner-logo__name {
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  text-align: center;
  max-width: 72px;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .partners2__row { gap: 1rem 1.25rem; }
  .partner-logo__mark { width: 48px; height: 48px; }
}

/* ── Page Hero v2 (dark with photo overlay) ── */
.page-hero2 {
  background: var(--marine);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.page-hero2__inner { position: relative; z-index: 2; }
.page-hero2__eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.page-hero2__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .9rem;
}
.page-hero2__desc {
  color: rgba(255,255,255,.7);
  font-size: .98rem;
  line-height: 1.8;
  max-width: 620px;
}
.page-hero2__bar {
  width: 52px;
  height: 3px;
  background: var(--orange);
  margin-top: 1.5rem;
}

/* ── Breadcrumb v2 ── */
.bc2 {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
  font-size: .77rem;
}
.bc2__list {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
}
.bc2__list a { color: var(--marine); text-decoration: none; }
.bc2__list a:hover { color: var(--orange); }
.bc2__sep { color: #ccc; }

/* ── About page v2 ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
.about-intro__img {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
}
.about-intro__img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.about-intro__badge {
  padding: .3rem .8rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--marine);
}
.about-intro__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.about-intro__list li {
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
}
.about-intro__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: .75rem;
}
.val2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.val2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 3px solid var(--orange);
}
.val2-card__icon { font-size: 1.5rem; margin-bottom: .75rem; }
.val2-card__title { font-weight: 700; color: var(--marine); margin-bottom: .5rem; font-size: .92rem; }
.val2-card__text { font-size: .82rem; color: var(--muted); line-height: 1.65; }
.team2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.team2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.team2-card__av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--marine);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}
.team2-card__name { font-weight: 700; color: var(--marine); margin-bottom: .25rem; font-size: .9rem; }
.team2-card__role { font-size: .74rem; color: var(--orange); font-weight: 600; margin-bottom: .5rem; }
.team2-card__desc { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.step2-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step2 {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.step2__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--marine);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step2__tag {
  display: inline-block;
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 3px;
  padding: .1rem .4rem;
  margin-bottom: .4rem;
}
.step2__title { font-weight: 700; color: var(--marine); margin-bottom: .35rem; font-size: .95rem; }
.step2__text { font-size: .83rem; color: var(--muted); line-height: 1.65; }
.legal2-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.legal2-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); }
.legal2-table tr:first-child td { border-top: 1px solid var(--border); }
.legal2-table td:first-child {
  font-weight: 600;
  color: var(--marine);
  width: 220px;
  background: var(--off);
}
.blockquote2 {
  border-left: 3px solid var(--orange);
  padding: 1rem 1.5rem;
  background: var(--off);
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--marine);
  font-size: .95rem;
  line-height: 1.7;
}
.about-sec { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.about-sec:last-child { border-bottom: none; }
.about-sec__head { margin-bottom: 2rem; }

/* ── Services page v2 ── */
.svc-tab-strip {
  background: var(--marine);
  padding: .8rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-tab-strip::-webkit-scrollbar { display: none; }
.svc-tabs {
  display: flex;
  gap: .5rem;
  white-space: nowrap;
  padding: 0 1rem;
}
.svc-tab {
  padding: .5rem 1.1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-tab:hover, .svc-tab.active, .svc-tab.is-active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.svc-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-section:last-of-type { border-bottom: none; }
.svc-header {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.svc-header__icon { width: 64px; height: 64px; flex-shrink: 0; }
.svc-header__sub {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .35rem;
}
.svc-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.svc-header__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
}
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  border-left: 3px solid var(--marine);
}
.svc-card:hover { border-left-color: var(--orange); }
.svc-card__code {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .35rem;
}
.svc-card__title { font-weight: 700; color: var(--marine); font-size: .88rem; margin-bottom: .4rem; }
.svc-card__desc { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ── References page v2 ── */
.ref2-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ref2-filter {
  padding: .45rem 1rem;
  border-radius: 100px;
  font-size: .77rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.ref2-filter:hover, .ref2-filter.is-active {
  background: var(--marine);
  color: #fff;
  border-color: var(--marine);
}
.ref2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ref2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.ref2-card:hover {
  box-shadow: 0 8px 32px rgba(13,43,94,.12);
  transform: translateY(-4px);
}
.ref2-card__img { height: 168px; overflow: hidden; background: var(--off); }
.ref2-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ref2-card:hover .ref2-card__img img { transform: scale(1.05); }
.ref2-card__img--empty {
  height: 168px;
  background: linear-gradient(135deg, var(--marine) 0%, #1a4080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: .5;
}
.ref2-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.ref2-card__cat {
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .55rem;
}
.ref2-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--marine);
  line-height: 1.4;
  flex: 1;
  margin-bottom: .6rem;
}
.ref2-card__client { font-size: .76rem; color: var(--muted); font-weight: 600; margin-bottom: .3rem; }
.ref2-card__desc { font-size: .78rem; color: #555; line-height: 1.6; margin-bottom: .75rem; }
.ref2-card__tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .75rem; }
.ref2-card__tag {
  padding: .18rem .5rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: .63rem;
  font-weight: 600;
  color: var(--marine);
}
.ref2-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.ref2-card__date { font-size: .7rem; color: var(--muted); }
.ref2-card__contact { font-size: .68rem; color: var(--muted); font-style: italic; }

/* ── Contact page v2 ── */
.contact2-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 3rem;
  padding: 4rem 0;
}
.contact2-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: .75rem;
}
.contact2-card__icon {
  width: 42px;
  height: 42px;
  background: var(--marine);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact2-card__label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .2rem;
}
.contact2-card__value { font-size: .88rem; color: var(--text); line-height: 1.55; }
.contact2-card__value a { color: var(--orange); text-decoration: none; }
.contact2-rep {
  background: var(--marine);
  border-radius: 8px;
  padding: 1.5rem;
  color: #fff;
  margin-top: 1rem;
}
.contact2-rep__label {
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-bottom: .5rem;
}
.contact2-rep__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.contact2-rep__title { font-size: .8rem; color: rgba(255,255,255,.6); }
.contact2-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.contact2-form__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* ── Responsive: tablet ── */
@media (max-width: 1024px) {
  .about-vision-grid { grid-template-columns: 1fr !important; }
  .kpi-sec__inner { grid-template-columns: 1fr; gap: 2rem; }
  .kpi-sec__grid { grid-template-columns: repeat(3, 1fr); }
  .dom2-grid { grid-template-columns: repeat(2, 1fr); }
  .proj2-grid { grid-template-columns: repeat(2, 1fr); }
  .ref2-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .about-intro__img { height: 280px; order: -1; }
  .contact2-grid { grid-template-columns: 1fr; }
  .val2-grid { grid-template-columns: repeat(2, 1fr); }
  .team2-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: mobile ── */
@media (max-width: 640px) {
  .kpi-sec__grid { grid-template-columns: repeat(2, 1fr); }
  .dom2-grid { grid-template-columns: 1fr; }
  .proj2-grid { grid-template-columns: 1fr; }
  .ref2-grid { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .val2-grid { grid-template-columns: 1fr; }
  .team2-grid { grid-template-columns: repeat(2, 1fr); }
  .cta2__btns { flex-direction: column; align-items: center; }
  .step2 { grid-template-columns: 48px 1fr; gap: 1rem; }
  .svc-header { grid-template-columns: 1fr; }
  .svc-header__icon { display: none; }
  .kpi-card__num { font-size: 2rem; }
}
