/* =========================================================
   CAREER MOMENT CONSULTING — V2, brand-aligned
   Le catalyseur des moments de carrière décisifs
   ========================================================= */

:root {
  /* ---- BRAND PALETTE (exact colors from official PPT template) ---- */
  --navy: #003E5B;           /* primary dark — main background */
  --navy-deep: #002A40;      /* deeper navy for layering */
  --navy-soft: #00496D;      /* secondary navy (from PPT slides) */

  --teal: #00A39E;           /* official brand teal — main accent */
  --teal-light: #1AB8B3;     /* hover state */
  --teal-soft: #7FD1CE;      /* subtle highlights */

  /* Aliases kept for continuity — all point to the official teal */
  --green: #00A39E;
  --green-light: #1AB8B3;
  --green-deep: #008C88;

  --orange: #F59D24;         /* orange accent (sparing use) */

  --white: #FFFFFF;
  --cream: #F5F3EE;          /* subtle off-white for light sections */
  --gray-100: #F2F4F6;
  --gray-200: #E5E8EB;
  --gray-500: #7A8691;
  --gray-700: #3A4552;
  --gray-900: #111820;

  /* ---- TYPOGRAPHY ---- */
  /* Kanit = the PPT template font; bold geometric sans */
  /* Nunito = softer body companion, per charter */
  --font-display: 'Kanit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito', 'Inter', system-ui, -apple-system, sans-serif;

  /* ---- SPACING & MOTION ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--white);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.75rem, 7vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.15; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.005em; }

.green { color: var(--green); }
.teal { color: var(--teal); }
.orange { color: var(--orange); }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color 220ms var(--ease);
}
a:hover { color: var(--teal-light); }

/* Eyebrow — small uppercase label */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--orange);
}

/* Baseline — brand's signature line */
.baseline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
}

section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

/* Dark navy background with pattern */
.bg-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}
.bg-navy-deep {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
}
.bg-teal {
  background: var(--teal);
  color: var(--white);
}
.bg-green {
  background: var(--green);
  color: var(--navy);
}
.bg-green h1, .bg-green h2, .bg-green h3 { color: var(--navy); }
.bg-cream {
  background: var(--cream);
  color: var(--gray-700);
}
.bg-cream h1, .bg-cream h2, .bg-cream h3 { color: var(--navy); }

/* =========================================================
   LOGO PATTERN — brand's signature background
   ========================================================= */
.logo-pattern {
  position: absolute;
  top: 50%;
  right: -8%;
  width: clamp(400px, 55%, 900px);
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.logo-pattern.left {
  right: auto;
  left: -10%;
}
.logo-pattern img { width: 100%; height: auto; display: block; }

.bg-navy .logo-pattern { opacity: 0.12; }
.bg-navy-deep .logo-pattern { opacity: 0.15; }

/* Content above pattern */
.container, .container-narrow { z-index: 2; }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 62, 91, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.brand-mark-img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.brand-mark-img img { width: 100%; height: 100%; }
.brand-text {
  font-family: var(--font-display);
  line-height: 1;
  color: var(--white);
}
.brand-text .name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}
.brand-text .tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--green);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}
.lang-switch button {
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 6px 11px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 200ms var(--ease);
  border-radius: 2px;
}
.lang-switch button.active {
  background: var(--green);
  color: var(--navy);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--green);
  padding: 10px 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 200ms var(--ease);
  border-radius: 2px;
}
.nav-cta:hover { background: var(--teal-light); color: var(--navy); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 200ms var(--ease);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--navy);
  cursor: pointer;
  transition: all 250ms var(--ease);
  text-decoration: none;
  border-radius: 3px;
}
.btn:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(0, 163, 158, 0.5);
}
.btn .arrow { transition: transform 250ms var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.3);
}

.btn-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: #FFAE3C;
  border-color: #FFAE3C;
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(245, 157, 36, 0.5);
}

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  background: var(--navy);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 4.75rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 18ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.hero-title .accent { color: var(--green); }

.hero-promise {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 48ch;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--green);
}
.hero-promise .quote-mark {
  color: var(--green);
  font-size: 1.3em;
  font-weight: 700;
}

.hero-bottom {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

.hero-baseline-fixed {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-baseline-fixed::before {
  content: '';
  width: 8px;
  height: 24px;
  background: var(--orange);
}

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.bg-cream .section-head {
  border-bottom-color: var(--gray-200);
}
.section-head .section-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bg-cream .section-head .section-num { color: var(--gray-500); }
.section-head h2 { max-width: 22ch; }

/* =========================================================
   PILLARS — 3 services
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pillar {
  padding: clamp(2rem, 3.5vw, 2.8rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 400ms var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  background: rgba(255, 255, 255, 0.02);
}
.pillar:last-child { border-right: none; }
.pillar:hover {
  background: rgba(0, 163, 158, 0.06);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pillar h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  margin-bottom: 0.75rem;
  color: var(--white);
  max-width: 15ch;
}
.pillar p.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}
.pillar p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  flex-grow: 1;
  line-height: 1.65;
}
.pillar .pillar-more {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 200ms var(--ease);
}
.pillar .pillar-more:hover { color: var(--teal-light); transform: translateX(4px); }

/* =========================================================
   AUDIENCE SECTION — à qui s'adresse CMC
   ========================================================= */
.audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.audience-card {
  background: var(--white);
  color: var(--navy);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 4px;
  position: relative;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
  display: flex;
  flex-direction: column;
}
.bg-navy .audience-card,
.bg-navy-deep .audience-card {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-navy .audience-card:hover,
.bg-navy-deep .audience-card:hover {
  background: rgba(0, 163, 158, 0.08);
  border-color: var(--green);
  transform: translateY(-6px);
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}
.audience-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--navy);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.audience-card h3 {
  color: inherit;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.bg-navy .audience-card h3,
.bg-navy-deep .audience-card h3 { color: var(--white); }

.audience-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  flex-grow: 1;
}
.audience-card li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: inherit;
  opacity: 0.85;
}
.bg-navy .audience-card li,
.bg-navy-deep .audience-card li { border-bottom-color: rgba(255, 255, 255, 0.08); }

.audience-card li:last-child { border-bottom: none; }
.audience-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* =========================================================
   MANIFESTO — brand signature quote
   ========================================================= */
.manifesto {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.manifesto-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.manifesto-quote .quote-char {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  font-style: normal;
}
.manifesto-quote .hi { color: var(--green); }
.manifesto-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 50ch;
  line-height: 1.5;
}
.manifesto-sub .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  margin-right: 0.6em;
  border-radius: 50%;
  vertical-align: middle;
}

/* =========================================================
   PILIERS STRATÉGIQUES — 3 valeurs / preuves
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.value {
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 350ms var(--ease);
}
.value:hover {
  background: rgba(0, 163, 158, 0.06);
  border-color: rgba(0, 163, 158, 0.3);
  transform: translateY(-4px);
}
.value-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 1rem;
}
.value h4 {
  color: var(--white);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.value p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--green);
  color: var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.cta-band.dark {
  background: var(--navy-deep);
  color: var(--white);
  border: 1px solid rgba(0, 163, 158, 0.3);
}
.cta-band.dark h2 { color: var(--white); }
.cta-band h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  max-width: 22ch;
  margin-bottom: 0;
  line-height: 1.1;
}
.cta-band .eyebrow {
  color: var(--navy);
  margin-bottom: 1rem;
}
.cta-band.dark .eyebrow { color: var(--green); }
.cta-band .eyebrow::before { background: var(--orange); }

/* =========================================================
   PAGE INTRO
   ========================================================= */
.page-intro {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-intro .eyebrow { margin-bottom: 2rem; }
.page-intro h1 {
  max-width: 18ch;
  margin-bottom: 2rem;
}
.page-intro .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
  max-width: 55ch;
  padding-left: 1.5rem;
  border-left: 3px solid var(--green);
}

/* =========================================================
   SERVICE DETAIL BLOCKS
   ========================================================= */
.service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.service-block:last-child { border-bottom: none; }

.service-meta .service-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--green);
  padding: 5px 12px;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.service-meta h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  margin-bottom: 1rem;
  color: var(--white);
}
.service-meta .service-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  font-size: 1.05rem;
  line-height: 1.4;
  max-width: 30ch;
}

.service-body p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.service-body p:first-of-type {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.5;
}
.service-body h4 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--green);
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
}
.service-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.service-body ul li {
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.98rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.service-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.9rem;
  color: var(--orange);
  font-weight: 700;
}

/* =========================================================
   TEAM
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.team-card {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 400ms var(--ease);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 163, 158, 0.15);
}
.team-photo {
  aspect-ratio: 4/5;
  width: 100%;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.03); }

.team-body {
  padding: 1.75rem;
}
.team-body h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  text-transform: none;
  letter-spacing: -0.01em;
}
.team-body .role {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.team-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-transform: none;
}
.contact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.contact-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.25;
  font-weight: 600;
}
.contact-value.small {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.contact-value a { color: var(--white); text-decoration: none; }
.contact-value a:hover { color: var(--green); }

.form-wrap {
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 220ms var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-field select { cursor: pointer; color: var(--white); }
.form-field select option { background: var(--navy-deep); color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--green);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
  line-height: 1.6;
}
.footer-brand .footer-baseline {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--green);
  line-height: 1.4;
  max-width: 30ch;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: color 200ms var(--ease);
}
.footer-col a:hover { color: var(--green); }
.footer-col li.muted { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.footer-bottom .accent-bar {
  display: inline-block;
  width: 24px;
  height: 4px;
  background: var(--orange);
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* =========================================================
   CERCLE VERTUEUX — infographic section
   ========================================================= */
.cercle-vertueux {
  background: var(--navy);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.cercle-vertueux-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.cercle-vertueux-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cercle-vertueux-text .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--teal);
  line-height: 1.5;
  max-width: 42ch;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--teal);
}
.cercle-vertueux-text p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 1.25rem;
}
.cercle-vertueux-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cercle-vertueux-img img {
  max-width: 100%;
  width: 425px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  border-radius: 6px;
}

/* =========================================================
   RECRUITMENT CYCLE — Executive Search
   ========================================================= */
.cycle-section {
  background: var(--navy-deep);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cycle-intro {
  max-width: 60ch;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cycle-intro .eyebrow {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cycle-intro h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cycle-intro p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--teal);
  line-height: 1.5;
}

.cycle-wheel {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  aspect-ratio: 1;
  z-index: 2;
}
.cycle-wheel svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cycle-legend {
  max-width: 900px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  position: relative;
  z-index: 2;
}
.cycle-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cycle-legend-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal);
  min-width: 1.75rem;
  padding-top: 0.05rem;
}
.cycle-legend-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.cycle-legend-text strong {
  color: var(--white);
  font-weight: 600;
}

/* =========================================================
   SOCIAL ICONS — for footer
   ========================================================= */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 163, 158, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all 220ms var(--ease);
}
.social-icons a:hover {
  background: var(--teal);
  color: var(--navy-deep);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .cercle-vertueux-grid { grid-template-columns: 1fr; }
  .cycle-legend { grid-template-columns: 1fr; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.9s var(--ease) forwards;
}
.hero-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.18s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.32s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.46s; }

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle floating animation for logo pattern */
@keyframes floatY {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 10px)) rotate(3deg); }
}
.logo-pattern { animation: floatY 12s var(--ease) infinite; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); min-height: auto; }
  .pillar:last-child { border-bottom: none; }
  .audiences { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-baseline-fixed { position: static; margin-top: 2rem; display: inline-flex; }
  .logo-pattern { width: 120%; right: -40%; opacity: 0.06; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { font-size: 0.7rem; }
  .brand-text .tag { font-size: 0.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .logo-pattern { animation: none; }
}
