  <style> 
  .hero__content {
  max-width: 640px;
}
    .archetype-card {
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
    }

    .archetype-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.65);
      border-color: rgba(197, 161, 102, 0.85);
      background: #050507;
    }

    .archetype-card.is-active {
      transform: translateY(-8px);
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
      border-color: rgba(197, 161, 102, 1);
    }

    :root {
      --bg-main: #ffffff;
      --bg-alt: #f7f3eb;
      --bg-elevated: #f5f2ea;
      --bg-soft: #f0ece4;

      --primary: #c5a166;
      --primary-soft: rgba(197, 161, 102, 0.12);
      --accent: #a88547;

      --text-main: #111111;
      --text-muted: #555555;

      --border-subtle: rgba(0, 0, 0, 0.08);
      --error: #c8483a;

      --radius-card: 18px;
      --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.14);

      --header-height: 78px;
    }

    /* RESET & BASE */

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: var(--bg-main);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

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

    button {
      font: inherit;
    }

    /* LAYOUT HELPERS */

    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 72px 0;
    }

    .section--tight {
      padding: 52px 0;
    }

    .section--alt {
      background: var(--bg-alt);
    }

    .section__eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 11px;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .section__title {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 40px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin: 0 0 16px;
    }

    .section__subtitle {
      max-width: 640px;
      margin: 0 0 28px;
      color: var(--text-muted);
      font-size: 14px;
    }

    /* HEADER */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(10px);
      background: #000000;
      color: #ffffff;
    }

    .site-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--header-height);
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: radial-gradient(circle at top, #f5f2ea 0, #d5c5a5 50%, #b49b6a 100%);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-logo img {
      width: 130%;
      height: auto;
      transform: translateY(2px);
    }

    .site-nav {
      flex: 1;
    }

    .site-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 14px;
    }

    .site-nav a {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(255, 255, 255, 0.72);
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .site-nav a:hover {
      color: #ffffff;
      border-color: rgba(197, 161, 102, 0.9);
      transform: translateY(-1px);
    }

    .site-nav a.is-active {
      color: var(--primary);
      border-color: var(--primary);
    }

    .nav-cta-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Buttons */

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 21px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
        transform 0.15s ease, box-shadow 0.15s ease;
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #111111;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
    }

    .btn-outline {
      background: transparent;
      border-color: #000000;
      color: #000000;
    }

    .btn-outline:hover {
      background: rgba(0, 0, 0, 0.06);
    }

    .btn-ghost {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.16);
      color: #111111;
    }

    .btn-ghost:hover {
      background: rgba(0, 0, 0, 0.08);
    }

    .btn-small {
      padding: 8px 18px;
      font-size: 11px;
    }

    /* Mobile nav toggle */

    .nav-toggle {
      display: none;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(12, 12, 12, 0.9);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
    }

    .nav-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #ffffff;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* GRID & CARDS */

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
    }

    .card {
      background: var(--bg-elevated);
      border-radius: var(--radius-card);
      padding: 22px 20px;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
      position: relative;
      overflow: hidden;
    }

    .card--soft {
      background: var(--bg-soft);
    }

    .card__eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .card__title {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 22px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin: 0 0 8px;
    }

    .card__subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 12px;
    }

    .card__text {
      font-size: 13px;
      color: var(--text-main);
      margin: 0 0 12px;
    }

    .card__list {
      list-style: none;
      padding: 0;
      margin: 0 0 16px;
      font-size: 13px;
      color: var(--text-main);
    }

    .card__list li {
      display: flex;
      gap: 8px;
      margin-bottom: 6px;
    }

    .card__list li::before {
      content: "•";
      color: var(--primary);
      font-size: 16px;
      line-height: 1.1;
    }

    /* “POUR QUI ?” tiles */

    .tiles {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 24px;
    }

    .tile {
      background: #faf7f1;
      border-radius: 16px;
      padding: 16px 16px 18px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .tile__title {
      font-size: 14px;
      font-weight: 600;
      margin: 0 0 8px;
    }

    .tile__text {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* STEPS */

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .step {
      background: #f9f6f0;
      border-radius: 20px;
      padding: 18px 18px 20px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .step__number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 12px;
      margin-bottom: 8px;
    }

    .step__title {
      font-size: 14px;
      font-weight: 600;
      margin: 0 0 6px;
    }

    .step__text {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* COACHING INDIVIDUEL – SPÉCIFIQUE PAGE */

    .coaching-hero-text {
      max-width: 700px;
    }

    .coaching-hero-subtitle {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .coaching-body {
      font-size: 14px;
      color: var(--text-main);
      max-width: 720px;
    }

    .coaching-body p {
      margin: 0 0 12px;
    }

    .coaching-body strong {
      font-weight: 600;
    }

    .coaching-two-columns {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 30px;
      align-items: flex-start;
    }

    .coaching-note {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .coaching-two-columns .card {
      height: 100%;
    }

    /* ARCHÉTYPES MASCULINS */

    .archetypes-intro {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 32px;
    }

    .archetypes-intro .section__title {
      margin-bottom: 10px;
    }

    .archetypes-intro .section__subtitle {
      margin-bottom: 0;
    }

    .archetypes-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      margin-top: 26px;
    }

    .archetype-card {
      background: #000000;
      color: #ffffff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
    }

    .archetype-card__image {
      height: 180px;
      overflow: hidden;
    }

    .archetype-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .archetype-card__body {
      padding: 14px 14px 16px;
      text-align: center;
    }

    .archetype-card__label {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 18px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin: 0 0 4px;
    }

    .archetype-card__note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.78);
      margin: 0 0 10px;
    }

    .archetype-card__icon {
      font-size: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      padding-top: 8px;
      margin-top: 6px;
      opacity: 0.8;
    }

    .archetypes-explained {
      margin-top: 48px;
    }

    .archetypes-explained__kicker {
      font-family: "Great Vibes", cursive;
      font-size: 24px;
      margin: -4px 0 10px;
      color: var(--accent);
    }

    .archetypes-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 18px 0 18px;
    }

    .archetypes-tab {
      padding: 8px 20px;
      border-radius: 999px;
      border: 1px solid #000000;
      background: #ffffff;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
        transform 0.12s ease, box-shadow 0.12s ease;
    }

    .archetypes-tab:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .archetypes-tab.is-active {
      background: #000000;
      color: #ffffff;
      border-color: #000000;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
    }

    .archetype-panels {
      margin-top: 8px;
    }

    .archetype-panel {
      display: none;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
      gap: 26px;
      background: #000000;
      border-radius: 26px;
      padding: 26px 26px 28px;
      color: #ffffff;
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.06);
      align-items: center;
    }

    .archetype-panel.is-active {
      display: grid;
    }

    .archetype-panel__image img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 18px;
      display: block;
    }

    .archetype-panel__title {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 26px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin: 0 0 10px;
    }

    .archetype-panel__eyebrow {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .archetype-panel__text {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
      margin: 0 0 12px;
      max-width: 440px;
    }

    .archetype-panel__shadow {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      margin: 0 0 10px;
    }

    .archetype-panel .card__list {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 0;
    }

    .archetype-panel .card__list li::before {
      color: var(--primary);
    }

    /* CTA STRIP */

    .cta-strip {
      background: linear-gradient(135deg, #c5a166, #a88547);
      border-radius: 24px;
      padding: 22px 22px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #16110b;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }

    .cta-strip__title {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin: 0 0 4px;
    }

    .cta-strip__text {
      margin: 0;
      font-size: 14px;
    }

    /* FOOTER */

    .site-footer {
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      background: #000000;
      color: #ffffff;
      padding: 30px 0 16px;
      margin-top: 36px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1.1fr 1fr;
      gap: 24px;
      font-size: 13px;
    }

    .footer-brand-name {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 6px;
    }

    .footer-tagline {
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
    }

    .footer-heading {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.65);
    }

    .footer-contact p,
    .footer-links ul {
      margin: 0;
      padding: 0;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 4px;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
    }

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

    .footer-meta {
      margin-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      padding-top: 9px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.6);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    .social-links {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .social-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.3);
      font-size: 13px;
    }

    /* ANIMATION “REVEAL” */

    .reveal {
      opacity: 0;
      transform: translateY(12px);
      animation: fade-in-up 0.65s ease forwards;
    }

    .reveal.delay-1 {
      animation-delay: 0.1s;
    }

    .reveal.delay-2 {
      animation-delay: 0.2s;
    }

    .reveal.delay-3 {
      animation-delay: 0.3s;
    }

    @keyframes fade-in-up {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .tiles,
      .steps,
      .footer-grid,
      .coaching-two-columns {
        grid-template-columns: minmax(0, 1fr);
      }

      .archetypes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .archetype-panel {
        grid-template-columns: minmax(0, 1fr);
      }

      .site-nav ul {
        gap: 10px;
      }
    }

    @media (max-width: 800px) {
      .site-header__inner {
        height: 64px;
      }

      .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        background: #000000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        transform: translateY(-120%);
        transition: transform 0.22s ease;
      }

      .site-nav ul {
        flex-direction: column;
        padding: 14px 20px 18px;
        align-items: flex-start;
      }

      body.nav-open .site-nav {
        transform: translateY(0);
      }

      .nav-cta-wrapper {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(3px) rotate(45deg);
      }

      body.nav-open .nav-toggle span:nth-child(2) {
        transform: translateY(-3px) rotate(-45deg);
      }
    }

    @media (max-width: 520px) {
      .cta-strip {
        padding: 18px 16px;
      }

      .cta-strip__title {
        font-size: 20px;
      }

      .archetypes-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
 
    :root {
      --bg-main: #ffffff;
      --bg-alt: #f7f3eb;
      --bg-elevated: #f5f2ea;
      --bg-soft: #f0ece4;

      --primary: #c5a166;
      --primary-soft: rgba(197, 161, 102, 0.12);
      --accent: #a88547;

      --text-main: #111111;
      --text-muted: #555555;

      --border-subtle: rgba(0, 0, 0, 0.08);
      --error: #c8483a;

      --radius-card: 18px;
      --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.14);

      --header-height: 78px;
    }

    /* RESET & BASE */

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: var(--bg-main);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

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

    button {
      font: inherit;
    }

    /* LAYOUT HELPERS */

    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 72px 0;
    }

    .section--tight {
      padding: 52px 0;
    }

    .section--alt {
      background: var(--bg-alt);
    }

    .section__eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 11px;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .section__title {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 40px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin: 0 0 16px;
    }

    .section__subtitle {
      max-width: 640px;
      margin: 0 0 28px;
      color: var(--text-muted);
      font-size: 14px;
    }

    /* HEADER */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(10px);
      background: #000000;
      color: #ffffff;
    }

    .site-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--header-height);
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 8px;
    }

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

    .site-nav {
      flex: 1;
    }

    .site-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 14px;
    }

    .site-nav a {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(255, 255, 255, 0.72);
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .site-nav a:hover {
      color: #ffffff;
      border-color: rgba(197, 161, 102, 0.9);
      transform: translateY(-1px);
    }

    .site-nav a.is-active {
      color: var(--primary);
      border-color: var(--primary);
    }

    .nav-cta-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Buttons */

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 21px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
        transform 0.15s ease, box-shadow 0.15s ease;
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #111111;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
    }

    .btn-outline {
      background: transparent;
      border-color: #000000;
      color: #000000;
    }

    .btn-outline:hover {
      background: rgba(0, 0, 0, 0.06);
    }

    .btn-ghost {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.16);
      color: #111111;
    }

    .btn-ghost:hover {
      background: rgba(0, 0, 0, 0.08);
    }

    .btn-small {
      padding: 8px 18px;
      font-size: 11px;
    }

    /* Mobile nav toggle */

    .nav-toggle {
      display: none;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: rgba(12, 12, 12, 0.9);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
    }

    .nav-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #ffffff;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* GRID & CARDS */

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
    }

    .card {
      background: var(--bg-elevated);
      border-radius: var(--radius-card);
      padding: 22px 20px;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
      position: relative;
      overflow: hidden;
    }

    .card--soft {
      background: var(--bg-soft);
    }

    .card__eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .card__title {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 22px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin: 0 0 8px;
    }

    .card__subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 12px;
    }

    .card__list {
      list-style: none;
      padding: 0;
      margin: 0 0 16px;
      font-size: 13px;
      color: var(--text-main);
    }

    .card__list li {
      display: flex;
      gap: 8px;
      margin-bottom: 6px;
    }

    .card__list li::before {
      content: "•";
      color: var(--primary);
      font-size: 16px;
      line-height: 1.1;
    }

    /* “POUR QUI ?” tiles */

    .tiles {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 24px;
    }

    .tile {
      background: #faf7f1;
      border-radius: 16px;
      padding: 16px 16px 18px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .tile__title {
      font-size: 14px;
      font-weight: 600;
      margin: 0 0 8px;
    }

    .tile__text {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* STEPS */

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .step {
      background: #f9f6f0;
      border-radius: 20px;
      padding: 18px 18px 20px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .step__number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 12px;
      margin-bottom: 8px;
    }

    .step__title {
      font-size: 14px;
      font-weight: 600;
      margin: 0 0 6px;
    }

    .step__text {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* CTA STRIP */

    .cta-strip {
      background: linear-gradient(135deg, #c5a166, #a88547);
      border-radius: 24px;
      padding: 22px 22px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #16110b;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }

    .cta-strip__title {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin: 0 0 4px;
    }

    .cta-strip__text {
      margin: 0;
      font-size: 14px;
    }

    /* FOOTER */

    .site-footer {
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      background: #000000;
      color: #ffffff;
      padding: 30px 0 16px;
      margin-top: 36px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1.1fr 1fr;
      gap: 24px;
      font-size: 13px;
    }

    .footer-brand-name {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 6px;
    }

    .footer-tagline {
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
    }

    .footer-heading {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.65);
    }

    .footer-contact p,
    .footer-links ul {
      margin: 0;
      padding: 0;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 4px;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
    }

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

    .footer-meta {
      margin-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      padding-top: 9px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.6);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    .social-links {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .social-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.3);
      font-size: 13px;
    }

    /* Simple reveal animation */

    .reveal {
      opacity: 0;
      transform: translateY(12px);
      animation: fade-in-up 0.65s ease forwards;
    }

    .reveal.delay-1 {
      animation-delay: 0.1s;
    }

    .reveal.delay-2 {
      animation-delay: 0.2s;
    }

    .reveal.delay-3 {
      animation-delay: 0.3s;
    }

    @keyframes fade-in-up {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Spécifique page coaching individuel */

    .coaching-hero-text {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 24px;
    }

    .coaching-hero-subtitle {
      font-family: "Great Vibes", cursive;
      font-size: 28px;
      margin: 0 0 10px;
      color: var(--accent);
    }

    .coaching-body {
      max-width: 760px;
      margin: 0 auto;
      font-size: 14px;
      color: var(--text-main);
    }

    .coaching-body p {
      margin: 0 0 12px;
    }

    .coaching-body strong {
      font-weight: 600;
    }

    .coaching-two-columns {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 30px;
      align-items: flex-start;
    }

    .coaching-note {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 8px;
    }
    /* ARCHÉTYPES MASCULINS */

    .archetypes-intro {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 32px;
    }

    .archetypes-intro .section__title {
      margin-bottom: 10px;
    }

    .archetypes-intro .section__subtitle {
      margin-bottom: 0;
    }

    .archetypes-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
      gap: 28px;
      align-items: stretch;
      margin-top: 18px;
    }

    .archetypes-visual {
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: #000000;
      min-height: 260px;
    }

    .archetypes-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .archetypes-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .archetype-card {
      background: #000000;
      color: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
    }

    .archetype-card__image {
      height: 140px;
      overflow: hidden;
    }

    .archetype-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .archetype-card__body {
      padding: 12px 14px 14px;
      text-align: left;
    }

    .archetype-card__label {
      font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
      font-size: 18px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin: 0 0 4px;
    }

    .archetype-card__note {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.78);
      margin: 0;
    }

    .archetype-card__icon {
      font-size: 14px;
      opacity: 0.7;
      margin-top: 8px;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      .archetypes-layout {
        grid-template-columns: minmax(0, 1fr);
      }

      .archetypes-visual {
        order: -1;
        min-height: 220px;
      }

      .archetypes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .tiles,
      .steps,
      .footer-grid,
      .coaching-two-columns {
        grid-template-columns: minmax(0, 1fr);
      }

      .site-nav ul {
        gap: 10px;
      }
    }

    @media (max-width: 800px) {
      .site-header__inner {
        height: 64px;
      }

      .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        background: #000000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        transform: translateY(-120%);
        transition: transform 0.22s ease;
      }

      .site-nav ul {
        flex-direction: column;
        padding: 14px 20px 18px;
        align-items: flex-start;
      }

      body.nav-open .site-nav {
        transform: translateY(0);
      }

      .nav-cta-wrapper {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(3px) rotate(45deg);
      }

      body.nav-open .nav-toggle span:nth-child(2) {
        transform: translateY(-3px) rotate(-45deg);
      }

      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 520px) {
      .archetypes-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .cta-strip {
        padding: 18px 16px;
      }

      .cta-strip__title {
        font-size: 20px;
      }
    }

  :root {
    --bg-main: #ffffff;
    --bg-alt: #f7f3eb;
    --bg-elevated: #f5f2ea;
    --bg-soft: #f0ece4;

    --primary: #c5a166;
    --primary-soft: rgba(197, 161, 102, 0.12);
    --accent: #a88547;

    --text-main: #111111;
    --text-muted: #555555;

    --border-subtle: rgba(0, 0, 0, 0.08);
    --error: #c8483a;

    --radius-card: 18px;
    --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.14);

    --header-height: 78px;
  }

  /* RESET & BASE */

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

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

  button {
    font: inherit;
  }

  /* LAYOUT HELPERS */

  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 52px 0;
  }

  .section--alt {
    background: var(--bg-alt);
  }

  .section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .section__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 40px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }

  .section__subtitle {
    max-width: 720px;
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 14px;
  }

  /* HEADER */

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: #000000;
    color: #ffffff;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .brand__name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .brand__tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  /* Navigation */

  .site-nav {
    flex: 1;
  }

  .site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .site-nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .site-nav a:hover {
    color: #ffffff;
    border-color: rgba(197, 161, 102, 0.9);
    transform: translateY(-1px);
  }

  .site-nav a.is-active {
    color: var(--primary);
    border-color: var(--primary);
  }

  .nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Buttons */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 21px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
      transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #111111;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  }

  .btn-outline {
    background: transparent;
    border-color: #000000;
    color: #000000;
  }

  .btn-outline:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .btn-ghost {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.16);
    color: #111111;
  }

  .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.08);
  }

  .btn-small {
    padding: 8px 18px;
    font-size: 11px;
  }

  /* Mobile nav toggle */

  .nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(12, 12, 12, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* GRID & CARDS GÉNÉRIQUES */

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .card {
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    padding: 22px 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
  }

  .card--soft {
    background: var(--bg-soft);
  }

  .card__eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .card__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 8px;
  }

  .card__subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 12px;
  }

  .card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--text-main);
  }

  .card__list li {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
  }

  .card__list li::before {
    content: "•";
    color: var(--primary);
    font-size: 16px;
    line-height: 1.1;
  }

  /* FORMULES – CARTES NOIRES */

  .programs-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .program-card {
    background: #050506;
    color: #ffffff;
    border-radius: 22px;
    padding: 28px 22px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    text-align: left;
  }

  .program-card__eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 6px;
  }

  .program-card__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 6px;
  }

  .program-card__meta {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
  }

  .program-card__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 10px;
  }

  .program-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
  }

  .program-card__list li {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
  }

  .program-card__list li::before {
    content: "•";
    color: var(--primary);
    font-size: 14px;
    line-height: 1.1;
  }

  .program-card__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 4px;
  }

  .program-card__price {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    letter-spacing: 0.16em;
    margin: 0 0 16px;
  }

  .program-card__cta {
    margin-top: 4px;
  }

  /* PARCOURS ORION */

  .orion-overview {
    margin-top: 10px;
    margin-bottom: 32px;
  }

  .orion-overview strong {
    font-weight: 600;
  }

  .orion-overview p {
    margin-bottom: 10px;
  }

  .orion-levels .card {
    text-align: left;
  }

  .orion-levels .card__cta {
    margin-top: 4px;
  }

  /* FOOTER */

  .site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #000000;
    color: #ffffff;
    padding: 30px 0 16px;
    margin-top: 36px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1fr;
    gap: 24px;
    font-size: 13px;
  }

  .footer-brand-name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
  }

  .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
  }

  .footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
  }

  .footer-contact p,
  .footer-links ul {
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
  }

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

  .footer-meta {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 9px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .social-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
  }

  /* ANIMATION “REVEAL” */

  .reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: fade-in-up 0.65s ease forwards;
  }

  .reveal.delay-1 {
    animation-delay: 0.1s;
  }

  .reveal.delay-2 {
    animation-delay: 0.2s;
  }

  .reveal.delay-3 {
    animation-delay: 0.3s;
  }

  @keyframes fade-in-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVE */

  @media (max-width: 960px) {
    .programs-grid,
    .grid-3 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .site-nav ul {
      gap: 10px;
    }
  }

  @media (max-width: 800px) {
    .site-header__inner {
      height: 64px;
    }

    .site-nav {
      position: fixed;
      inset: var(--header-height) 0 auto 0;
      background: #000000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      transform: translateY(-120%);
      transition: transform 0.22s ease;
    }

    .site-nav ul {
      flex-direction: column;
      padding: 14px 20px 18px;
      align-items: flex-start;
    }

    body.nav-open .site-nav {
      transform: translateY(0);
    }

    .nav-cta-wrapper {
      display: none;
    }

    .nav-toggle {
      display: inline-flex;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(3px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
      transform: translateY(-3px) rotate(-45deg);
    }

    .programs-grid,
    .grid-3 {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  @media (max-width: 520px) {
    .program-card {
      padding: 22px 18px 20px;
    }
  }
 /* VISUEL INTERMÉDIAIRE – PROGRAMME DE COACHING */

.section-visual {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
}

.section-visual--middle {
  background: #f7f3eb; /* léger contraste pour le visuel central */
}

.section-visual--bottom {
  background: #ffffff;
  padding-bottom: 60px;
}

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

.visual-single {
  margin: 20px auto 0;
  max-width: 900px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-single img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section-visual {
  padding: 48px 0 64px;
  background: #ffffff;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.visual-photo-large,
.visual-photo-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-photo-large img,
.visual-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carte texte à droite */

.visual-photo-card {
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
}

.visual-photo-card img {
  height: 60%;
}

.visual-photo-card-body {
  padding: 18px 18px 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.visual-photo-card-body h3 {
  margin: 0 0 6px;
  font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-photo-card-body p {
  margin: 0 0 6px;
}

/* Responsive */

@media (max-width: 800px) {
  .visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

  :root {
    --bg-main: #ffffff;
    --bg-alt: #f7f3eb;
    --bg-elevated: #f5f2ea;
    --bg-soft: #f0ece4;

    --primary: #c5a166;
    --primary-soft: rgba(197, 161, 102, 0.12);
    --accent: #a88547;

    --text-main: #111111;
    --text-muted: #555555;

    --border-subtle: rgba(0, 0, 0, 0.08);
    --error: #c8483a;

    --radius-card: 18px;
    --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.14);

    --header-height: 78px;
  }

  /* RESET & BASE */

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

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

  button {
    font: inherit;
  }

  /* LAYOUT HELPERS */

  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 52px 0;
  }

  .section--alt {
    background: var(--bg-alt);
  }

  .section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .section__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 40px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }

  .section__subtitle {
    max-width: 640px;
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 14px;
  }

  /* HEADER */

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: #000000;
    color: #ffffff;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
  }

  /* Brand */

  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .brand__name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .brand__tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  /* Navigation */

  .site-nav {
    flex: 1;
  }

  .site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .site-nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .site-nav a:hover {
    color: #ffffff;
    border-color: rgba(197, 161, 102, 0.9);
    transform: translateY(-1px);
  }

  .site-nav a.is-active {
    color: var(--primary);
    border-color: var(--primary);
  }

  .nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Buttons */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 21px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
      transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #111111;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  }

  .btn-outline {
    background: transparent;
    border-color: #000000;
    color: #000000;
  }

  .btn-outline:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .btn-ghost {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.16);
    color: #111111;
  }

  .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.08);
  }

  .btn-small {
    padding: 8px 18px;
    font-size: 11px;
  }

  /* Mobile nav toggle */

  .nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(12, 12, 12, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* HERO CONTACT */

  .hero {
    padding: 96px 0 64px;
    position: relative;
    overflow: hidden;
    background: var(--bg-main);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
      radial-gradient(circle at top center, rgba(197, 161, 102, 0.15), transparent 55%),
      radial-gradient(circle at bottom center, rgba(0, 0, 0, 0.04), transparent 55%);
    opacity: 1;
    pointer-events: none;
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 46px;
    align-items: center;
  }

  .hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 16px;
  }

  .hero__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: clamp(36px, 4.4vw, 52px);
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 18px;
  }

  .hero__subtitle {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 580px;
    margin: 0 0 24px;
  }

  .hero__note {
    font-size: 12px;
    color: var(--text-muted);
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero__visual {
    justify-self: end;
  }

  /* Hero side card */

  .hero-card {
    background: radial-gradient(circle at top, #f5f2ea 0, #ebe3d0 55%, #e3dac6 100%);
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    max-width: 360px;
    position: relative;
    overflow: hidden;
  }

  .hero-card__title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 6px;
    color: var(--primary);
  }

  .hero-card__headline {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    margin: 0 0 10px;
  }

  .hero-card__text {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 16px;
  }

  .hero-card__list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    font-size: 13px;
  }

  .hero-card__list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
  }

  .hero-card__list li::before {
    content: "✶";
    font-size: 11px;
    color: var(--primary);
  }

  /* GRID & CARDS */

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .card {
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    padding: 22px 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
  }

  .card--soft {
    background: var(--bg-soft);
  }

  .card__eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .card__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 8px;
  }

  .card__subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 12px;
  }

  .card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--text-main);
  }

  .card__list li {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
  }

  .card__list li::before {
    content: "•";
    color: var(--primary);
    font-size: 16px;
    line-height: 1.1;
  }

  /* FOOTER */

  .site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #000000;
    color: #ffffff;
    padding: 30px 0 16px;
    margin-top: 36px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1fr;
    gap: 24px;
    font-size: 13px;
  }

  .footer-brand-name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
  }

  .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
  }

  .footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
  }

  .footer-contact p,
  .footer-links ul {
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
  }

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

  .footer-meta {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 9px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .social-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
  }

  /* ANIMATION “REVEAL” */

  .reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: fade-in-up 0.65s ease forwards;
  }

  .reveal.delay-1 {
    animation-delay: 0.1s;
  }

  .reveal.delay-2 {
    animation-delay: 0.2s;
  }

  .reveal.delay-3 {
    animation-delay: 0.3s;
  }

  @keyframes fade-in-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVE */

  @media (max-width: 960px) {
    .hero__inner {
      grid-template-columns: minmax(0, 1fr);
    }

    .hero__visual {
      justify-self: flex-start;
    }

    .grid-2 {
      grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .site-nav ul {
      gap: 10px;
    }
  }

  @media (max-width: 800px) {
    .site-header__inner {
      height: 64px;
    }

    .site-nav {
      position: fixed;
      inset: var(--header-height) 0 auto 0;
      background: #000000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      transform: translateY(-120%);
      transition: transform 0.22s ease;
    }

    .site-nav ul {
      flex-direction: column;
      padding: 14px 20px 18px;
      align-items: flex-start;
    }

    body.nav-open .site-nav {
      transform: translateY(0);
    }

    .nav-cta-wrapper {
      display: none;
    }

    .nav-toggle {
      display: inline-flex;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(3px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
      transform: translateY(-3px) rotate(-45deg);
    }

    .hero {
      padding-top: 82px;
    }
  }

  @media (max-width: 520px) {
    .hero-card {
      max-width: 100%;
    }
  }
 
  :root {
    --bg-main: #ffffff;
    --bg-alt: #f7f3eb;
    --bg-elevated: #f5f2ea;
    --bg-soft: #f0ece4;

    --primary: #c5a166;
    --primary-soft: rgba(197, 161, 102, 0.12);
    --accent: #a88547;

    --text-main: #111111;
    --text-muted: #555555;

    --border-subtle: rgba(0, 0, 0, 0.08);
    --error: #c8483a;

    --radius-card: 18px;
    --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.14);

    --header-height: 78px;
  }

  /* RESET & BASE */

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

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

  button {
    font: inherit;
  }

  /* LAYOUT HELPERS */

  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 52px 0;
  }

  .section--alt {
    background: var(--bg-alt);
  }

  .section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .section__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 40px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }

  .section__subtitle {
    max-width: 640px;
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 14px;
  }

  /* HEADER */

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: #000000;
    color: #ffffff;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
  }

  /* Brand */

  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .brand__name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .brand__tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  /* Navigation */

  .site-nav {
    flex: 1;
  }

  .site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .site-nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .site-nav a:hover {
    color: #ffffff;
    border-color: rgba(197, 161, 102, 0.9);
    transform: translateY(-1px);
  }

  .site-nav a.is-active {
    color: var(--primary);
    border-color: var(--primary);
  }

  .nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Buttons */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 21px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
      transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #111111;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  }

  .btn-outline {
    background: transparent;
    border-color: #000000;
    color: #000000;
  }

  .btn-outline:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .btn-ghost {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.16);
    color: #111111;
  }

  .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.08);
  }

  .btn-small {
    padding: 8px 18px;
    font-size: 11px;
  }

  /* Mobile nav toggle */

  .nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(12, 12, 12, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* HERO ACCUEIL */

  .hero {
    padding: 96px 0 84px;
    position: relative;
    overflow: hidden;
    background: var(--bg-main);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
      radial-gradient(circle at top center, rgba(197, 161, 102, 0.15), transparent 55%),
      radial-gradient(circle at bottom center, rgba(0, 0, 0, 0.04), transparent 55%);
    opacity: 1;
    pointer-events: none;
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 46px;
    align-items: center;
  }

  .hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 16px;
  }

  .hero__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 18px;
  }

  .hero__subtitle {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 520px;
    margin: 0 0 24px;
  }

  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }

  .badge {
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 5px 11px;
    font-size: 10px;
    color: var(--text-muted);
    background: #f7f3eb;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero__note {
    font-size: 12px;
    color: var(--text-muted);
  }

  .hero__visual {
    justify-self: end;
  }

  /* Hero side card */

  .hero-card {
    background: radial-gradient(circle at top, #f5f2ea 0, #ebe3d0 55%, #e3dac6 100%);
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    max-width: 360px;
    position: relative;
    overflow: hidden;
  }

  .hero-card__title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 6px;
    color: var(--primary);
  }

  .hero-card__headline {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    margin: 0 0 10px;
  }

  .hero-card__text {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 16px;
  }

  .hero-card__list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    font-size: 13px;
  }

  .hero-card__list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
  }

  .hero-card__list li::before {
    content: "✶";
    font-size: 11px;
    color: var(--primary);
  }

  /* GRID & CARDS */

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .card {
    background: var(--bg-elevated);
    border-radius: var(--radius-card);
    padding: 22px 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
  }

  .card--soft {
    background: var(--bg-soft);
  }

  .card__eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .card__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 8px;
  }

  .card__subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 12px;
  }

  .card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--text-main);
  }

  .card__list li {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
  }

  .card__list li::before {
    content: "•";
    color: var(--primary);
    font-size: 16px;
    line-height: 1.1;
  }

  /* “POUR QUI ?” tiles */

  .tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
  }

  .tile {
    background: #faf7f1;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .tile__title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
  }

  .tile__text {
    font-size: 13px;
    color: var(--text-muted);
  }

  /* STEPS */

  .steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .step {
    background: #f9f6f0;
    border-radius: 20px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 8px;
  }

  .step__title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
  }

  .step__text {
    font-size: 13px;
    color: var(--text-muted);
  }

  /* ABOUT */

  .about {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 30px;
  }

  .about__tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .about__name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 10px;
  }

  .about__role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .about__text {
    font-size: 14px;
    color: var(--text-main);
  }

  .about__text p {
    margin: 0 0 10px;
  }

  .about__card {
    background: radial-gradient(circle at top, #f5f2ea 0, #ebe3d0 55%, #e3dac6 100%);
    border-radius: 22px;
    padding: 20px 20px 22px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    font-size: 13px;
  }

  .about__card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }

  /* CTA STRIP */

  .cta-strip {
    background: linear-gradient(135deg, #c5a166, #a88547);
    border-radius: 24px;
    padding: 22px 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #16110b;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }

  .cta-strip__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 4px;
  }

  .cta-strip__text {
    margin: 0;
    font-size: 14px;
  }

  /* FOOTER */

  .site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #000000;
    color: #ffffff;
    padding: 30px 0 16px;
    margin-top: 36px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1fr;
    gap: 24px;
    font-size: 13px;
  }

  .footer-brand-name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
  }

  .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
  }

  .footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
  }

  .footer-contact p,
  .footer-links ul {
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
  }

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

  .footer-meta {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 9px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .social-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
  }

  /* ANIMATION “REVEAL” */

  .reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: fade-in-up 0.65s ease forwards;
  }

  .reveal.delay-1 {
    animation-delay: 0.1s;
  }

  .reveal.delay-2 {
    animation-delay: 0.2s;
  }

  .reveal.delay-3 {
    animation-delay: 0.3s;
  }

  @keyframes fade-in-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVE */

  @media (max-width: 960px) {
    .hero__inner {
      grid-template-columns: minmax(0, 1fr);
    }

    .hero__visual {
      justify-self: flex-start;
    }

    .grid-3 {
      grid-template-columns: minmax(0, 1fr);
    }

    .tiles,
    .steps,
    .footer-grid,
    .about {
      grid-template-columns: minmax(0, 1fr);
    }

    .site-nav ul {
      gap: 10px;
    }
  }

  @media (max-width: 800px) {
    .site-header__inner {
      height: 64px;
    }

    .site-nav {
      position: fixed;
      inset: var(--header-height) 0 auto 0;
      background: #000000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      transform: translateY(-120%);
      transition: transform 0.22s ease;
    }

    .site-nav ul {
      flex-direction: column;
      padding: 14px 20px 18px;
      align-items: flex-start;
    }

    body.nav-open .site-nav {
      transform: translateY(0);
    }

    .nav-cta-wrapper {
      display: none;
    }

    .nav-toggle {
      display: inline-flex;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(3px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
      transform: translateY(-3px) rotate(-45deg);
    }

    .hero {
      padding-top: 82px;
    }
  }

  @media (max-width: 520px) {
    .hero-card {
      max-width: 100%;
    }

    .cta-strip {
      padding: 18px 16px;
    }

    .cta-strip__title {
      font-size: 20px;
    }
  }
 
  :root {
    --bg-main: #ffffff;
    --bg-alt: #f7f3eb;
    --bg-elevated: #f5f2ea;
    --bg-soft: #f0ece4;

    --primary: #c5a166;
    --primary-soft: rgba(197, 161, 102, 0.12);
    --accent: #a88547;

    --text-main: #111111;
    --text-muted: #555555;

    --border-subtle: rgba(0, 0, 0, 0.08);
    --error: #c8483a;

    --radius-card: 18px;
    --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.14);

    --header-height: 78px;
  }

  /* RESET & BASE */

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

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

  button {
    font: inherit;
  }

  /* LAYOUT HELPERS */

  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section--tight {
    padding: 52px 0;
  }

  .section--alt {
    background: var(--bg-alt);
  }

  .section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .section__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 40px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }

  .section__subtitle {
    max-width: 640px;
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 14px;
  }

  .section__title--center,
  .section__subtitle--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* HEADER */

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: #000000;
    color: #ffffff;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

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

  .brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .brand__name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .brand__tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  .site-nav {
    flex: 1;
  }

  .site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .site-nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .site-nav a:hover {
    color: #ffffff;
    border-color: rgba(197, 161, 102, 0.9);
    transform: translateY(-1px);
  }

  .site-nav a.is-active {
    color: var(--primary);
    border-color: var(--primary);
  }

  .nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Buttons */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 21px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
      transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #111111;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  }

  .btn-outline {
    background: transparent;
    border-color: #000000;
    color: #000000;
  }

  .btn-outline:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .btn-ghost {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.16);
    color: #111111;
  }

  .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.08);
  }

  .btn-small {
    padding: 8px 18px;
    font-size: 11px;
  }

  /* Mobile nav toggle */

  .nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(12, 12, 12, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* ====== PAGE AGENDA / BOOK NOW ====== */

  .booking-hero {
    padding: 80px 0 46px;
    text-align: center;
    background: var(--bg-main);
  }

  .booking-hero__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 46px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 6px;
  }

  .booking-hero__subtitle {
    font-family: "Great Vibes", cursive;
    font-size: 26px;
    color: var(--accent);
    margin: 0 0 18px;
  }

  .booking-hero__text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-muted);
  }

  .booking-section-header {
    text-align: center;
  }

  .booking-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
  }

  .booking-card {
    background: #050505;
    color: #ffffff;
    border-radius: 24px;
    padding: 26px 20px 22px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
  }

  .booking-card__eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
  }

  .booking-card__title {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 24px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 8px;
  }

  .booking-card__duration {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
  }

  .booking-card__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 16px;
  }

  .booking-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
  }

  .booking-card__list li {
    margin-bottom: 4px;
  }

  .booking-card__price-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
  }

  .booking-card__price {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 26px;
    letter-spacing: 0.14em;
    margin: 4px 0 14px;
  }

  .booking-card.booking-card--light {
    background: var(--bg-elevated);
    color: var(--text-main);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .booking-card.booking-card--light .booking-card__text,
  .booking-card.booking-card--light .booking-card__list {
    color: var(--text-muted);
  }

  .booking-card.booking-card--light .booking-card__price-label {
    color: rgba(0, 0, 0, 0.6);
  }

  /* FOOTER */

  .site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #000000;
    color: #ffffff;
    padding: 30px 0 16px;
    margin-top: 36px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1fr;
    gap: 24px;
    font-size: 13px;
  }

  .footer-brand-name {
    font-family: "Bebas Neue", "Impact", system-ui, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
  }

  .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
  }

  .footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.65);
  }

  .footer-contact p,
  .footer-links ul {
    margin: 0;
    padding: 0;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
  }

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

  .footer-meta {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 9px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .social-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
  }

  /* ANIMATION “REVEAL” */

  .reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: fade-in-up 0.65s ease forwards;
  }

  .reveal.delay-1 { animation-delay: 0.1s; }
  .reveal.delay-2 { animation-delay: 0.2s; }
  .reveal.delay-3 { animation-delay: 0.3s; }

  @keyframes fade-in-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVE */

  @media (max-width: 960px) {
    .footer-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .booking-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-nav ul {
      gap: 10px;
    }
  }

  @media (max-width: 800px) {
    .site-header__inner {
      height: 64px;
    }

    .site-nav {
      position: fixed;
      inset: var(--header-height) 0 auto 0;
      background: #000000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      transform: translateY(-120%);
      transition: transform 0.22s ease;
    }

    .site-nav ul {
      flex-direction: column;
      padding: 14px 20px 18px;
      align-items: flex-start;
    }

    body.nav-open .site-nav {
      transform: translateY(0);
    }

    .nav-cta-wrapper {
      display: none;
    }

    .nav-toggle {
      display: inline-flex;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(3px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
      transform: translateY(-3px) rotate(-45deg);
    }

    .booking-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  </style>
