/* ============================================================
   GP COACHING — STYLE.CSS
   Thème Beige / Bleu marine sobre
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* Fonds */
  --bg-base: #F7F3ED;
  --bg-alt: #F0EBE2;
  --bg-card: #FFFFFF;
  --bg-sand: #EDE7DC;

  /* Bleu marine (nav, footer, CTA) */
  --navy: #1B2B4B;
  --navy-light: #243659;
  --navy-dim: rgba(27, 43, 75, .08);
  --navy-border: rgba(27, 43, 75, .18);

  /* Or / accent */
  --gold: #B8905A;
  --gold-light: #CEAA78;
  --gold-dim: rgba(184, 144, 90, .12);
  --gold-border: rgba(184, 144, 90, .28);

  /* Texte */
  --ink: #1E1A14;
  --ink-60: rgba(30, 26, 20, .6);
  --ink-30: rgba(30, 26, 20, .3);

  /* Vert sauge */
  --sage: #4A6741;
  --sage-dim: rgba(74, 103, 65, .15);

  /* Typographie */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', sans-serif;

  /* Layout */
  --section-py: clamp(72px, 9vw, 110px);
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --max-w: 1160px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --radius: 4px;
}


/* ── LUCIDE ICONS ── */
.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 1.5;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Tailles contextuelles */
.why-icon .lucide,
.valeur-icon .lucide {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
}

.univers-icon .lucide {
  width: 22px;
  height: 22px;
}



.valeur-icon {
  font-size: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg-base);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── TYPOGRAPHIE ── */
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.3;
}

h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--ink);
}

p {
  color: var(--ink-60);
  font-size: .92rem;
  line-height: 1.8;
  font-weight: 300;
}

em {
  font-style: italic;
  color: var(--gold);
}

strong {
  font-weight: 600;
  color: var(--ink);
}

.label {
  display: inline-block;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: .95rem;
  color: var(--ink-60);
  max-width: 540px;
  margin: .75rem auto 0;
}

/* Section heading — remplace le duo label + h2 */
.section-heading {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.01em;
}

/* Sur fond navy (CTA, méthode) */
.final-cta .section-heading,
.methode-section .section-heading {
  color: #1e1a14;
}

/* Version em en italique dorée */
.section-heading em {
  color: var(--gold);
  font-style: italic;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-py) var(--gutter);
}

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

.divider {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 1.75rem 0;
  opacity: .6;
}

.divider.center {
  margin-inline: auto;
}

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s, background .2s, color .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 20px rgba(27, 43, 75, .2);
}

.btn-navy:hover {
  background: var(--navy-light);
  box-shadow: 0 8px 30px rgba(27, 43, 75, .28);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 18px rgba(184, 144, 90, .25);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(184, 144, 90, .35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy-border);
}

.btn-outline:hover {
  background: var(--navy-dim);
  border-color: var(--navy);
}

/* ── LIEN FLÈCHE ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s var(--ease);
}

.link-arrow:hover {
  gap: .85rem;
}

/* ── ANIMATIONS SCROLL ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

/* ============================================================
   HOVER ANIMATIONS
   ============================================================ */

/* hv-lift : monte + ombre (cartes) */
.hv-lift {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.hv-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27, 43, 75, .12);
}

/* hv-lift-sm : montée légère (petits éléments) */
.hv-lift-sm {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.hv-lift-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 43, 75, .09);
}

/* hv-border : bordure or glissante à gauche (items liste) */
.hv-border {
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: border-color .25s var(--ease), padding-left .25s var(--ease), background .25s;
}

.hv-border:hover {
  border-left-color: var(--gold);
  padding-left: 1.35rem;
  background: var(--gold-dim);
}

/* hv-glow : halo or (icônes rondes) */
.hv-glow {
  transition: box-shadow .28s var(--ease), transform .28s var(--ease);
}

.hv-glow:hover {
  box-shadow: 0 0 0 4px var(--gold-dim), 0 4px 16px rgba(184, 144, 90, .2);
  transform: scale(1.06);
}

/*NAV============================================================*/
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 74px;
  width: 100%;
  box-sizing: border-box;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: box-shadow .3s;
  overflow: hidden;
}

#main-nav.scrolled {
  box-shadow: 0 4px 24px rgba(27, 43, 75, .22);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-logo {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-brand-sub,
.footer-brand-sub {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  white-space: nowrap;
}

.nav-brand-sub .brand-initial,
.footer-brand-sub .brand-initial {
  color: var(--gold-light);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  position: relative;
  transition: color .2s;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}


.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: .3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a,
.mobile-nav button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}

.mobile-nav a:hover,
.mobile-nav button:hover {
  color: var(--gold-light);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: var(--gutter);
  font-family: var(--sans) !important;
  font-size: .85rem !important;
  color: rgba(255, 255, 255, .4) !important;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 3.5rem var(--gutter) 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-brand-logo {
  width: 36px;
  height: 36px;

  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo svg {
  width: 17px;
  height: 17px;
  color: var(--gold-light);
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 500;
  color: #fff;
}

.footer-brand-sub {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;

}

.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-nav a {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-right {
  text-align: right;
}

.footer-social {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  transition: background .2s, color .2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-copy {
  font-size: .68rem;
  color: rgba(255, 255, 255, .25);
  margin-top: 2rem;
  text-align: center;
  letter-spacing: .05em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 74px;
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 43, 75, .88) 0%, rgba(27, 43, 75, .55) 50%, rgba(27, 43, 75, .2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: var(--section-py) var(--gutter);
}

.hero h1 {
  color: #fff;
}

.hero h1 .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  max-width: 460px;
  margin-top: 1.5rem;
  line-height: 1.75;
  font-weight: 300;
}

/* Label hero = même taille/style que hero-sub */
.hero-content .label {
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: none;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  font-family: var(--sans);
  margin-bottom: .75rem;
}

.hero-cta {
  margin-top: 2.5rem;
}

/* ── CITATION ── */
.quote-band {
  background: var(--navy);
  padding: 3.5rem var(--gutter);
  text-align: center;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

.quote-text::before {
  content: '\201C';
  color: var(--gold-light);
}

.quote-text::after {
  content: '\201D';
  color: var(--gold-light);
}

.quote-author {
  font-size: .75rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ── UNIVERS ── */
.univers-section {
  background: var(--bg-base);
}

.univers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.univers-card {
  background: var(--bg-card);
  border: 1px solid rgba(27, 43, 75, .08);
  border-bottom: 3px solid var(--u-color, var(--gold));
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-bottom-width .25s;
}

.univers-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(27, 43, 75, .12);
  border-bottom-width: 5px;
}

.univers-card-img {
  height: 200px;
  overflow: hidden;
}

.univers-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.univers-card:hover .univers-card-img img {
  transform: scale(1.04);
}

.univers-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.univers-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}

.univers-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.univers-card:hover .univers-icon {
  transform: scale(1.08);
}

/* Fallback si --u-color non défini */
.univers-card h3 {
  color: var(--ink);
  margin-bottom: .75rem;
}

.univers-card p {
  font-size: .87rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* ── POURQUOI ── */
.why-section {
  background: var(--bg-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(27, 43, 75, .07);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}

.why-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27, 43, 75, .08);
}

.why-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h4 {
  color: var(--ink);
  margin-bottom: .5rem;
}

/* ============================================================
   MON APPROCHE
   ============================================================ */
.approach-hero {
  padding-top: 120px;
  padding-bottom: var(--section-py);
  background: var(--bg-base);
}

.approach-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.approach-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--navy-border);
  box-shadow: 0 16px 48px rgba(27, 43, 75, .1);
}

.approach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.approach-photo:hover img {
  transform: scale(1.03);
}

.approach-content h2 {
  color: var(--ink);
}

.approach-content p {
  margin-top: 1rem;
}

/* Philosophie */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  text-align: center;
}

.philo-step {
  padding: 1.5rem 1rem;
}

.philo-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--bg-card);
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}

.philo-icon .lucide {
  width: 26px;
  height: 26px;
}

.philo-step:hover .philo-icon {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.08);
}

.philo-step:hover .philo-icon .lucide {
  stroke: #fff;
}

.philo-step h4 {
  color: var(--ink);
  margin-bottom: .3rem;
  transition: color .25s;
}

.philo-step:hover h4 {
  color: var(--navy);
}

/* Mission / Conviction */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  transition: box-shadow .25s, transform .25s var(--ease);
}

.mission-card:hover {
  box-shadow: 0 10px 32px rgba(27, 43, 75, .09);
  transform: translateY(-3px);
}

.mission-card h4 {
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .7rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  color: var(--ink);
  margin-bottom: 1rem;
}

/* Méthode GPACE */
.methode-section {
  background: var(--navy);
}

.methode-section .label {
  color: var(--gold-light);
}

.methode-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff;
}

.methode-title em {
  color: var(--gold-light);
  font-style: italic;
}

.methode-section .section-intro {
  color: rgba(255, 255, 255, .6);
}

.methode-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.methode-steps::before {
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, .15);
}

.methode-step {
  text-align: center;
  padding: 0 .75rem;
  position: relative;
}

.methode-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}

.methode-step:hover .methode-dot {
  background: var(--gold);
  border-color: var(--gold-light);
  transform: scale(1.1);
}

.methode-step h4 {
  color: #fff;
  margin-bottom: .4rem;
  font-size: .87rem;
}

.methode-step-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5;
}

.methode-arrow {
  position: absolute;
  top: 20px;
  right: -12px;
  z-index: 2;
  color: rgba(255, 255, 255, .3);
  font-size: .8rem;
}

/* ============================================================
   ACCOMPAGNEMENT
   ============================================================ */
.accompagner-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--bg-base);
  text-align: center;
}

.accompagner-hero h1 {
  color: var(--ink);
}

.accompagner-hero .section-intro {
  color: var(--ink-60);
}

.service-full-card h2 {
  color: var(--ink);
}

.service-full-card p {
  margin-top: 1rem;
}

/* Parcours */
.parcours-section {
  background: var(--bg-base);
  text-align: center;
}

.parcours-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
  padding-bottom: 1rem;
}

.parcours-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.parcours-step::after {
  content: '→';
  position: absolute;
  top: 14px;
  right: -12px;
  color: var(--gold);
  font-size: .9rem;
}

.parcours-step:last-child::after {
  display: none;
}

.parcours-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s;
  overflow: visible;
}

.parcours-step:hover .parcours-dot {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 0 0 5px var(--bg-base), 0 0 0 6px var(--navy-border);
}

.parcours-step h4 {
  font-size: .82rem;
  color: var(--ink);
  line-height: 1.4;
}

/* Valeurs */
.valeurs-bar {
  background: var(--bg-sand);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 4rem var(--gutter);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.valeur-item {
  text-align: center;
}



.valeur-item h4 {
  color: var(--ink);
  margin-bottom: .4rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--bg-base);
  text-align: center;
}

.contact-hero h1 {
  color: var(--ink);
}

.contact-layout {
  background: var(--bg-alt);
  padding: var(--section-py) var(--gutter);
}

.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: var(--ink);
}

.contact-info-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .25s, transform .25s var(--ease);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--navy);
  color: #fff;
  transform: scale(1.08);
}

.contact-info-text strong {
  font-size: .9rem;
  color: var(--ink);
  display: block;
}

.contact-info-text span {
  font-size: .82rem;
  color: var(--ink-60);
}

.contact-photo {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--navy-border);
  box-shadow: 0 8px 32px rgba(27, 43, 75, .07);
  transition: box-shadow .3s var(--ease);
}

.contact-photo:hover {
  box-shadow: 0 16px 48px rgba(27, 43, 75, .12);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.contact-photo:hover img {
  transform: scale(1.03);
}

.contact-form-wrap h2 {
  color: var(--ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-group label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(27, 43, 75, .15);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 43, 75, .08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-30);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.rdv-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: center;
}

.rdv-box h3 {
  color: #fff;
  margin-bottom: .75rem;
}

.rdv-box p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.5rem;
}

/* Alertes PHP */
.form-alert {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .88rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.form-alert-error {
  background: rgba(180, 60, 60, .07);
  border: 1px solid rgba(180, 60, 60, .25);
  color: #b44040;
}

.form-alert ul {
  margin-left: 1.2rem;
}

.form-alert li {
  margin-bottom: .25rem;
}

.form-success {
  background: var(--bg-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  border-top: 3px solid var(--sage);
  padding: 3rem 2.5rem;
  text-align: center;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sage-dim);
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sage);
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  color: var(--ink);
  margin-bottom: .75rem;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  background: var(--bg-sand);
  border-top: 1px solid var(--navy-border);
  padding: var(--section-py) var(--gutter);
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--ink);
}

.final-cta p {
  margin: 1rem auto 0;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

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

  .approach-photo {
    max-width: 360px;
    aspect-ratio: 4/5;
  }

  .service-full-card.img-right,
  .service-full-card.img-left {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right,
  .footer-social {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

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

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

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

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

  .methode-steps {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .methode-steps::before,
  .methode-arrow {
    display: none;
  }

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

  .parcours-steps {
    flex-direction: column;
    align-items: center;
  }

  .parcours-step::after {
    display: none;
  }

  .nav-links,
  .nav-social {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-nav {
    display: none;
  }

  /* Logo + titre conservés, slogan masqué */
  .nav-brand {
    display: flex;
  }

  .nav-brand-logo img {
    width: 32px;
    height: 32px;
  }

  .nav-brand-name {
    font-size: .9rem;
  }

  .nav-brand-sub {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .methode-steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SECTIONS UNIVERS PLEIN FORMAT (accompagnement.php)
   ============================================================ */
.univers-section-full {
  padding: var(--section-py) var(--gutter);
}

.usf-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--navy-border);
}

.usf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.usf-grid.img-right .usf-img {
  order: 2;
}

.usf-grid.img-right .usf-content {
  order: 1;
}

.usf-sous-sep {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--navy-border);
}

.usf-img {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  aspect-ratio: 4/3;
  border: 1px solid var(--navy-border);
  box-shadow: 0 12px 40px rgba(27, 43, 75, .1);
}

.usf-img>img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* .usf-img-badge { L1717 — badge logo sur image univers
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(27, 43, 75, .15);
  border: 1px solid var(--navy-border);
} */

.usf-label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.usf-titre {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.usf-accroche {
  font-size: 1rem;
  color: var(--ink-60);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.usf-sous-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.usf-sous-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.usf-content h3 {
  margin-bottom: 1.25rem;
}

.usf-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}

.usf-points li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: var(--ink-60);
  line-height: 1.55;
}

.usf-points li .lucide {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
}

.usf-cta {
  box-shadow: 0 4px 18px rgba(30, 26, 20, .15);
  transition: transform .25s var(--ease), box-shadow .25s, filter .25s;
}

.usf-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 26, 20, .2);
  filter: brightness(1.08);
}

/* Responsive */
@media (max-width: 900px) {
  .usf-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .usf-grid.img-right .usf-img,
  .usf-grid.img-right .usf-content {
    order: unset;
  }

  .usf-img-badge {
    bottom: -14px;
    right: -14px;
  }
}

/* ============================================================
   MÉTHODE GPACE — titre "Ma Méthode" + "avec" en blanc
   ============================================================ */
.methode-pre-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.25rem;
  font-style: normal;
}

.methode-avec {
  color: #fff;
  font-style: normal;
  font-size: inherit;
}

/* ============================================================
   PARCOURS ADAPTÉ — icônes blanches + hover navy
   ============================================================ */
.parcours-dot .lucide {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  transition: stroke .25s;
}

.parcours-step:hover .parcours-dot .lucide {
  stroke: #fff;
}

/* ============================================================
   SECTION MISE EN AVANT — index.php
   ============================================================ */
.mise-en-avant {
  background: var(--bg-card);
  padding: var(--section-py) var(--gutter);
  border-bottom: 1px solid var(--navy-border);
}

.mea-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.mea-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--navy-border);
  box-shadow: 0 8px 32px rgba(27, 43, 75, .08);
}

.mea-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mea-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mea-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mea-titre {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--ink);
  line-height: 1.25;
}

.mea-texte {
  font-size: .92rem;
  color: var(--ink-60);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mea-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   PAGE RGPD
   ============================================================ */
/* Page RGPD — désactiver fade-up, forcer visibilité */
.page-rgpd .fade-up {
  opacity: 1 !important;
  transform: none !important;
}

.mentions-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--bg-base);
}

.mentions-content {
  background: var(--bg-alt);
  padding: var(--section-py) var(--gutter);
}

.mentions-inner {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--ink);
  max-width: 780px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--navy-border);
  padding: 3rem;
}

.mentions-inner h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy) !important;
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--gold-border);
  display: block;
  visibility: visible;
  opacity: 1;
}

.mentions-inner h2:first-child {
  margin-top: 0;
}

.mentions-inner h3 {
  font-size: 1rem;
  color: var(--ink) !important;
  margin: 1.25rem 0 .5rem;
}

.mentions-inner p {
  color: var(--ink-60) !important;
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: .75rem;
  display: block;
  visibility: visible;
  opacity: 1;
}

.mentions-inner ul {
  margin-left: 1.5rem;
  margin-bottom: .75rem;
  display: block;
}

.mentions-inner ul li {
  color: var(--ink-60) !important;
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: .25rem;
  list-style: disc;
}

.mentions-inner a {
  color: var(--gold);
}

.mentions-inner br {
  display: block;
}

/* ── LIGHTBOX ── */
.lightbox-trigger {
  cursor: zoom-in;
  position: relative;
}

.lightbox-hint {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}

.lightbox-hint .lucide {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.lightbox-trigger:hover .lightbox-hint {
  opacity: 1;
}

.lightbox-trigger:hover img {
  transform: scale(1.03);
}