/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --sage: #7A9E7E;
  --sage-l: #B8D4BB;
  --sage-p: #EEF5EE;
  --forest: #2D4A3E;
  --forest-d: #1e3530;
  --beige: #F7F2EA;
  --beige-m: #E8E0D0;
  --beige-d: #D8CEBC;
  --cream: #FFFDF8;
  --stone: #6B6559;
  --stone-l: #9A9189;
  --terra: #B8714E;
  --terra-d: #9e5f3e;
  --warm: #F2EBE0;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --nav-h: 64px;
  --radius: 8px;
  --shadow: 0 4px 32px rgba(45,74,62,.08);
  --shadow-lg: 0 8px 48px rgba(45,74,62,.12);

  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,253,248,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-m);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-brand em { color: var(--sage); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--stone);
  letter-spacing: .01em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--forest); }

.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 3px;
  letter-spacing: .04em;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--terra-d) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.nav-mobile.open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.nav-mobile a {
  display: block;
  padding: 1.125rem 0;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--forest);
  border-bottom: 1px solid var(--beige-m);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--terra); }
.nav-mobile .nav-cta-m {
  margin-top: 2rem;
  display: block;
  background: var(--terra);
  color: var(--white) !important;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--beige);
  display: flex;
  align-items: center;
}

/* Lumières organiques animées */
.hero-light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-light-1 {
  width: 70%; height: 80%;
  top: -10%; right: -10%;
  background: radial-gradient(ellipse, rgba(255,253,240,.95) 0%, transparent 70%);
  animation: heroL1 16s ease-in-out infinite alternate;
}
.hero-light-2 {
  width: 55%; height: 70%;
  bottom: -15%; left: -5%;
  background: radial-gradient(ellipse, rgba(184,212,187,.28) 0%, transparent 65%);
  animation: heroL2 20s ease-in-out infinite alternate;
}
.hero-light-3 {
  width: 40%; height: 60%;
  top: 10%; left: 25%;
  background: radial-gradient(ellipse, rgba(255,248,235,.7) 0%, transparent 65%);
  animation: heroL3 13s ease-in-out infinite alternate;
}
.hero-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .28;
  pointer-events: none;
}
.hero-ray {
  position: absolute;
  top: -10%; width: 1px; height: 130%;
  background: linear-gradient(180deg,transparent 0%,rgba(200,169,110,.35) 30%,rgba(200,169,110,.25) 60%,transparent 100%);
  transform-origin: top center;
}
.hero-ray:nth-child(1) { left: 20%; transform: rotate(8deg); animation: rayF 18s ease-in-out infinite alternate; }
.hero-ray:nth-child(2) { left: 37%; transform: rotate(3deg); animation: rayF 24s ease-in-out infinite alternate; animation-delay: -4s; }
.hero-ray:nth-child(3) { left: 56%; transform: rotate(-5deg); animation: rayF 20s ease-in-out infinite alternate; animation-delay: -9s; }
.hero-ray:nth-child(4) { left: 72%; transform: rotate(6deg); animation: rayF 15s ease-in-out infinite alternate; animation-delay: -3s; }

@keyframes heroL1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-4%,5%) scale(1.08); } }
@keyframes heroL2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(5%,-6%) scale(1.1); } }
@keyframes heroL3 { 0% { transform: translate(0,0) scale(1); opacity: .7; } 100% { transform: translate(3%,4%) scale(.9); opacity: 1; } }
@keyframes rayF { 0% { opacity: .2; } 50% { opacity: .5; } 100% { opacity: .25; } }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--terra);
  display: inline-block;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 2.5rem;
}
.hero h1 em { font-style: italic; color: var(--sage); }

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--forest);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 3px;
  letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: #3d6357; transform: translateY(-1px); }

.btn-ghost {
  font-size: 13px;
  color: var(--stone);
  border-bottom: 1px solid var(--beige-d);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--forest); border-color: var(--stone); }

.hero-text {
  border-left: 2px solid var(--sage-l);
  padding-left: 1.75rem;
}
.hero-text p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
}
.hero-text p + p { margin-top: 1rem; }
.hero-text p.accent { font-style: italic; color: var(--forest); }
.hero-text .divider {
  width: 28px; height: 1px;
  background: var(--sage);
  margin: 1.5rem 0;
  opacity: .6;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone-l);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 16px; height: 16px; stroke: var(--stone-l); fill: none; stroke-width: 1.5; }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }

/* ═══════════════════════════════════════════
   CITATION
═══════════════════════════════════════════ */
.citation {
  background: var(--forest);
  padding: 3rem 2rem;
  text-align: center;
}
.citation blockquote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}
.citation blockquote::before {
  content: '\201C';
  font-size: 52px;
  color: var(--sage-l);
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
  opacity: .5;
  font-style: normal;
}

/* ═══════════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════════ */
.section {
  padding: 6rem 2rem;
}
.section-warm { background: var(--warm); }
.section-beige { background: var(--beige); }
.section-forest { background: var(--forest); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .5rem;
  display: block;
}
.stag-light { color: rgba(255,255,255,.5); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.section-title-light { color: var(--white); }

.body-text {
  font-size: 15px;
  line-height: 1.95;
  color: var(--stone);
}
.body-text + .body-text { margin-top: .875rem; }

/* ═══════════════════════════════════════════
   APPROCHE
═══════════════════════════════════════════ */
.approche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.quote-block {
  border-left: 2px solid var(--terra);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.65;
}

.approche-note {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   POUR QUI
═══════════════════════════════════════════ */
.pourqui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pourqui-card {
  background: var(--cream);
  border: 1px solid var(--beige-m);
  border-radius: var(--radius);
  padding: 1.375rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pourqui-card:hover {
  border-color: var(--sage-l);
  box-shadow: var(--shadow);
}
.pourqui-card:last-child {
  grid-column: 1 / -1;
}

.pourqui-icon {
  width: 36px; height: 36px;
  background: var(--sage-p);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pourqui-icon svg {
  width: 17px; height: 17px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
}
.pourqui-card span { font-size: 14px; color: var(--stone); line-height: 1.6; }

/* ═══════════════════════════════════════════
   PARCOURS
═══════════════════════════════════════════ */
.parcours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}

.parcours-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.parcours-photo {
  width: 175px;
  height: 220px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 10px;
  border: 1px solid var(--beige-m);
  filter: brightness(1.02) saturate(.95);
}
.parcours-photo-name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--forest);
  text-align: center;
  line-height: 1.4;
}
.parcours-photo-sub {
  font-size: 11px;
  color: var(--sage);
  text-align: center;
  letter-spacing: .03em;
}

.parcours-text p { font-size: 15px; line-height: 1.95; color: var(--stone); }
.parcours-text p + p { margin-top: .875rem; }

.timeline {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.tl-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--beige-m);
}
.tl-item:last-child { border-bottom: none; }
.tl-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--sage-l);
  flex-shrink: 0;
  line-height: 1;
  width: 32px;
  text-align: center;
  padding-top: 2px;
}
.tl-body { font-size: 13.5px; line-height: 1.65; color: var(--stone); padding-top: 4px; }
.tl-body strong {
  color: var(--forest);
  font-weight: 500;
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Expandable "pour en savoir plus" */
.tl-more { margin-top: .5rem; }
.tl-more-btn {
  background: none;
  border: none;
  color: var(--sage);
  font-size: 12px;
  font-family: var(--font-sans);
  padding: 0;
  letter-spacing: .03em;
  transition: color var(--transition);
}
.tl-more-btn:hover { color: var(--forest); }
.tl-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding-top .3s;
}
.tl-more-content.open { max-height: 250px; padding-top: .625rem; }
.tl-more-content p { font-size: 13px; color: var(--stone); line-height: 1.75; font-style: italic; }
.tl-more-link {
  display: inline-block;
  margin-top: .375rem;
  font-size: 12px;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 1px;
  transition: opacity var(--transition);
}
.tl-more-link:hover { opacity: .75; }

/* ═══════════════════════════════════════════
   MODALITÉS
═══════════════════════════════════════════ */
.modalites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pave {
  background: var(--cream);
  border: 1px solid var(--beige-m);
  border-radius: 10px;
  padding: 2.25rem;
}
.pave-icon {
  width: 44px; height: 44px;
  border-radius: 9px;
  background: var(--sage-p);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
}
.pave-icon svg {
  width: 21px; height: 21px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 1.5;
}
.pave h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.125rem;
}
.pave-list { display: flex; flex-direction: column; gap: 10px; }
.pave-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}
.pave-item::before {
  content: '';
  width: 10px; height: 1px;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 9px;
}
.pave-item strong { color: var(--forest); }
.pave-item a { color: var(--forest); font-weight: 500; }
.pave-item a:hover { color: var(--terra); }

.mutuelle-note {
  margin-top: 1.75rem;
  padding: 1.125rem 1.5rem;
  background: var(--sage-p);
  border-radius: var(--radius);
  border: 1px solid var(--sage-l);
  font-size: 13.5px;
  color: var(--stone);
  line-height: 1.75;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════ */
.temos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.temo {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 2.25rem;
}
.temo-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
}
.temo-text::before {
  content: '\201C';
  font-size: 32px;
  color: var(--sage-l);
  line-height: 0;
  vertical-align: -11px;
  margin-right: 3px;
  opacity: .7;
  font-style: normal;
}
.temo-author {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  margin-top: 1.125rem;
  letter-spacing: .05em;
  font-weight: 500;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list { margin-top: 2rem; }

.faq-item {
  border-bottom: 1px solid var(--beige-d);
}
.faq-item:first-child { border-top: 1px solid var(--beige-d); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--forest);
  gap: 1rem;
  transition: color var(--transition);
  user-select: none;
  -webkit-user-select: none;
}
.faq-q:hover { color: var(--terra); }
.faq-q svg {
  width: 18px; height: 18px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform .35s ease;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding-bottom .3s;
}
.faq-item.open .faq-a { max-height: 800px; padding-bottom: 1.375rem; }

.faq-a p {
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: .875rem;
}
.faq-a p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.contact-intro p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.contact-alts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-alt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--stone);
}
.contact-alt svg {
  width: 16px; height: 16px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.contact-alt a { color: var(--forest); font-weight: 500; transition: color var(--transition); }
.contact-alt a:hover { color: var(--terra); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--beige-m);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field:last-of-type { margin-bottom: 0; }

.form-field label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: .02em;
}
.form-field label .req { color: var(--terra); margin-left: 2px; }
.form-field label .opt { color: var(--stone-l); font-weight: 400; }

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--beige);
  border: 1px solid var(--beige-m);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--forest);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--sage); }
.form-field textarea { height: 110px; resize: none; line-height: 1.65; }

.form-rgpd {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11.5px;
  color: var(--stone);
  line-height: 1.6;
  margin: 16px 0;
}
.form-rgpd input { margin-top: 2px; flex-shrink: 0; accent-color: var(--forest); }
.form-rgpd a { color: var(--sage); border-bottom: 1px solid var(--sage-l); }

.btn-submit {
  width: 100%;
  background: var(--terra);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 14px;
  border: none;
  border-radius: 4px;
  letter-spacing: .05em;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--terra-d); transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--forest);
  line-height: 1.65;
}
.form-success::before {
  content: '✓';
  display: block;
  font-size: 36px;
  color: var(--sage);
  margin-bottom: 1rem;
  font-family: sans-serif;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--forest);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 1px;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .approche-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .parcours-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .parcours-photo-wrap { flex-direction: row; align-items: flex-start; gap: 1.5rem; }
  .parcours-photo { width: 110px; height: 138px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .hero {
    padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-scroll { display: none; }

  .hero h1 { font-size: 30px; }

  .section { padding: 4rem 1.5rem; }

  .pourqui-grid { grid-template-columns: 1fr; }
  .pourqui-card:last-child { grid-column: auto; }

  .modalites-grid { grid-template-columns: 1fr; }

  .temos-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .parcours-photo-wrap { flex-direction: column; align-items: center; }
  .parcours-photo { width: 140px; height: 175px; }

  .citation { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-text p { font-size: 16px; }
}

/* ═══════════════════════════════════════════
   REVEAL ON SCROLL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}