:root {
    --navy: #1B2A4A;
    --navy-deep: #0f1a30;
    --gold: #C9892A;
    --gold-light: #E8B86D;
    --gold-pale: #F5E6CC;
    --ivory: #F8F5F0;
    --ivory-dark: #EDE8E0;
    --sage: #7A9E8A;
    --text-dark: #1B2A4A;
    --text-muted: #5a6a80;
    --white: #ffffff;
  }

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

  html { scroll-behavior: smooth; overflow-x: hidden; background: #ffffff; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--ivory);
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.75;
    overflow-x: hidden;
    max-width: 1440px;
    margin: 0 auto;
    box-shadow: 0 0 0 1px rgba(201,137,42,0.2), 0 0 60px rgba(0,0,0,0.4);
  }

  /* ───── NAVIGATION ───── */
  nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    z-index: 100;
    padding: 0 4%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(27, 42, 74, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 137, 42, 0.25);
    box-sizing: border-box;
    box-shadow: 0 6px 0 0 #fff;
  }

  .nav-logo {
    font-family: 'Cinzel', serif;
    font-size: clamp(15px, 4vw, 22px);
    font-weight: 300;
    color: var(--ivory);
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-logo span {
    color: var(--ivory);
  }

  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
  }

  .nav-links > li {
    position: relative;
  }

  .nav-links > li > a {
    color: rgba(248, 245, 240, 0.75);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
    padding: 0 18px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }

  .nav-links > li > a:hover { color: var(--gold); }
  .nav-links > li > a.active { color: var(--gold); }
  .nav-links > li > a.active::after { border-color: var(--gold) transparent transparent; }

  .nav-links > li > a.has-dropdown::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.5;
  }

  /* DROPDOWN */
  .nav-dropdown {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    border: 1px solid rgba(201,137,42,0.2);
    border-top: 2px solid var(--gold);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(-6px);
    z-index: 200;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  }

  .nav-links > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown a {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    text-decoration: none;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(248,245,240,0.05);
  }

  .nav-dropdown a:last-child { border-bottom: none; }

  .nav-dropdown a:hover { background: rgba(201,137,42,0.07); }

  .nav-dropdown a .dd-title {
    font-size: 15px;
    color: rgba(248,245,240,0.85);
    letter-spacing: 0.04em;
    font-weight: 400;
  }

  .nav-dropdown a .dd-sub {
    font-size: 13px;
    color: rgba(248,245,240,0.35);
    margin-top: 2px;
    letter-spacing: 0.02em;
    font-style: italic;
    font-family: 'Cinzel', serif;
  }

  .nav-dropdown .dd-section-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 20px 4px;
    opacity: 0.7;
  }

  /* MEGA DROPDOWN (Thématiques) */
  .nav-dropdown.mega {
    min-width: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 0;
    gap: 0;
  }

  .nav-dropdown.mega .dd-col {
    padding: 0;
  }

  .nav-dropdown.mega .dd-col-title {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 20px 4px;
    opacity: 0.7;
    display: block;
  }

  .nav-cta {
    background: var(--gold);
    color: var(--navy-deep) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 500 !important;
    opacity: 1 !important;
    letter-spacing: 0.08em !important;
    height: auto !important;
    margin-left: 12px;
  }

  /* ───── HERO ───── */
  .hero {
    min-height: 100vh;
    background: var(--navy-deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201, 137, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-lines::before {
    content: '';
    position: absolute;
    top: -20%;
    right: 48%;
    width: 1px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, rgba(201,137,42,0.3) 30%, rgba(201,137,42,0.15) 70%, transparent);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 4% 60px 4%;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.1;
    margin-bottom: 32px;
  }

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

  .hero-subtitle {
    font-size: 20px;
    color: rgba(248, 245, 240, 0.65);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 30px;
    font-weight: 300;
  }

  .hero-portrait-wrap .hero-subtitle {
    font-size: 16px;
    color: rgba(248, 245, 240, 0.7);
    max-width: 100%;
    line-height: 1.65;
    margin: 10px 0 10px 0;
    text-align: center;
    font-weight: 300;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
  }

  .hero-stat {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
  }

  .hero-stat-number {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    display: block;
  }

  .hero-stat-label {
    font-size: 13px;
    color: rgba(248, 245, 240, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .btn-outline {
    border: 1px solid rgba(248, 245, 240, 0.35);
    color: var(--ivory);
    padding: 17px 36px;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Variante fond clair — ivory / ivory-dark */
  .btn-outline--dark {
    border-color: rgba(27, 42, 74, 0.35);
    color: var(--navy);
  }

  .btn-outline--dark:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 137, 42, 0.06);
  }

  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-portrait-frame {
    position: relative;
    width: 380px;
    height: 420px;
    margin-top: 0;
  }

  .hero-portrait-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,137,42,0.12) 0%, rgba(27,42,74,0.4) 100%);
    border: 1px solid rgba(201,137,42,0.2);
    border-radius: 2px;
  }

  .hero-portrait-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #243555 0%, #1a2840 50%, #0f1a30 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .hero-portrait-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(201,137,42,0.15), transparent);
  }

  .portrait-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(201,137,42,0.15);
    border: 1px solid rgba(201,137,42,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .portrait-label {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: rgba(201,137,42,0.6);
    letter-spacing: 0.1em;
    font-style: italic;
  }

  .hero-badge {
    display: none;
  }

  .hero-badge-top {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-deep);
    font-weight: 500;
    line-height: 1.3;
  }

  .hero-badge-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-deep);
    margin-top: 4px;
    line-height: 1.1;
  }

  /* ───── STATS RIBBON ───── */
  .stats-ribbon {
    background: var(--navy);
    padding: 32px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-top: 1px solid rgba(201,137,42,0.2);
  }

  .stat-item {
    padding: 24px 32px;
    text-align: center;
    border-right: 1px solid rgba(248,245,240,0.08);
    position: relative;
  }

  .stat-item:last-child { border-right: none; }

  .stat-big {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold-light);
    display: block;
    line-height: 1;
  }

  .stat-desc {
    font-size: 14px;
    color: rgba(248,245,240,0.5);
    letter-spacing: 0.06em;
    margin-top: 8px;
    display: block;
    max-width: 180px;
    margin-inline: auto;
    line-height: 1.5;
  }

  /* ───── SECTION GÉNÉRIQUE ───── */
  section:not(.hero) { padding: 96px 8%; }

  .section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center;
  }

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

  /* ───── PERSONAS homepage ───── */
  .persona-anchor.needs-section--alt .section-title,
  .persona-anchor .section-title {
    font-size: clamp(22px, 2.2vw, 32px);
    color: var(--gold);
    text-align: left;
  }
  .persona-anchor.needs-section--alt .section-title em,
  .persona-anchor .section-title em { color: var(--gold); }

  .st-persona {
    font-family: 'Jost', sans-serif !important;
    font-size: clamp(18px, 1.4vw, 20px) !important;
    font-style: italic !important;
    color: var(--navy) !important;
    margin-bottom: 40px;
  }
  .intro-section {
    background: var(--ivory);
    padding: 96px 8%;
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ───── COLONNE DROITE INTRO ───── */
  .intro-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    align-self: stretch;
    justify-content: center;
  }

  .intro-illus {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 2px;
    display: block;
  }

  .portrait-below--intro {
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 2px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    gap: 0;
  }

  .portrait-below--intro .portrait-below-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .portrait-below--intro .portrait-below-super {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1;
  }

  .portrait-below--intro .portrait-below-number {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
  }

  .portrait-below--intro .portrait-below-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 300;
  }

  .portrait-below--intro .portrait-below-sep {
    width: 1px;
    height: 44px;
    background: var(--gold);
    opacity: 0.4;
    flex-shrink: 0;
  }

  .intro-text p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
  }

  .intro-text p strong {
    color: var(--navy);
    font-weight: 500;
  }

  /* ───── LISTE INTRO ───── */
  .intro-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 16px;
  }

  .intro-list li {
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    padding: 6px 0 6px 18px;
    border-bottom: 1px solid var(--ivory-dark);
    position: relative;
  }

  .intro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  .intro-quote {
    background: var(--navy);
    padding: 48px 44px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .intro-quote::before {
    content: '"';
    font-family: 'Cinzel', serif;
    font-size: 200px;
    color: rgba(201,137,42,0.08);
    position: absolute;
    top: -40px;
    left: 20px;
    line-height: 1;
  }

  .intro-quote blockquote {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.65;
    position: relative;
    z-index: 1;
    font-weight: 300;
  }

  .intro-quote cite {
    display: block;
    margin-top: 24px;
    font-size: 14px;
    font-style: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Jost', sans-serif;
  }

  /* ───── BESOINS / OBJECTIFS ───── */
  .needs-section {
    background: var(--ivory-dark);
    padding: 96px 8%;
  }

  .needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }

  .needs-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .need-card {
    background: var(--white);
    padding: 40px 32px;
    border: 1px solid var(--ivory-dark);
    border-top: 3px solid transparent;
    transition: border-top-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }

  .need-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(27,42,74,0.08);
  }

  .need-number {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(201,137,42,0.2);
    display: block;
    line-height: 1;
    margin-bottom: 16px;
  }

  .need-title {
    font-size: 18px;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .need-desc {
    font-size: 18px;
    color: var(--gold);
    line-height: 1.75;
    font-weight: 450;
  }

  .need-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .need-card-tags span {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    border: 1px solid rgba(201,137,42,0.3);
    padding: 4px 10px;
    border-radius: 2px;
  }

  /* ───── MÉTHODE / APPROCHE ───── */
  .method-section {
    background: var(--navy-deep);
    padding: 96px 8%;
    position: relative;
    overflow: hidden;
  }

  .method-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(201,137,42,0.06), transparent 70%);
    pointer-events: none;
  }

  .method-section .section-title { color: var(--ivory); }

  .method-section .section-eyebrow::before { background: var(--gold); }

  .method-intro {
    color: var(--text-dark);
    font-size: 18px;
    max-width: 600px;
    margin-top: 20px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.75;
  }

  .section-intro-text--dark {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 0;
    font-weight: 300;
  }

  .section-inner--centered .section-intro-text--dark {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* ─── Colonne centrée, contenu aligné gauche ─── */
  .engagement-col {
    max-width: 820px;
    margin: 0 auto;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  /* Grille 5 cartes : 3 sur la 1re rangée, 2 centrées sur la 2e */
  .pillars-grid-5-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 56px;
    justify-content: center;
  }
  .pillars-grid-5-wrap .pillar-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 16px);
    min-width: 260px;
  }

  .pillar-card {
    border: 1px solid rgba(201,137,42,0.2);
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.3s;
  }

  .pillar-card:hover { border-color: rgba(201,137,42,0.6); }

  .pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(201,137,42,0.12);
    border: 1px solid rgba(201,137,42,0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .pillar-icon svg { width: 22px; height: 22px; }

  .pillar-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 16px;
  }

  .pillar-list {
    list-style: none;
    padding: 0;
  }

  .pillar-list li {
    color: rgba(248,245,240,0.55);
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(248,245,240,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
  }

  .pillar-list li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* ───── CAROUSEL CHIFFRES ───── */
  .facts-section {
    background: var(--gold);
    padding: 64px 8%;
    overflow: hidden;
  }

  .facts-track {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .fact-item {
    text-align: center;
    flex-shrink: 0;
  }

  .fact-number {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--navy-deep);
    display: block;
    line-height: 1;
  }

  .fact-text {
    font-size: 13px;
    color: rgba(15,26,48,0.7);
    max-width: 180px;
    line-height: 1.4;
    margin-top: 8px;
    font-weight: 400;
  }

  .fact-divider {
    width: 1px;
    height: 60px;
    background: rgba(15,26,48,0.2);
  }

  /* ───── FORMATS ───── */
  .formats-section {
    background: var(--ivory);
    padding: 96px 8%;
  }

  .formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
    align-items: stretch;
  }

  .format-card {
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .format-card:hover {
    box-shadow: 0 12px 48px rgba(27,42,74,0.08);
  }

  .format-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gold);
  }

  .format-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .format-title {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .format-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .format-items {
    list-style: none;
    padding: 0;
  }

  .format-items li {
    padding: 8px 0;
    border-bottom: 1px solid var(--ivory-dark);
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .format-items li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: var(--gold);
    flex-shrink: 0;
    transform: rotate(45deg);
  }

  .format-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 24px 0 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
  }

  .format-subdesc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 8px;
  }

  .format-note {
    font-size: 12px;
    font-style: italic;
    color: var(--gold);
    margin-top: 6px;
    margin-bottom: 0;
  }

  .format-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--ivory-dark);
  }

  /* ───── CTA SECTION ───── */
  /* ═══════════════════════════════════════════════════════════
     PERSONAS — Navigation + Sections développées
  ═══════════════════════════════════════════════════════════ */

  /* Bande de navigation 3 blocs */
  .personas-nav-section {
    background: var(--navy);
    padding: 96px 8%;
    border-top: 1px solid rgba(201,137,42,0.2);
    border-bottom: 1px solid rgba(201,137,42,0.2);
  }
  .personas-nav-inner { max-width: 1100px; margin: 0 auto; }
  .personas-nav-inner .section-eyebrow { margin-bottom: 16px; }
  .personas-nav-inner .section-title { margin-bottom: 0; color: var(--ivory); }

  .personas-nav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
  }
  .persona-nav-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 44px 36px;
    border: 1px solid rgba(201,137,42,0.25);
    border-left: 4px solid rgba(201,137,42,0.35);
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    background: rgba(255,255,255,0.04);
  }
  .persona-nav-card:hover {
    border-left-color: var(--gold);
    background: rgba(201,137,42,0.07);
    transform: translateY(-2px);
  }
  .persona-nav-card--gold {
    border-left-color: var(--gold);
    background: rgba(201,137,42,0.06);
  }
  .persona-nav-icon {
    color: var(--gold);
    margin-bottom: 4px;
  }
  .persona-nav-title {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.4;
  }
  .persona-nav-desc {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: rgba(248,245,240,0.65);
    font-weight: 300;
    line-height: 1.65;
    flex-grow: 1;
  }
  .persona-nav-cta {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    margin-top: 4px;
  }

  /* Sections développées personas */
  .persona-section {
    padding: 80px 8%;
    scroll-margin-top: 72px;
  }
  .persona-section--ivory { background: var(--ivory); }
  .persona-section--navy  { background: var(--navy-deep); }

  .persona-content { max-width: 1100px; margin: 0 auto; }

  .persona-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .persona-number {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
  }

  .persona-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 36px;
    border: 1px solid var(--ivory-dark);
    padding: 8px 16px;
  }
  .persona-section--navy .persona-items-grid {
    border-color: rgba(201,137,42,0.15);
  }
  .persona-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--ivory-dark);
  }
  .persona-item:last-child { border-bottom: none; }
  .persona-section--navy .persona-item {
    border-bottom-color: rgba(248,245,240,0.1);
  }
  .persona-item p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
  }
  .persona-item--light p { color: rgba(248,245,240,0.7); }

  .persona-dot {
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 8px;
  }

  /* Boutons CTA des sections persona — centrés et harmonieux */
  .persona-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--ivory-dark);
  }
  .needs-section .persona-btns .btn-outline,
  .persona-btns .btn-outline {
	  
    color: var(--dark-navy);
    border-color: var(--dark-navy);
    min-width: 220px;
    text-align: center;
  }
  .persona-btns .btn-outline:hover {
    background: var(--navy);
    color: var(--ivory);
  }
  .persona-btns .btn-primary {
    min-width: 220px;
    text-align: center;
  }
  /* Variante sur fond navy */
  .method-section .persona-btns {
    border-top-color: rgba(248,245,240,0.15);
  }
  .method-section .persona-btns .btn-outline {
    color: var(--ivory);
    border-color: rgba(248,245,240,0.5);
  }
  .method-section .persona-btns .btn-outline:hover {
    background: rgba(248,245,240,0.1);
    color: var(--ivory);
  }
  /* Variante fond ivory-dark */
  [style*="ivory-dark"] .persona-btns .btn-outline {
    color: var(--navy);
    border-color: var(--navy);
  }

  /* ═══════════════════════════════════════════════════════════
     CLASSES UTILITAIRES — extraites des styles inline
  ═══════════════════════════════════════════════════════════ */

  /* Wrappers de section */
  .section-inner    { max-width: 1200px; margin: 0 auto; }
  .section-inner-md { max-width: 1100px; margin: 0 auto; }
  .section-inner-sm { max-width: 900px;  margin: 0 auto; }
  .section-inner--z { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .section-inner-md--z { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
  .section-inner-z  { position: relative; z-index: 1; }
  .section-inner--centered { text-align: center; }

  /* ─── Wrappers utilitaires ─── */
  .section-cta-center { text-align: center; margin-top: 48px; }
  .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-group--center { justify-content: center; }

  /* ─── CTA section helpers ─── */
  .cta-eyebrow { color: var(--gold); }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

  /* ─── Piliers sur fond clair (needs-section--alt) ─── */
  .pillar-title--dark { color: var(--navy); }
  .pillar-desc--dark  { color: var(--text-muted); font-size: 18px; line-height: 1.7; margin-top: 12px; }

  .intro-section .pillar-title,
  .needs-section .pillar-title,
  .formats-section .pillar-title { color: var(--gold); }

  /* Ancre scroll pour les personas */
  .persona-anchor { scroll-margin-top: 72px; }

  /* needs-section variante fond ivory-dark */
  .needs-section--alt { background: var(--ivory-dark); }
  .needs-section--alt .section-title { color: var(--navy); }
  .needs-section--alt .section-title em { color: var(--gold); }
  .needs-section--alt .method-intro { color: var(--text-muted); }
  .method-section .method-intro { color: rgba(248,245,240,0.6); }
  .needs-section--alt .pillar-card { background: white; border-color: var(--ivory-dark); }
  .needs-section--alt .pillar-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(27,42,74,0.07); }
  .intro-section .pillar-card { background: white; border-color: var(--ivory-dark); }
  .intro-section .pillar-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(27,42,74,0.07); }
  .needs-section--alt .pillar-icon { background: var(--gold-pale); border-color: rgba(201,137,42,0.3); }
  .needs-section--alt .pillar-title { color: var(--navy); }
  .needs-section--alt .pillar-card p,
  .intro-section .pillar-card p { color: var(--text-muted) !important; font-size: 18px !important; line-height: 1.75 !important; }

  .needs-section--navy {
    background: var(--navy);
  }
  .needs-section--navy .section-eyebrow { color: var(--gold); }
  .needs-section--navy .section-title { color: var(--ivory); }
  .needs-section--navy .need-card {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(201,137,42,0.2) !important;
    border-top: 3px solid transparent !important;
  }
  .needs-section--navy .need-card:hover {
    border-top: 3px solid var(--gold) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transform: translateY(-4px);
  }
  .needs-section--navy .need-title { color: var(--ivory) !important; }
  .needs-section--navy .need-title::before { background: var(--gold) !important; }
  .needs-section--navy .need-desc { color: rgba(248,245,240,0.65) !important; }
  .needs-section--navy .need-number { color: var(--gold) !important; opacity: 0.3; }
  .needs-section--navy .persona-btns { border-top-color: rgba(248,245,240,0.15); }
  .needs-section--navy .persona-btns .btn-outline { color: var(--ivory); border-color: rgba(248,245,240,0.4); }
  .needs-section--navy .persona-btns .btn-outline:hover { background: rgba(248,245,240,0.1); }
  .needs-section--navy .persona-btns .btn-primary { background: var(--gold); color: var(--navy-deep); }

  .faq-item {
    margin-bottom: 4px;
  }

  .faq-question {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--navy);
    padding: 20px 24px 20px 40px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .faq-question::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .faq-answer-box {
    background: white;
    padding: 20px 24px 20px 40px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 300;
    border-left: 3px solid var(--gold);
  }
  .need-card--full { grid-column: 1 / -1; }

  /* refs-grid avec margin-top */
  .refs-grid--mt { margin-top: 40px; }

  /* Textes utilitaires */
  .text-gold        { color: var(--gold); }
  .text-ivory       { color: var(--ivory); }
  .text-gold-faded  { color: var(--gold); opacity: 0.4; }
  .text-ivory-muted { color: rgba(248,245,240,0.65); }
  .text-center      { text-align: center; }
  .mt-40            { margin-top: 40px; }

  /* need-card variante fond navy */
  .need-card--navy {
    background: rgba(255,255,255,0.05);
    border-color: rgba(201,137,42,0.2);
  }
  .need-card--navy .need-title { color: var(--ivory); }
  .need-card--navy .need-title::before { background: var(--gold); }
  .need-card--navy .need-desc { color: rgba(248,245,240,0.65); }
  .need-card--navy .need-number { color: var(--gold); opacity: 0.4; }

  /* H2 et eyebrow dans la section personas-nav */
  .personas-nav-title {
    text-align: center;
    color: var(--ivory);
    margin-top: 16px;
    margin-bottom: 0;
  }
  .personas-nav-eyebrow {
    text-align: center;
    color: var(--gold);
    margin-bottom: 8px;
  }

  /* CTA section — conteneur et éléments */
  /* ───── RÉFÉRENCES SECTORIELLES ───── */
  .refs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 32px;
  }
  .ref-item {
    background: white;
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
  }
  .ref-sector {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .ref-sector::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }
  .ref-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
    padding-left: 17px;
  }

  .needs-section--alt .btn-outline {
    color: var(--navy);
    border-color: var(--navy);
  }
  .needs-section--alt .btn-outline:hover {
    background: var(--navy);
    color: var(--ivory);
  }

  .cta-inner  { position: relative; z-index: 1; }
  .cta-btns   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
  .cta-note   { color: rgba(248,245,240,0.45); font-size: 13px; margin-top: 24px; text-align: center; }

  /* Bouton primary large */
  .btn-primary--lg { font-size: 15px; padding: 20px 48px; }

  .cta-section {
    background: var(--navy);
    padding: 96px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,137,42,0.07), transparent 70%);
  }

  .cta-section .section-eyebrow {
    justify-content: center;
  }

  .cta-section .section-eyebrow::before { display: none; }

  .cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(40px, 4vw, 62px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.2;
    max-width: 760px;
    margin: 0 auto 24px;
  }

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

  .cta-subtitle {
    color: rgba(248,245,240,0.55);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 48px;
    font-weight: 300;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ───── FOOTER ───── */
  footer {
    background: var(--navy-deep);
    padding: 40px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201,137,42,0.25);
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 6px;
  }

  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--ivory);
  }

  .footer-logo span { color: var(--ivory); }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 14px;
    color: rgba(248,245,240,0.65);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }

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

  .footer-copy {
    font-size: 13px;
    color: rgba(248,245,240,0.45);
    letter-spacing: 0.05em;
  }

  /* ───── ANIMATIONS ───── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp 0.7s ease 0.1s both; }
  .hero-title   { animation: fadeUp 0.7s ease 0.25s both; }
  .hero-subtitle{ animation: fadeUp 0.7s ease 0.4s both; }
  .hero-stats   { animation: fadeUp 0.7s ease 0.55s both; }
  .hero-btns    { animation: fadeUp 0.7s ease 0.7s both; }


  /* ───── HAMBURGER ───── */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
    margin-left: 8px;
  }
  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ivory);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ───── MENU MOBILE (caché par défaut) ───── */
  .nav-mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    z-index: 999;
    overflow-y: auto;
    padding: 20px 6% 60px;
    flex-direction: column;
  }
  .nav-mobile.open { display: flex; }

  .nav-mobile-section {
    border-bottom: 1px solid rgba(201,137,42,0.12);
  }
  .nav-mobile-main {
    font-size: 22px;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    color: var(--ivory);
    text-decoration: none;
    padding: 16px 0 8px;
    display: block;
  }
  .nav-mobile-sub {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    padding-bottom: 12px;
  }
  .nav-mobile-sub a {
    font-size: 15px;
    color: rgba(248,245,240,0.55);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(248,245,240,0.05);
    transition: color 0.2s;
  }
  .nav-mobile-sub a:last-child { border-bottom: none; }
  .nav-mobile-sub a:hover { color: var(--gold); }
  .nav-mobile-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    padding: 10px 0 2px;
    display: block;
  }
  .nav-mobile-cta {
    margin-top: 24px;
    background: var(--gold);
    color: var(--navy-deep);
    text-align: center;
    padding: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    display: block;
  }

  /* ───── NAV LINKS cachés par défaut (mobile) ───── */
  nav .nav-links { display: none; }

  /* ───── RESPONSIVE MOBILE FIRST ───── */

  /* Toutes les grilles en 1 colonne par défaut */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: flex; padding: 0 6% 24px; }
  .hero-portrait-frame { width: 100%; max-width: 340px; height: 420px; margin-top: 0; }
  .hero-portrait-wrap { gap: 8px; padding: 0; width: 100%; align-items: center; }
  .portrait-above { display: none; }
  .portrait-below { display: flex; flex-direction: column; gap: 8px; }
  .portrait-below-item { padding: 8px 12px; border: 1px solid rgba(201,137,42,0.3); border-radius: 2px; width: 100%; }
  .portrait-below-sep { display: none; }
  .hero-lines::before { background: transparent; }
  .hero-content { padding: 110px 6% 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-right { gap: 16px; }
  .needs-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .stats-ribbon { grid-template-columns: 1fr; }
  .fact-divider { display: none; }
  section:not(.hero), .intro-section, .needs-section, .method-section, .formats-section, .cta-section { padding: 64px 5%; }

  /* Tablette ≥ 600px */
  /* ───── PAGE HEADER — mobile first ───── */
  .page-header {
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(201,137,42,0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    margin-top: 72px;
  }
  .page-header::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--gold);
    z-index: 2;
  }

  .page-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 5px;
    background: var(--gold);
    z-index: 2;
  }
  .page-header-inner {
    position: relative;
    z-index: 1;
    padding: 110px 6% 40px;
  }
  .page-header-visual {
    width: 100%;
    min-height: 220px;
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }
  .page-header-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 64px;
    background: linear-gradient(to bottom, var(--navy-deep), transparent);
    z-index: 1;
    pointer-events: none;
  }
  .page-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.85;
    display: block;
  }
  .page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .page-breadcrumb a {
    color: rgba(248,245,240,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .page-breadcrumb a:hover { color: var(--gold); }
  .page-breadcrumb span:last-child { color: var(--gold); }
  .page-breadcrumb span { color: rgba(248,245,240,0.2); }
  .page-header-eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    margin-bottom: 16px;
    display: block;
  }
  .page-header-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .page-header-title em {
    font-style: italic;
    color: var(--gold);
  }
  .page-header-sub {
    font-size: 18px;
    color: rgba(248,245,240,0.65);
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 28px;
  }

  @media (min-width: 600px) {
    .needs-grid { grid-template-columns: 1fr 1fr; }
    .stats-ribbon { grid-template-columns: 1fr 1fr; }
    section:not(.hero), .intro-section, .needs-section, .method-section, .formats-section, .cta-section { padding: 96px 8%; }
  }

  /* Desktop ≥ 900px */
  @media (min-width: 900px) {
    nav .nav-links { display: flex; }
    .nav-hamburger { display: none; }
    .hero { grid-template-columns: 1fr 1fr; min-height: 100vh; align-items: center; }
    .hero-content { padding: 100px 6% 60px 12%; }
    .hero-visual { display: flex; padding: 0; justify-content: center; align-items: center; }
    .hero-portrait-wrap { width: 100%; padding: 60px 4% 40px; }
    .portrait-below { width: 100%; }
    .portrait-below-number { font-size: 20px; }
    .portrait-below-item { padding: 14px 6px; }
    .hero-portrait-frame { width: 100%; height: 420px; margin-top: 0; }
    .hero-portrait-frame { width: 380px; max-width: 380px; height: 420px; margin-top: 0; }
    .hero-portrait-wrap { gap: 8px; padding: 0 40px; width: auto; align-items: center; }
    .portrait-above { display: flex; align-items: center; gap: 16px; justify-content: center; width: 100%; }
    .portrait-below { display: flex; flex-direction: row; width: 100%; border: 1px solid rgba(201,137,42,0.25); }
    .portrait-below-item { border: none; width: auto; }
    .hero-lines::before { background: linear-gradient(to bottom, transparent, rgba(201,137,42,0.3) 30%, rgba(201,137,42,0.15) 70%, transparent); }
    .hero-btns { justify-content: flex-start; }
    .section-title { text-align: left; }
    .intro-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
    .needs-grid { grid-template-columns: repeat(3, 1fr); }
    .needs-grid--2col { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .formats-grid { grid-template-columns: 1fr 1fr; }
    .stats-ribbon { grid-template-columns: repeat(4, 1fr); }
    .fact-divider { display: block; }
    /* Personas desktop */
    .personas-nav-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .persona-items-grid { grid-template-columns: 1fr 1fr; }
    .persona-header { gap: 32px; }
    .persona-number { font-size: 72px; }
    /* Page header desktop — image à droite */
    .page-header { flex-direction: row; min-height: 500px; height: 500px; overflow: hidden; margin-top: 72px; }
    .page-header-inner { padding: 60px 4% 60px 8%; width: 55%; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; }
    .page-header-visual { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; height: 100%; }
    .page-header-visual::before { top: 0; bottom: 0; right: auto; left: 0; width: 120px; height: 100%; background: linear-gradient(to right, var(--navy-deep), transparent); }
    .page-header-img { object-fit: cover; object-position: center top; }
  }

  .hero-portrait-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 40px 0;
  }

  .portrait-above {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: flex-start;
  }

  .portrait-above-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .portrait-above-quote {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: rgba(248,245,240,0.6);
    line-height: 1.5;
    margin: 0;
  }

  .portrait-below {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border-radius: 2px;
    width: 100%;
    overflow: hidden;
  }

  .portrait-below-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
    gap: 4px;
  }

  .portrait-below-link {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 2px;
  }

  .portrait-below-link:hover {
    background: rgba(201, 137, 42, 0.08);
  }

  .portrait-below-link:hover .portrait-below-number {
    color: var(--gold);
  }

  .portrait-below-number {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
  }

  .portrait-below-super {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248,245,240,0.35);
    font-weight: 400;
    line-height: 1;
  }

  .portrait-below-label {
    font-size: 12px;
    color: rgba(248,245,240,0.45);
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.4;
  }

  .portrait-below-sep {
    width: 1px;
    height: 48px;
    background: rgba(201,137,42,0.2);
    flex-shrink: 0;
  }
/* ───── BOUTON RETOUR EN HAUT ───── */
#backToTop {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(27,42,74,0.3);
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}
#backToTop svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy-deep);
}

/* ───── NAV LOGO LIEN ───── */
a.nav-logo {
  text-decoration: none;
}

/* ───── PAGE CHARTE ÉTHIQUE ───── */
/* ── Styles spécifiques à la charte ── */
  .charte-hero {
    background: var(--navy-deep);
    padding: 140px 8% 80px;
    position: relative;
    overflow: hidden;
  }
  .charte-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,137,42,0.07), transparent 70%);
    pointer-events: none;
  }
  .charte-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
  }
  .charte-hero-text { }
  .charte-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .charte-hero-visual img {
    width: 100%;
    max-width: 380px;
    border-radius: 2px;
    border: 1px solid rgba(201,137,42,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    display: block;
  }
  .charte-hero .section-eyebrow {
    color: var(--gold);
    margin-bottom: 20px;
  }
  .charte-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .charte-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
  }
  .charte-hero-desc {
    font-size: 18px;
    color: rgba(248,245,240,0.6);
    max-width: 640px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 36px;
  }
  .charte-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
  .charte-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(248,245,240,0.45);
    letter-spacing: 0.06em;
  }
  .charte-meta-item::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
  }

  /* ── BODY DE LA CHARTE ── */
  .charte-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 8%;
  }

  .charte-preambule {
    background: var(--ivory-dark);
    padding: 80px 8%;
  }
  .charte-preambule-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .charte-preambule p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .charte-preambule p strong { color: var(--navy); font-weight: 500; }

  .charte-infobox {
    background: var(--ivory);
    border-left: 4px solid var(--gold);
    padding: 24px 28px;
    margin-top: 32px;
    border-radius: 0 2px 2px 0;
  }
  .charte-infobox strong {
    display: block;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .charte-infobox p {
    font-size: 16px !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
  }

  /* ── SECTIONS ── */
  .charte-section {
    padding: 72px 8%;
  }
  .charte-section:nth-child(even) {
    background: var(--ivory-dark);
  }
  .charte-section:nth-child(odd) {
    background: var(--ivory);
  }
  .charte-section-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .charte-section-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.05em;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 40px;
  }

  .charte-article {
    margin-bottom: 40px;
  }
  .charte-article-title {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: baseline;
  }
  .charte-article-num {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    font-weight: 400;
  }
  .charte-article p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-weight: 300;
  }
  .charte-article p strong { color: var(--navy); font-weight: 500; }
  .charte-article ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 14px;
  }
  .charte-article ul li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 17px;
    color: var(--text-muted);
    padding: 7px 0;
    border-bottom: 1px solid var(--ivory-dark);
    font-weight: 300;
    line-height: 1.6;
  }
  .charte-article ul li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
    font-weight: 400;
  }

  /* ── ENGAGEMENT FINAL ── */
  .charte-engagement {
    background: var(--navy);
    padding: 72px 8%;
    position: relative;
    overflow: hidden;
  }
  .charte-engagement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,137,42,0.06), transparent 70%);
    pointer-events: none;
  }
  .charte-engagement-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .charte-engagement h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 24px;
  }
  .charte-engagement p {
    font-size: 18px;
    color: rgba(248,245,240,0.6);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
    max-width: 700px;
  }
  .charte-engagement .signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(201,137,42,0.25);
  }
  .charte-engagement .signature strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--ivory);
    margin-bottom: 4px;
    font-weight: 400;
  }
  .charte-engagement .signature span {
    font-size: 14px;
    color: rgba(248,245,240,0.4);
    letter-spacing: 0.06em;
  }

  @media (max-width: 600px) {
    .charte-hero { padding: 110px 5% 60px; }
    .charte-hero-inner { grid-template-columns: 1fr; }
    .charte-hero-visual { display: none; }
    .charte-section { padding: 56px 5%; }
    .charte-preambule { padding: 56px 5%; }
    .charte-engagement { padding: 56px 5%; }
    .charte-body { padding: 56px 5%; }
    .charte-meta { gap: 16px; }
  }

/* ═══════════════════════════════════════════════════════════════
   CI — COACHING INDIVIDUEL PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Deux offres : grille ── */
.ci-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
}

.ci-offer-card {
  background: white;
  border: 1px solid var(--ivory-dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.ci-offer-card:hover {
  box-shadow: 0 12px 48px rgba(27,42,74,0.08);
}

.ci-offer-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}

.ci-offer-left::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 0;
}

.ci-offer-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 500;
  align-self: flex-start;
}

.ci-offer-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 20px;
}

.ci-offer-intro {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.ci-offer-subtitle {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 14px;
}

.ci-offer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex: 1;
}

.ci-offer-list li {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid var(--ivory-dark);
  position: relative;
}

.ci-offer-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 5px; height: 5px;
  border-radius: 1px;
  background: var(--gold);
  transform: rotate(45deg);
}

.ci-offer-format {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 300;
  padding: 14px 0;
  border-top: 1px solid var(--ivory-dark);
  margin-bottom: 24px;
}

.ci-format-icon {
  font-size: 16px;
  opacity: 0.7;
}

.ci-offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, gap 0.2s;
}

.ci-offer-link:hover {
  color: var(--gold);
  gap: 12px;
}

/* ── Note de combinaison ── */
.ci-combine-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-top: 32px;
  border-radius: 0 2px 2px 0;
}

.ci-combine-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-combine-note p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.ci-combine-note strong {
  color: var(--navy);
  font-weight: 500;
}

/* ── Approche : grille 4 items sur fond navy ── */
.ci-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.ci-approach-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,137,42,0.35);
  padding: 36px 32px;
  transition: border-color 0.3s, background 0.3s;
}

.ci-approach-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,137,42,0.6);
}

.ci-approach-num {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 300;
  color: rgba(201,137,42,0.55);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.ci-approach-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ci-approach-desc {
  color: rgba(248,245,240,0.55);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── Sur fond clair (intro-section / needs-section) ── */
.intro-section .ci-approach-grid,
.needs-section .ci-approach-grid,
.formats-section .ci-approach-grid { gap: 24px; }

.intro-section .ci-approach-item,
.needs-section .ci-approach-item,
.formats-section .ci-approach-item {
  background: white;
  border: 1px solid var(--ivory-dark);
}

.intro-section .ci-approach-item:hover,
.needs-section .ci-approach-item:hover,
.formats-section .ci-approach-item:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(27,42,74,0.07);
}

.intro-section .ci-approach-num,
.needs-section .ci-approach-num,
.formats-section .ci-approach-num { color: rgba(201,137,42,0.3); }

.intro-section .ci-approach-title,
.needs-section .ci-approach-title,
.formats-section .ci-approach-title {
  color: var(--navy);
  font-weight: 500;
}

.intro-section .ci-approach-desc,
.needs-section .ci-approach-desc,
.formats-section .ci-approach-desc { color: var(--text-muted); }

/* ── Cadre de travail : grille 6 icônes ── */
.ci-cadre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.ci-cadre-item {
  background: white;
  border: 1px solid var(--ivory-dark);
  padding: 36px 28px;
  transition: box-shadow 0.3s;
}

.ci-cadre-item:hover {
  box-shadow: 0 8px 32px rgba(27,42,74,0.07);
}

.ci-cadre-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,137,42,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ci-cadre-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.ci-cadre-desc {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Profils : grille 6 cartes ── */
.ci-profils-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.ci-profil {
  border-left: 3px solid var(--gold);
  padding: 24px 24px 24px 28px;
  background: white;
  border-top: 1px solid var(--ivory-dark);
  border-right: 1px solid var(--ivory-dark);
  border-bottom: 1px solid var(--ivory-dark);
  transition: box-shadow 0.2s;
}

.ci-profil:hover {
  box-shadow: 0 6px 24px rgba(27,42,74,0.07);
}

.ci-profil-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.ci-profil-desc {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── FAQ ── */
.ci-faq {
  max-width: 900px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ci-faq-item {
  border-bottom: 1px solid var(--ivory-dark);
  padding: 28px 0;
}

.ci-faq-q {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.ci-faq-q::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 1px;
  background: var(--gold);
  transform: rotate(45deg);
}

.ci-faq-a {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  padding-left: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ci-offers-grid { grid-template-columns: 1fr; }
  .ci-approach-grid { grid-template-columns: 1fr; }
  .ci-cadre-grid { grid-template-columns: 1fr 1fr; }
  .ci-profils-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .ci-cadre-grid { grid-template-columns: 1fr; }
  .ci-profils-grid { grid-template-columns: 1fr; }
  .ci-offer-card { padding: 32px 24px; }
}


/* ───── WHY GRID — pourquoi travailler avec moi ───── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ───── PROCESS STEPS — déroulement ───── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.process-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ───── REFS SEPARATOR — séparateur dans section fusionnée ───── */
.refs-separator {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,137,42,0.2);
}

.refs-intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 40px;
  max-width: 640px;
}


/* ───── THEMES GRID — prise de parole (fond navy) ───── */
.themes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.theme-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.theme-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 8px;
}

.theme-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.theme-desc {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

/* Sur fond navy uniquement */
.method-section .theme-desc { color: rgba(248,245,240,0.6); }

/* Sur fond clair — fond blanc + couleurs adaptées */
.intro-section .theme-item,
.needs-section .theme-item,
.formats-section .theme-item {
  background: white;
  border: 1px solid var(--ivory-dark);
  border-radius: 2px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.intro-section .theme-item:hover,
.needs-section .theme-item:hover,
.formats-section .theme-item:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(27,42,74,0.07);
}

.intro-section .theme-title,
.needs-section .theme-title,
.formats-section .theme-title {
  color: var(--gold);
}

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

/* ───── SECTION--LIGHT : surcharge method-section sur fond ivory-dark ───── */
.section--light {
  background: var(--ivory-dark);
}

.section--light .section-title {
  color: var(--navy);
}

.section--light .section-title em {
  color: var(--gold);
}

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

.section--light .method-intro {
  color: var(--text-muted);
}

.section--light .pillar-card {
  background: white;
  border-color: var(--ivory-dark);
}

.section--light .pillar-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(27,42,74,0.07);
}

.section--light .pillar-icon {
  background: var(--gold-pale);
  border-color: rgba(201,137,42,0.3);
}

.section--light .pillar-title {
  color: var(--navy);
}

.section--light p[style*="rgba(248,245,240"] {
  color: var(--text-muted) !important;
}


/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: flex-start;
  }
}

/* ── Colonne info ── */
.contact-intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 17px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

a.contact-detail-value:hover { color: var(--gold); }

.contact-note {
  background: var(--ivory-dark);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 2px 2px 0;
}

.contact-note p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── Formulaire ── */
.contact-form-wrap {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 400;
}

.form-required {
  color: var(--gold);
}

.form-input {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--navy);
  background: white;
  border: 1px solid var(--ivory-dark);
  padding: 14px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,137,42,0.1);
}

.form-input.input-error,
.form-input:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.form-input::placeholder { color: #aab0bc; }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9892A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #c0392b;
  margin-top: 2px;
}

.form-recaptcha {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-mentions {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  font-size: 14px;
  padding: 18px 32px;
  letter-spacing: 0.1em;
  position: relative;
  cursor: pointer;
  border: none;
}

.btn-submit-loading { display: none; }

.btn-submit.loading .btn-submit-text { display: none; }
.btn-submit.loading .btn-submit-loading { display: inline; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-global-error {
  display: none;
  background: #fdf2f2;
  border: 1px solid #f5c6c6;
  color: #c0392b;
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 15px;
  line-height: 1.6;
}

/* ── Message succès ── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  gap: 20px;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg { width: 32px; height: 32px; }

.form-success-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--navy);
  font-weight: 400;
}

.form-success-text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 400px;
}
