/* ═══════════════════════════════════════════════════════════════════
   ATOM Coaching & Consulting — pages/individuel.css
═══════════════════════════════════════════════════════════════════ */


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

:root {
  --ivory:    #FAF6F0;
  --sand:     #F0E8D8;
  --peach:    #E8C4A8;
  --peach-lt: #F4DCC8;
  --terra:    #C4785A;
  --terra-dk: #A85A3C;
  --brown:    #8B6B55;
  --brown-lt: #B09080;
  --deep:     #3D2B1F;
  --rule:     #D4B898;
  --nav-h:    64px;
}

html { scroll-behavior: smooth; }

section {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

body {
  background: var(--ivory);
  font-family: 'Jost', sans-serif;
  color: var(--deep);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--rule);
  animation: fadeDown 0.7s ease both;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--deep);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.46rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  line-height: 1;
}

.nav-center {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-center a {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-center a:hover { color: var(--terra); }

/* Active page indicator */
.nav-active {
  color: var(--terra) !important;
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--terra);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 6rem 3.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.8s 0.15s ease both;
  opacity: 0;
}
.eyebrow-rule { width: 28px; height: 1px; background: var(--terra); flex-shrink: 0; }
.eyebrow-text {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.28s ease both;
  opacity: 0;
}
.hero-h1 em { font-style: italic; color: var(--terra); font-weight: 300; }

.h-rule {
  width: 48px; height: 1.5px;
  background: var(--terra);
  margin-bottom: 2rem;
  transform-origin: left;
  animation: growRule 0.7s 0.45s ease both;
  opacity: 0;
}

.hero-intro {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--brown);
  margin-bottom: 1.5rem;
  max-width: 50ch;
  animation: fadeUp 0.8s 0.55s ease both;
  opacity: 0;
}
.hero-intro strong { color: var(--deep); font-weight: 500; }

.hero-intro-para {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown);
  max-width: 50ch;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.65s ease both;
  opacity: 0;
}

/* Mention présentiel / distance */
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.72s ease both;
  opacity: 0;
}
.hero-location-line { width: 20px; height: 0.5px; background: var(--rule); flex-shrink: 0; }
.hero-location-text {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-lt);
}

.badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.78s ease both;
  opacity: 0;
}
.badge {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  border: 0.5px solid var(--terra);
  padding: 0.42rem 0.9rem;
  border-radius: 1px;
  white-space: nowrap;
  cursor: default;
  transition: all 0.2s;
}
.badge:hover { background: var(--terra); color: var(--ivory); }

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.8s 0.9s ease both;
  opacity: 0;
}
.sh-line { width: 20px; height: 1px; background: var(--rule); }
.sh-text {
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-lt);
}
.sh-arrow {
  color: var(--terra);
  font-size: 0.85rem;
  animation: nudge 2.5s 2.5s ease-in-out infinite;
  display: inline-block;
}

.hero-right {
  background: var(--sand);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.corner-accent {
  position: absolute;
  top: 0; right: 0;
  width: 58%; height: 36%;
  background: var(--peach-lt);
  z-index: 0;
}
.v-rule {
  position: absolute;
  left: 0; top: 10%; bottom: 80px;
  width: 0.5px;
  background: linear-gradient(to bottom, transparent, var(--rule) 15%, var(--rule) 85%, transparent);
  z-index: 1;
}
.year-stamp {
  position: absolute;
  top: 2rem; left: 1.5rem;
  z-index: 3;
  animation: fadeIn 1s 1s ease both;
  opacity: 0;
}
.ys-inner { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ys-line { width: 0.5px; height: 24px; background: var(--terra); opacity: 0.35; }
.ys-text {
  font-size: 0.46rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: 0.55;
  writing-mode: vertical-rl;
}

.portrait-zone {
  position: relative;
  z-index: 2;
  width: 66%;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 2rem;
  animation: fadeUp 0.9s 0.35s ease both;
  opacity: 0;
}
.portrait-img {
  width: 100%;
  flex: 1;
  min-height: 380px;
  background: linear-gradient(145deg, var(--peach) 0%, #C8906A 45%, #9A5A38 100%);
  border-radius: 2px 2px 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
}
.portrait-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.2) 0%, transparent 55%);
}
/* ── Photo réelle (test intégration v2.63) ─────────────── */
.portrait-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  z-index: 0;
}
.portrait-img.has-image { background: var(--deep); }
.portrait-img.has-image::after {
  background: linear-gradient(to top, rgba(61,43,31,0.35) 0%, rgba(61,43,31,0.05) 40%, transparent 70%);
  z-index: 1;
}
.portrait-caption {
  position: absolute;
  right: 0.55rem;
  bottom: 0.35rem;
  z-index: 2;
  font-family: 'Jost', sans-serif;
  font-size: 0.38rem;
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.22);
  text-shadow: 0 1px 1px rgba(61, 43, 31, 0.18);
  pointer-events: none;
  user-select: none;
}
.ph-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(250,246,240,0.15);
  border: 1px solid rgba(250,246,240,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; z-index: 1;
}
.ph-icon svg { width: 24px; height: 24px; fill: rgba(250,246,240,0.4); }
.ph-label {
  font-size: 0.52rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.4);
  position: relative; z-index: 1;
}
.identity-strip {
  background: var(--ivory);
  border-top: 2px solid var(--terra);
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.id-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.id-role {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}
.id-cert {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--brown);
  text-align: right;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   SECTION 2 — APPROCHE
═══════════════════════════════════════════════════ */
#approche-ind {
  padding: 7rem 3.5rem;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}
.section-eyebrow-rule { width: 28px; height: 1px; background: var(--terra); }
.section-eyebrow-text {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.section-h2 em { font-style: italic; color: var(--terra); }

.section-rule { width: 40px; height: 1px; background: var(--rule); margin-bottom: 1.8rem; }

.apropos-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.apropos-text strong { color: var(--deep); font-weight: 500; }

/* Mention cadre éthique — discrète */
.cadre-note {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-left: 1.5px solid var(--rule);
  background: rgba(250,246,240,0.5);
}
.cadre-note-text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--brown-lt);
  font-style: italic;
}

.apropos-right { position: relative; }
.quote-block {
  background: var(--ivory);
  border-left: 2px solid var(--terra);
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  position: relative;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--terra);
  opacity: 0.18;
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  font-weight: 300;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--deep);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.quote-attr {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
}
.quote-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 50%;
  background: var(--peach-lt);
  z-index: -1;
}

/* ═══════════════════════════════════════════════════
   SECTION 3 — ACCOMPAGNEMENT
═══════════════════════════════════════════════════ */
#accompagnement-ind {
  padding: 7rem 3.5rem;
  background: var(--ivory);
}

.section-header {
  max-width: 56ch;
  margin-bottom: 4.5rem;
}

.domaines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--rule);
}

.domaine-card {
  background: var(--ivory);
  padding: 2.8rem 2.5rem;
  position: relative;
  transition: background 0.3s ease, transform 0.32s ease, box-shadow 0.32s ease;
  cursor: default;
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.domaine-card:nth-child(2n) { border-right: none; }
.domaine-card:nth-last-child(-n+2) { border-bottom: none; }
.domaine-card:hover {
  background: var(--sand);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(61, 43, 31, 0.07);
  z-index: 1;
}

.domaine-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--terra);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  transition: opacity 0.35s ease;
}
.domaine-card:hover .domaine-num { opacity: 0.28; }

.domaine-label {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.domaine-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 1.2rem;
  position: relative;
}
.domaine-title::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 0.5px;
  background: var(--rule);
  transition: width 0.45s ease;
}
.domaine-card:hover .domaine-title::after { width: 48px; }

.domaine-rule { width: 32px; height: 1px; background: var(--terra); margin-bottom: 1.2rem; }

.domaine-text {
  font-size: 0.855rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--brown);
}

/* ═══════════════════════════════════════════════════
   SECTION 4 — MÉTHODE
═══════════════════════════════════════════════════ */
#methode-ind {
  padding: 7rem 3.5rem;
  background: var(--sand);
}
.methode-header {
  max-width: 60ch;
  margin-bottom: 4.5rem;
}
.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--rule);
}
.methode-card {
  background: var(--ivory);
  padding: 2.8rem 2.5rem;
  position: relative;
  transition: background 0.3s ease, transform 0.32s ease, box-shadow 0.32s ease;
  cursor: default;
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.methode-card:nth-child(2n) { border-right: none; }
.methode-card:nth-last-child(-n+2) { border-bottom: none; }
.methode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: transparent;
  transition: background 0.35s ease;
  z-index: 1;
}
.methode-card:hover::before { background: rgba(196, 120, 90, 0.45); }
.methode-card:hover {
  background: #F7F2EB;
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(61, 43, 31, 0.07);
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   SECTION 5 — BÉNÉFICES
═══════════════════════════════════════════════════ */
#benefices-ind {
  padding: 7rem 3.5rem;
  background: var(--ivory);
}

.benefices-intro {
  max-width: 64ch;
  margin-bottom: 4rem;
}

.benefices-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--deep);
  border-left: 1.5px solid var(--terra);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.benefices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
  margin-bottom: 4rem;
}

.benefice-item {
  background: var(--ivory);
  padding: 2rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.benefice-item:hover {
  background: var(--sand);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(61, 43, 31, 0.055);
  z-index: 1;
}

.ben-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terra);
  opacity: 0.45;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.ben-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.ben-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--brown-lt);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   LÉGITIMITÉ
═══════════════════════════════════════════════════ */
.legitimite-section {
  padding: 5rem 3.5rem;
  background: var(--ivory);
  border-top: 0.5px solid var(--rule);
}
.legitimite-inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 4rem;
  align-items: start;
}
.legitimite-label {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.legitimite-rule { width: 28px; height: 1px; background: var(--rule); }
.legitimite-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown);
}
.legitimite-sub {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--brown-lt);
  line-height: 1.7;
}
.legitimite-sub strong { color: var(--deep); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   SECTION 6 — CONTACT
═══════════════════════════════════════════════════ */
#contact-ind {
  padding: 7rem 3.5rem 5rem;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.contact-cta-text em { font-style: italic; color: var(--terra); }

.contact-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--brown);
  margin-bottom: 2.5rem;
  max-width: 44ch;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--terra);
  color: var(--ivory);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 1px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.contact-btn:hover { background: var(--terra-dk); }
.contact-btn-arrow { font-size: 0.9rem; }

.contact-right { padding-top: 0.5rem; }

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 0.5px solid var(--rule);
}
.contact-info-item:first-child { border-top: 0.5px solid var(--rule); }

.ci-label {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}
.ci-value {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--deep);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}
a.ci-value:hover { color: var(--terra); }

/* Body text générique */
.body-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown);
  max-width: 64ch;
}


.footer-legal-sep { width: 0.5px; height: 10px; background: rgba(255,255,255,0.08); }


/* ─── Consentement RGPD ─── */
.form-rgpd {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}
.form-rgpd input[type="checkbox"] {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--terra);
  cursor: pointer;
}
.form-rgpd label {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--brown-mid, #7a6050);
  cursor: pointer;
}
.form-rgpd label a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.form-rgpd label a:hover { opacity: 1; }
.form-rgpd input[type="checkbox"]:invalid:not(:focus) + label {
  color: var(--terra);
}
/* ═══════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes growRule {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   MOBILE BURGER
═══════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  z-index: 210;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg) scaleX(0.72); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg) scaleX(0.72); }

/* ═══════════════════════════════════════════════════
   MOBILE MENU PANEL
═══════════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  border-bottom: 1.5px solid var(--terra);
  z-index: 199;
  padding: 2rem 2rem 2.5rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  border-bottom: 0.5px solid var(--rule);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--terra); }
.mob-active { color: var(--terra) !important; }

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1150px) {
  :root { --nav-h: 58px; }

  .nav-center { display: none; }
  .nav-burger { display: flex; }
  nav { padding: 0 1.5rem; }
  .mobile-menu { display: block; }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    height: 48vw;
    min-height: 240px;
    max-height: 360px;
    order: -1;
  }
  .hero-left { padding: 2.5rem 1.5rem 3rem; }
  .hero-h1 { font-size: 2.6rem; }
  .portrait-zone { width: 52%; }

  #approche-ind {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }
  .section-h2 { font-size: 2rem; }

  #accompagnement-ind { padding: 4rem 1.5rem; }
  .domaines-grid { grid-template-columns: 1fr; }

  #methode-ind { padding: 4rem 1.5rem; }
  .methode-grid { grid-template-columns: 1fr; }

  .domaines-grid .domaine-card,
  .methode-grid .methode-card {
    border-right: none;
    border-bottom: 0.5px solid var(--rule);
  }
  .domaines-grid .domaine-card:last-child,
  .methode-grid .methode-card:last-child {
    border-bottom: none;
  }

  #benefices-ind { padding: 4rem 1.5rem; }
  .benefices-grid { grid-template-columns: 1fr; }

  .legitimite-section { padding: 3rem 1.5rem; }
  .legitimite-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #contact-ind {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem 3rem;
  }
  .contact-cta-text { font-size: 1.8rem; }

  
  
  

  .modal-box { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .apropos-right { margin-top: 1rem; }
  .quote-deco { display: none; }

  .domaines-grid .domaine-card:hover,
  .methode-grid .methode-card:hover,
  .benefice-item:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .hero-h1 { font-size: 2.1rem; }
  .section-h2 { font-size: 1.75rem; }
  .contact-cta-text { font-size: 1.5rem; }
  .modal-box { padding: 1.5rem 1.25rem; }
}

/* ─── MODAL ──────────────────────────────────────────────────── */
/* ─── MODAL OVERLAY ──────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(61, 43, 31, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ─── MODAL BOX ──────────────────────────────── */
.modal-box {
  background: var(--ivory);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem 3rem 2.5rem;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--terra);
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

/* ─── CLOSE BUTTON ───────────────────────────── */
.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: opacity 0.2s ease;
}
.modal-close:hover {
  opacity: 0.65;
}
.modal-close span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--deep);
  transition: background 0.2s ease, transform 0.3s ease;
  transform-origin: center;
}
.modal-close span:first-child {
  transform: translateY(3px) rotate(45deg) scaleX(0.72);
}
.modal-close span:last-child {
  transform: translateY(-3px) rotate(-45deg) scaleX(0.72);
}
.modal-close:hover span {
  background: var(--terra);
}

/* ─── MODAL HEADER ───────────────────────────── */
.modal-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.modal-eyebrow-rule { width: 22px; height: 1px; background: var(--terra); flex-shrink: 0; }
.modal-eyebrow span {
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 0.75rem;
}
.modal-title em { font-style: italic; color: var(--terra); }
.modal-subtitle {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--rule);
}

/* ─── FORM ───────────────────────────────────── */
.modal-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-label {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
}
.form-optional {
  font-weight: 300;
  color: var(--brown-lt);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7em;
}

.form-input {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--deep);
  background: var(--sand);
  border: 0.5px solid var(--rule);
  border-radius: 1px;
  padding: 0.75rem 1rem;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.form-input::placeholder { color: var(--brown-lt); opacity: 0.7; }
.form-input:focus {
  border-color: var(--terra);
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(196,120,90,0.07);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.65;
}

/* ─── FORM FOOTER ────────────────────────────── */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--terra);
  color: var(--ivory);
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: 1px;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.form-submit:hover { background: var(--terra-dk); }
.form-submit-arrow { font-size: 0.9rem; }

/* ─── SUCCESS STATE ──────────────────────────── */
.modal-success {
  text-align: center;
  padding: 2rem 0;
}
.success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.2rem;
  color: var(--terra);
}
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 0.75rem;
}
.success-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.7;
}


  /* ── Focus visible (accessibilité clavier) ── */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--terra);
    outline-offset: 3px;
    border-radius: 2px;
  }


/* ── Classes utilitaires (autosuffisance locale) ── */
.is-hidden          { display: none; }
.mt-1               { margin-top: 1rem; }
.mt-1-2             { margin-top: 1.2rem; }
.mt-2               { margin-top: 2rem; }

/* ═══════════════════════════════════════════════════
   FOOTER — Composant unifié ATOM v2.35
═══════════════════════════════════════════════════ */
footer {
  background: var(--deep);
  overflow: hidden;
}

.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
}

.footer-inner {
  padding: 1.75rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(212, 184, 152, 0.12);
  flex-wrap: nowrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ivory);
  line-height: 1;
}

.footer-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.48rem;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra);
  line-height: 1;
}

.footer-coords {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 0.65rem;
  justify-content: flex-end;
  flex-shrink: 1;
  min-width: 0;
}

.footer-coord {
  font-family: 'Jost', sans-serif;
  font-size: 0.67rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(240, 232, 216, 0.62);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

a.footer-coord:hover { color: var(--ivory); }

.footer-coord-sep {
  font-size: 0.5rem;
  color: rgba(212, 184, 152, 0.2);
  user-select: none;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 0.8rem 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.09em;
  color: rgba(240, 232, 216, 0.62);
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
}

.footer-legal a {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.09em;
  color: rgba(240, 232, 216, 0.62);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-legal a:hover { color: var(--ivory); }
.footer-legal a.current { color: rgba(240, 232, 216, 0.65); }

/* ── Tablette : coordonnées passent sous le logo ── */
@media (max-width: 920px) {
  .footer-inner {
    flex-wrap: wrap;
    padding: 1.5rem 0 1.1rem;
    gap: 0.75rem;
  }
  .footer-coords {
    width: 100%;
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* ── Mobile : colonne, séparateurs supprimés ── */
@media (max-width: 520px) {
  .footer-coords {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .footer-coord-sep { display: none; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.7rem 0 1rem;
  }
  .footer-copy,
  .footer-coord { font-size: 0.65rem; letter-spacing: 0.04em; }
  .footer-legal { gap: 0.9rem; }
  .footer-legal a { font-size: 0.65rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DÉFINITIF — v2.69 (individuel)
═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1150px) {
  .methode-grid       { grid-template-columns: 1fr !important; }
  .legitimite-inner   { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .portrait-img       { min-height: unset; flex: 1; }

  .methode-grid .methode-card {
    border-right: none;
    border-bottom: 0.5px solid var(--rule);
  }
  .methode-grid .methode-card:last-child { border-bottom: none; }
  .methode-card:hover,
  .methode-grid .methode-card:hover { transform: none; box-shadow: none; }

  /* HERO-RIGHT : refonte carte éditoriale sobre */
  .v-rule       { display: none; }
  .year-stamp   { display: none; }
  .corner-accent { display: none; }

  .hero-right {
    width: 100%;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    order: -1;
    background: var(--sand);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
  }

  .portrait-zone {
    width: 100% !important;
    padding-top: 0;
    flex: none;
    display: flex;
    flex-direction: column;
  }

  .portrait-img {
    width: 100%;
    height: 42vw;
    min-height: 200px;
    max-height: 320px;
    flex: none;
    border-radius: 0;
  }

  .identity-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 0.9rem 1.5rem;
    border-top: 2px solid var(--terra);
    background: var(--ivory);
  }

  .id-cert { display: none; }

  .id-name {
    font-size: 1rem;
    margin-bottom: 0.15rem;
    white-space: nowrap;
  }
  .id-role {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  #approche-ind     { padding-left: 2rem; padding-right: 2rem; grid-template-columns: 1fr; gap: 2rem; }
  #accompagnement-ind { padding-left: 2rem; padding-right: 2rem; }
  #methode-ind      { padding: 4.5rem 2rem; }
  #benefices-ind    { padding-left: 2rem; padding-right: 2rem; }
  .legitimite-section { padding: 3.5rem 2rem; }
  #contact-ind      { padding-left: 2rem; padding-right: 2rem; grid-template-columns: 1fr; gap: 2rem; }
  .domaine-card     { padding: 2.2rem 1.8rem; }
  .benefices-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .portrait-img     { height: 52vw; max-height: 280px; }
  #methode-ind      { padding: 3.5rem 1.5rem; }
  .legitimite-section { padding: 2.5rem 1.5rem; }
  .domaine-card     { padding: 2rem 1.5rem; }
  .identity-strip   { padding: 0.85rem 1rem; gap: 0.8rem; }
  .id-name          { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .portrait-img {
    height: 58vw;
    min-height: 180px;
    max-height: 240px;
  }
  .identity-strip { padding: 0.75rem 1rem; }

  #approche-ind,
  #accompagnement-ind,
  #methode-ind,
  #benefices-ind,
  .legitimite-section,
  #contact-ind {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .benefice-item { padding: 1.4rem 1rem; }
  .domaine-card  { padding: 1.8rem 1rem; }
  .methode-card  { padding: 1.8rem 1rem; }
}
