/* ═══════════════════════════════════════════════════════════════════
   GESTRUST · Design System v2
   Direction : Hôtellerie premium, sobre, confiance
   Palette   : Bleu marine #0d2340, Or #c9a961, Crème #f5efe1
   Police    : Century Gothic (avec fallbacks)
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Couleurs */
  --navy:        #0d2340;
  --navy-deep:   #08182d;
  --navy-soft:   #1a3454;
  --gold:        #c9a961;
  --gold-deep:   #a8893f;
  --gold-soft:   #e0c890;
  --cream:       #f5efe1;
  --cream-deep:  #ebe2cc;
  --paper:       #fbf8f1;
  --ink:         #1a1f2e;
  --ink-soft:    #4a5568;
  --line:        rgba(13, 35, 64, 0.08);
  --line-strong: rgba(13, 35, 64, 0.18);

  /* Typo — Century Gothic et équivalents */
  --font-main: "Century Gothic", "Apple Gothic", "URW Gothic", "ITC Avant Garde Gothic", "Avenir", "Futura", "Twentieth Century", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Effets */
  --shadow-card: 0 1px 2px rgba(13,35,64,.04), 0 8px 24px rgba(13,35,64,.06);
  --shadow-soft: 0 24px 48px -16px rgba(13,35,64,.18);
  --shadow-deep: 0 32px 64px -24px rgba(13,35,64,.35);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: cubic-bezier(.2,.8,.2,1);
}

/* ═══════════════ RESET ═══════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ═══════════════ TYPOGRAPHIE ═══════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }
h5 { font-size: 0.95rem; font-weight: 700; }
em { font-style: italic; color: var(--gold-deep); }
strong { font-weight: 700; color: var(--navy); }
p { color: var(--ink-soft); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.eyebrow.light { color: var(--gold-soft); }

.section-title { margin-bottom: 1rem; }
.section-title.light { color: var(--cream); }

.section-lede {
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0.85rem auto 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.section-lede.light { color: rgba(245, 239, 225, 0.78); }

/* Filet doré avec losange (signature visuelle Gestrust) */
.rule-gold {
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  position: relative;
  margin: 1rem 0 1.25rem;
}
.rule-gold::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: translate(-50%,-50%) rotate(45deg);
}
.rule-gold.center { margin-left: auto; margin-right: auto; }

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

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section.soft { background: var(--cream); }
.section.dark {
  background: var(--navy);
  color: var(--cream);
}
.section.dark p { color: rgba(245, 239, 225, 0.78); }
.section.dark h2, .section.dark h3, .section.dark h4 { color: var(--cream); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 700;
  margin-top: 0.5rem;
}
.section-subtitle.light { color: rgba(245, 239, 225, 0.6); }

/* ═══════════════ BOUTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .35s var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(168,137,63,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,239,225,.4);
}
.btn-ghost:hover {
  background: rgba(245,239,225,.08);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--transition);
}
.site-header.scrolled {
  padding: 0.75rem 0;
  border-bottom-color: var(--line);
  background: rgba(251, 248, 241, 0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-main);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.brand-name .t { color: var(--gold); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s var(--transition);
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
}
.nav-desktop a:hover { color: var(--navy); }
.nav-desktop a.active { color: var(--navy); }
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  padding: 0.65rem 1.25rem !important;
  background: var(--navy);
  color: var(--cream) !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 0.06em;
}
.nav-cta:hover { background: var(--navy-deep); color: var(--cream) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all .3s var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 1rem 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: var(--cream);
  color: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(201, 169, 97, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 80px, rgba(201,169,97,0.03) 80px 81px);
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-brand {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-brand .t { color: var(--gold); }
.hero-tag {
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--gold-deep);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--gold-deep); }
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1rem;
}

/* Visuel hero : porte stylisée */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

/* ═══════════════ STATS BANNER ═══════════════ */
.stats-banner {
  background: var(--navy-deep);
  position: relative;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 97, 0.18);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-main);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-num small {
  font-size: 0.55em;
  margin-left: 0.1em;
  font-weight: 700;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(245, 239, 225, 0.75);
  letter-spacing: 0.02em;
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* ═══════════════ INTRO (Mot avant tout) ═══════════════ */
.intro {
  text-align: center;
  background: var(--paper);
}
.intro-content { max-width: 820px; margin: 0 auto; }
.intro-content p {
  font-size: 1.075rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.intro-content p:last-of-type { margin-bottom: 0; }
.intro-stars {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 1.1rem;
  margin-top: 2rem;
}

/* ═══════════════ MISSION + VALEURS (Qui sommes-nous) ═══════════════ */
.mission-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.mission-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.mission-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.mission-card p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.mission-card p:last-child { margin-bottom: 0; }
.mission-card .accent { color: var(--gold-deep); font-weight: 700; }

.values-cloud h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  align-items: baseline;
  margin-top: 1.5rem;
}
.values-list li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.values-list li:nth-child(2n) {
  font-size: 1.15rem;
  color: var(--gold-deep);
}
.values-list li:nth-child(3n) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.values-list li::after {
  content: '·';
  margin-left: 1.5rem;
  color: var(--gold);
}
.values-list li:last-child::after { display: none; }

/* ═══════════════ SERVICES — Liste ═══════════════ */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}
.service-tile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s var(--transition);
  position: relative;
}
.service-tile:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.service-tile .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.service-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.service-tile p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.service-tile .arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.service-tile:hover .arrow { transform: translateX(6px); }

/* ═══════════════ FORMULES (3 colonnes) ═══════════════ */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.formule {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .35s var(--transition);
  border-top: 4px solid var(--navy);
}
.formule:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.formule.featured {
  border-top-color: var(--gold);
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.04) 0%, white 100%);
  box-shadow: 0 24px 48px -16px rgba(201,169,97,.2);
}
.formule-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 0.4rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.formule-head {
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.formule-name {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.formule.featured .formule-name { color: var(--gold-deep); }
.formule-tag {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}
.formule-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.formule-features li {
  padding: 0.65rem 0 0.65rem 1.65rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.formule-features li:last-child { border-bottom: none; }
.formule-features li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0.7rem;
  color: var(--gold);
  font-size: 0.65rem;
}
.formule-features li.included {
  background: rgba(201, 169, 97, 0.06);
  margin: 0 -0.5rem 0.5rem;
  padding: 0.7rem 0.85rem 0.7rem 2rem;
  border-radius: var(--radius);
  border-bottom: none;
  font-weight: 600;
  color: var(--navy);
}
.formule-features li.included::before {
  left: 0.6rem; top: 0.85rem;
  content: '+';
  font-size: 1rem;
  font-weight: 700;
}

/* ═══════════════ POURQUOI CD ═══════════════ */
.why-grid {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
}
.why-text {
  text-align: center;
  margin-bottom: 2.5rem;
}
.why-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 70ch;
  margin: 0 auto 1rem;
}
.why-text p em {
  font-style: italic;
  color: var(--gold-deep);
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-stat {
  padding: 1.85rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 97, 0.2);
  color: var(--cream);
}
.why-stat:last-child { border-right: none; }
.why-stat-num {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.why-stat-label {
  font-size: 0.78rem;
  color: rgba(245, 239, 225, 0.78);
  line-height: 1.4;
}

/* ═══════════════ SOUS-LOCATION (5 piliers) ═══════════════ */
.sl-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.sl-intro p {
  color: rgba(245, 239, 225, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}
.sl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.sl-card {
  padding: 2rem 1.25rem;
  background: rgba(245, 239, 225, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: var(--radius-lg);
  transition: all .35s var(--transition);
  text-align: center;
}
.sl-card:hover {
  background: rgba(245, 239, 225, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.sl-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.15);
  border-radius: 50%;
  color: var(--gold);
}
.sl-icon svg { width: 24px; height: 24px; }
.sl-card h4 {
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}
.sl-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(245, 239, 225, 0.75);
}

/* ═══════════════ PROCESS (4 étapes pour invest. & rénovation) ═══════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.process-card {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.85rem;
  transition: all .3s var(--transition);
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.process-card .pc-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.process-card .pc-num {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.process-card h3 {
  font-size: 1.1rem;
  margin: 0;
}
.process-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ═══════════════ MÉTHODE (5 cartes) ═══════════════ */
.method-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.method-row.row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.method-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  transition: all .3s var(--transition);
  border-top: 3px solid var(--gold);
}
.method-card:nth-child(2) { border-top-color: var(--navy); }
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.method-card .mc-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  display: block;
}
.method-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.method-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.method-card p:last-child { margin-bottom: 0; }
.method-card p strong { display: block; color: var(--navy); }
.method-card .arrow-line {
  display: block;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.method-card .arrow-line::before {
  content: '→ ';
  color: var(--gold);
  font-weight: 700;
}

/* ═══════════════ ENGAGEMENTS (6 cartes) ═══════════════ */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.commit-card {
  padding: 2rem 1.85rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .35s var(--transition);
  text-align: center;
}
.commit-card:hover {
  transform: translateY(-4px);
  background: white;
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.commit-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.commit-card h4::after {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
  margin: 0.6rem auto 0;
}
.commit-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ═══════════════ PARCOURS (2 colonnes A/B) ═══════════════ */
.parcours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.parcours-col {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.parcours-head {
  padding: 1.5rem 1.85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
}
.parcours-col.a .parcours-head { background: var(--navy); }
.parcours-col.b .parcours-head { background: var(--gold-deep); }
.parcours-letter {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}
.parcours-head h3 {
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.parcours-steps {
  padding: 1.5rem 1.85rem 2rem;
}
.parcours-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  position: relative;
}
.parcours-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px; top: 38px; bottom: -10px;
  width: 1px;
  background: var(--line-strong);
}
.parcours-step .step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  z-index: 1;
}
.parcours-step .step-body { padding-top: 0.25rem; }
.parcours-step h4 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.parcours-step p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ═══════════════ CTA FINAL ═══════════════ */
.cta-final {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0 60px, rgba(201,169,97,0.025) 60px 61px
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}
.cta-final h2 em { color: var(--gold); font-style: italic; }
.cta-tag {
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.cta-meta {
  font-size: 0.9rem;
  color: rgba(245, 239, 225, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.cta-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  margin: 0 auto 2rem;
}
.cta-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(13, 35, 64, 0.6);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius);
  color: var(--cream);
  transition: all .3s;
  text-align: left;
}
.cta-channel:hover {
  border-color: var(--gold);
  background: rgba(13, 35, 64, 0.9);
  transform: translateY(-2px);
}
.cta-channel svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.cta-channel-text {
  font-weight: 600;
}
.cta-tag-final {
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(245, 239, 225, 0.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: rgba(245, 239, 225, 0.7);
  transition: color .25s, padding-left .25s;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-mark { color: var(--cream); }
.footer-tag {
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(245, 239, 225, 0.6);
}
.footer-bottom {
  padding: 1.25rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245, 239, 225, 0.5);
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

/* ═══════════════ PAGE HERO (pages internes) ═══════════════ */
.page-hero {
  padding: 11rem 0 4.5rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.1) 0%, transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.page-hero h1 em { color: var(--gold-deep); font-style: italic; }
.page-hero .eyebrow {
  margin-bottom: 0.5rem;
}
.page-lede {
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

/* ═══════════════ CONTACT ═══════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.contact-info > p {
  font-size: 1.05rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}
.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}
.channel {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .3s;
}
.channel:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}
.channel-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-icon svg { width: 18px; height: 18px; }
.channel-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
  font-weight: 600;
}
.channel-value {
  font-weight: 700;
  color: var(--navy);
}
.contact-promise {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.contact-promise strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.contact-promise li {
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.contact-promise li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}

.contact-form-wrap {
  background: white;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-form h2 {
  font-size: 1.65rem;
  margin-bottom: 0.4rem;
}
.form-intro {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}
.req { color: var(--gold-deep); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  transition: all .25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.radio-group {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.radio {
  flex: 1 1 auto;
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  transition: all .25s;
  background: var(--paper);
}
.radio:hover { border-color: var(--gold); }
.radio input { accent-color: var(--gold-deep); }
.radio:has(input:checked) {
  background: var(--cream);
  border-color: var(--gold);
}
.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox input { accent-color: var(--gold-deep); margin-top: 4px; }
.form-success {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(201, 169, 97, 0.12);
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: none;
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════ FONDATEUR ═══════════════ */
.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.founder-portrait {
  width: 100%;
  max-width: 300px;
}
.portrait-frame {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--navy);
}
.portrait-frame svg {
  width: 100%;
  height: 100%;
  display: block;
}
.portrait-caption {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}
.caption-name {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}
.caption-role {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.35rem;
  font-weight: 700;
}

.founder-content { min-width: 0; }
.founder-lede {
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.founder-content > p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.founder-quote {
  position: relative;
  margin: 2rem 0;
  padding: 1.75rem 1.85rem;
  background: white;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-card);
}
.founder-quote .quote-mark-sm {
  position: absolute;
  top: -8px; left: 18px;
  font-size: 3.25rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.founder-quote p {
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 0.65rem;
}
.founder-quote em { color: var(--gold-deep); font-style: italic; }
.founder-quote footer {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
}

.founder-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.meta-item { display: flex; flex-direction: column; gap: 0.4rem; }
.meta-num {
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
}
.meta-num small { font-size: 0.5em; }
.meta-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 2rem auto 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(201, 169, 97, 0.18); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(201, 169, 97, 0.18); }

  .mission-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .formules-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-portrait { max-width: 280px; margin: 0 auto; }
  .portrait-caption { text-align: center; padding-left: 0; border-left: none; border-top: 2px solid var(--gold); padding-top: 0.85rem; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .why-stat:nth-child(odd) { border-right: 1px solid rgba(201, 169, 97, 0.2); }
  .why-stat:nth-child(even) { border-right: none; }
  .why-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(201, 169, 97, 0.2); }

  .sl-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .method-row { grid-template-columns: 1fr; }
  .method-row.row-2 { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: repeat(2, 1fr); }
  .parcours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid rgba(201, 169, 97, 0.18) !important; }
  .stat:last-child { border-bottom: none !important; }

  .why-stats { grid-template-columns: 1fr; }
  .why-stat { border-right: none !important; border-bottom: 1px solid rgba(201, 169, 97, 0.2) !important; }
  .why-stat:last-child { border-bottom: none !important; }

  .sl-grid { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr; }

  .form-row.two { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }

  .founder-meta { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .founder-quote { padding: 1.5rem 1.4rem; }
  .founder-portrait { max-width: 240px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .values-list { gap: 0.5rem 0.75rem; }
  .values-list li::after { margin-left: 0.75rem; }
}
