/* ─────────────────────────────────────────
       TOKENS
    ───────────────────────────────────────── */
    :root {
      --navy:        #12213d;
      --navy-mid:    #1a2f52;
      --navy-light:  #243660;
      --gold:        #b8923a;
      --gold-light:  #d4af6a;
      --gold-pale:   #ecdcb0;
      --cream:       #f6f1e9;
      --cream-dark:  #ece5d6;
      --white:       #ffffff;
      --text:        #1a1a2e;
      --text-mid:    #3c3c52;
      --text-soft:   #6b6b82;
      --border:      rgba(184,146,58,.22);
      --border-light:rgba(184,146,58,.12);
      --sh:          0 4px 32px rgba(18,33,61,.10);
      --sh-lg:       0 16px 64px rgba(18,33,61,.18);
      --sh-gold:     0 4px 24px rgba(184,146,58,.25);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'EB Garamond', Georgia, serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: .028;
      pointer-events: none;
      z-index: 9999;
    }


    /* ─────────────────────────────────────────
       NAVBAR
    ───────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 500;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4rem;
      /* État par défaut : transparent (sur le hero) */
      background-color: transparent;
      box-shadow: none;
      transition: background .45s ease, box-shadow .45s ease,
                  backdrop-filter .45s ease, height .35s ease;
    }

    /* État scrollé : fond crème solide */
    nav.scrolled {
      background-color: rgba(246, 241, 233, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 24px rgba(18, 33, 61, .10);
      height: 58px;
    }

    /* Couleurs des liens : blancs sur le hero, navy après scroll */
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .04em;
      text-decoration: none;
      white-space: nowrap;
      transition: color .35s;
    }
    nav.scrolled .nav-logo { color: var(--navy); }

    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Cormorant Garamond', serif;
      font-size: .95rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.82);
      text-decoration: none;
      position: relative;
      transition: color .25s;
    }
    nav.scrolled .nav-links a { color: var(--text); }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width .3s ease;
    }

    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }
    .nav-links a.active { color: var(--gold); }

    .nav-cta {
      font-family: 'Cormorant Garamond', serif;
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: .6rem 1.5rem;
      border: 1.5px solid rgba(255,255,255,.6);
      color: var(--white);
      text-decoration: none;
      border-radius: 2px;
      transition: background .25s, color .25s, border-color .25s;
    }
    nav.scrolled .nav-cta {
      border-color: var(--navy);
      color: var(--navy);
    }

    .nav-cta:hover {
      background: var(--navy);
      color: var(--gold-light);
      border-color: var(--navy);
    }


    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    #accueil {
      min-height: 100dvh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }

    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: right center;
      pointer-events: none;
      user-select: none;
    }

    .hero-right {
      position: relative;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 4rem 4rem;
      z-index: 2;
    }

    .hero-right::after {
      content: '\201C';
      position: absolute;
      top: 0; left: 3.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 20rem;
      line-height: 1;
      color: rgba(255,255,255,.04);
      pointer-events: none;
      user-select: none;
    }

    .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: .78rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      position: relative;
      padding-left: 2.4rem;
    }

    .hero-eyebrow::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      width: 1.6rem; height: 1px;
      background: var(--gold);
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: 1.2rem;
    }

    .tag {
      font-family: 'Cormorant Garamond', serif;
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-pale);
      border: 1px solid rgba(184,146,58,.35);
      padding: .25rem .75rem;
      border-radius: 2px;
    }

    .hero-desc {
      font-family: 'EB Garamond', serif;
      font-size: 1.2rem;
      line-height: 1.8;
      color: rgba(255,255,255,.78);
      max-width: 420px;
      margin-bottom: 1.6rem;
    }

    .hero-desc strong { color: var(--white); font-weight: 500; }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      font-family: 'Cormorant Garamond', serif;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .85rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: all .25s ease;
      cursor: pointer;
    }

    .btn-outline-white {
      border: 1.5px solid rgba(255,255,255,.45);
      color: var(--white);
      background: transparent;
    }

    .btn-outline-white:hover {
      border-color: var(--white);
      background: rgba(255,255,255,.06);
    }

    .btn-gold {
      border: 1.5px solid var(--gold);
      color: var(--navy);
      background: var(--gold);
    }

    .btn-gold:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      box-shadow: var(--sh-gold);
    }


    /* ─────────────────────────────────────────
       SECTION BASE
    ───────────────────────────────────────── */
    section { padding: 7rem 4rem; }

    .section-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .section-kicker {
      font-family: 'Cormorant Garamond', serif;
      font-size: .78rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      display: block;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      font-weight: 900;
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 1.2rem;
    }

    .section-title em { font-style: italic; color: var(--gold); }

    .section-lead {
      font-family: 'EB Garamond', serif;
      font-size: 1.12rem;
      color: var(--text-soft);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .gold-rule {
      width: 48px; height: 2px;
      background: var(--gold);
      margin: 1.4rem auto 0;
    }


    /* ─────────────────────────────────────────
       PARCOURS – TIMELINE
    ───────────────────────────────────────── */
    #parcours { background: var(--cream); padding-top: 4rem; }

    .timeline {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
      transform: translateX(-50%);
    }

    .tl-item {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      gap: 0 1.5rem;
      margin-bottom: 4.5rem;
      align-items: start;
    }

    .tl-item:last-child { margin-bottom: 0; }

    .tl-item:nth-child(odd)  .tl-content { grid-column: 1; grid-row: 1; text-align: right; }
    .tl-item:nth-child(odd)  .tl-dot     { grid-column: 2; grid-row: 1; }
    .tl-item:nth-child(odd)  .tl-empty   { grid-column: 3; grid-row: 1; }

    .tl-item:nth-child(even) .tl-empty   { grid-column: 1; grid-row: 1; }
    .tl-item:nth-child(even) .tl-dot     { grid-column: 2; grid-row: 1; }
    .tl-item:nth-child(even) .tl-content { grid-column: 3; grid-row: 1; text-align: left; }

    .tl-dot {
      display: flex;
      justify-content: center;
      padding-top: .6rem;
    }

    .tl-dot-inner {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--cream);
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 6px var(--cream), var(--sh-gold);
      flex-shrink: 0;
    }

    .tl-dot-inner svg {
      width: 22px; height: 22px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .tl-empty { display: block; }

    .tl-content {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.8rem 2rem;
      box-shadow: var(--sh);
      transition: transform .25s, box-shadow .25s;
    }

    .tl-content:hover {
      transform: translateY(-4px);
      box-shadow: var(--sh-lg);
    }

    .tl-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .5rem;
      display: block;
    }

    .tl-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .8rem;
      line-height: 1.35;
    }

    .tl-dates {
      display: flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: 1rem;
      padding-bottom: .9rem;
      border-bottom: 1px solid var(--border-light);
    }

    /* cartes côté droit → dates alignées à droite */
    .tl-item:nth-child(odd) .tl-dates { justify-content: flex-end; }

    .tl-date-badge {
      font-family: 'Cormorant Garamond', serif;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .14em;
      color: var(--gold);
      background: rgba(184,146,58,.08);
      border: 1px solid rgba(184,146,58,.28);
      border-radius: 3px;
      padding: .2rem .65rem;
      white-space: nowrap;
    }


    .tl-date-sep {
      font-size: .75rem;
      color: var(--gold);
      opacity: .6;
    }

    .tl-body {
      font-family: 'EB Garamond', serif;
      font-size: .98rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    .tl-body ul { list-style: none; padding: 0; }

    .tl-body ul li {
      padding-left: 1.2rem;
      position: relative;
      margin-bottom: .35rem;
    }

    .tl-body ul li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: .85rem;
    }

    /* Cartes côté gauche (impaires) : tiret à droite */
    .tl-item:nth-child(odd) .tl-body ul li {
      padding-left: 0;
      padding-right: 1.2rem;
    }

    .tl-item:nth-child(odd) .tl-body ul li::before {
      left: auto;
      right: 0;
    }

    .section-footer-btn { text-align: center; margin-top: 5rem; }

    .btn-navy {
      font-family: 'Cormorant Garamond', serif;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .9rem 2.2rem;
      border: 1.5px solid var(--navy);
      color: var(--navy);
      background: transparent;
      border-radius: 2px;
      text-decoration: none;
      display: inline-block;
      transition: all .25s;
    }

    .btn-navy:hover { background: var(--navy); color: var(--gold-light); }


    /* ─────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────── */
    #services { background: var(--navy); padding: 7rem 4rem; }

    #services .section-kicker { color: var(--gold-light); }
    #services .section-title  { color: var(--white); }
    #services .section-lead   { color: rgba(255,255,255,.5); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .svc-card {
      border: 1px solid rgba(184,146,58,.22);
      border-radius: 8px;
      padding: 2.5rem 2rem;
      background: rgba(255,255,255,.03);
      position: relative;
      overflow: hidden;
      transition: background .3s, transform .25s, box-shadow .25s;
    }

    .svc-card:hover {
      background: rgba(255,255,255,.07);
      transform: translateY(-4px);
      box-shadow: 0 12px 48px rgba(0,0,0,.25);
    }

    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 2px;
      background: linear-gradient(to right, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .svc-card:hover::before { opacity: 1; }

    .svc-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(184,146,58,.12);
      line-height: 1;
      margin-bottom: .8rem;
      letter-spacing: -.03em;
    }

    .svc-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .svc-body {
      font-family: 'EB Garamond', serif;
      font-size: 1rem;
      color: rgba(255,255,255,.65);
      line-height: 1.75;
      text-align: justify;
    }

    .svc-price {
      display: flex;
      align-items: baseline;
      gap: .4rem;
      margin-top: 1.8rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(184,146,58,.22);
    }

    .svc-price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      letter-spacing: -.01em;
    }

    .svc-price-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: .78rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(184,146,58,.6);
    }


    /* ─────────────────────────────────────────
       MÉTHODE
    ───────────────────────────────────────── */
    #methode { background: var(--cream-dark); padding: 7rem 4rem; }

    .methode-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .methode-text .section-header { text-align: left; margin-bottom: 2rem; }
    .methode-text .gold-rule { margin: 1.4rem 0 0; }

    .methode-body {
      font-family: 'EB Garamond', serif;
      font-size: 1.12rem;
      color: var(--text-mid);
      line-height: 1.85;
      margin-top: 1.8rem;
    }

    .methode-body p + p { margin-top: 1.2rem; }
    .methode-body em { font-style: italic; color: var(--navy); }

    .methode-steps { display: flex; flex-direction: column; gap: 1.5rem; }

    .step-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-left: 3px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 1.4rem 1.8rem;
      box-shadow: var(--sh);
      transition: transform .2s, box-shadow .2s;
    }

    .step-card:hover { transform: translateX(4px); box-shadow: var(--sh-lg); }

    .step-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .4rem;
    }

    .step-card p {
      font-family: 'EB Garamond', serif;
      font-size: .97rem;
      color: var(--text-soft);
      line-height: 1.6;
    }


    /* ─────────────────────────────────────────
       CONTACT
    ───────────────────────────────────────── */
    #contact { background: var(--cream); padding: 7rem 4rem; }

    .contact-wrap { max-width: 680px; margin: 0 auto; }

    .contact-card {
      background: var(--navy);
      border-radius: 12px;
      padding: 3.5rem;
      box-shadow: var(--sh-lg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .contact-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: .8rem;
    }

    .contact-card p {
      font-family: 'EB Garamond', serif;
      font-size: 1.1rem;
      color: rgba(255,255,255,.65);
      margin-bottom: 2.5rem;
      line-height: 1.75;
    }

    .contact-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .contact-info {
      margin-top: 2rem;
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .contact-info a {
      font-family: 'Cormorant Garamond', serif;
      font-size: .88rem;
      letter-spacing: .12em;
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color .2s;
    }

    .contact-info a:hover { color: var(--gold-light); }


    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: #0c1628;
      border-top: 1px solid rgba(184,146,58,.15);
      padding: 3.5rem 4rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,.07);
      margin-bottom: 1.8rem;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .04em;
      margin-bottom: .8rem;
    }

    .footer-logo span { color: var(--gold); }

    .footer-brand p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1rem;
      color: rgba(255,255,255,.4);
      line-height: 1.7;
      max-width: 300px;
    }

    .footer-col h5 {
      font-family: 'Cormorant Garamond', serif;
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li + li { margin-top: .55rem; }

    .footer-col ul li a {
      font-family: 'EB Garamond', serif;
      font-size: .97rem;
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col ul li a:hover { color: var(--gold-light); }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: .8rem;
      letter-spacing: .1em;
      color: rgba(255,255,255,.25);
    }

    /* Footer map block */
    .footer-map-wrap {
      margin-top: 1.4rem;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }

    .footer-map {
      width: 100%;
      max-width: 280px;
      height: 150px;
      border: 1px solid rgba(184,146,58,.2);
      border-radius: 3px;
      transition: filter .3s ease;
      display: block;
    }

    .footer-map:hover {
      filter: grayscale(0%) brightness(0.9) sepia(0%);
    }

    .footer-map-link {
      display: inline-flex;
      align-items: center;
      gap: .38rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: .8rem;
      letter-spacing: .1em;
      color: rgba(184,146,58,.6);
      text-decoration: none;
      transition: color .2s;
      width: fit-content;
    }

    .footer-map-link svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
    }

    .footer-map-link:hover { color: var(--gold-light); }





    /* ─────────────────────────────────────────
       HAMBURGER MENU (mobile)
    ───────────────────────────────────────── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px; height: 36px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 600;
    }

    .nav-hamburger span {
      display: block;
      width: 100%; height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .35s ease, opacity .25s ease, background .35s;
    }

    nav.scrolled .nav-hamburger span { background: var(--navy); }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Drawer mobile */
    .nav-drawer {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(18, 33, 61, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 90px 2rem 3rem;
      z-index: 490;
      flex-direction: column;
      gap: 0;
      transform: translateY(-105%);
      transition: transform .4s cubic-bezier(.4,0,.2,1);
    }

    .nav-drawer.open { transform: translateY(0); }

    .nav-drawer a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.8);
      text-decoration: none;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(184,146,58,.15);
      transition: color .2s;
    }

    .nav-drawer a:hover,
    .nav-drawer a.active { color: var(--gold-light); }

    .nav-drawer .drawer-cta {
      margin-top: 2rem;
      text-align: center;
      padding: .9rem 2rem;
      border: 1.5px solid var(--gold);
      color: var(--gold-light);
      border-radius: 2px;
      font-size: 1rem;
      letter-spacing: .18em;
    }

    .nav-drawer .drawer-cta:hover {
      background: var(--gold);
      color: var(--navy);
    }


    /* ─────────────────────────────────────────
       RESPONSIVE — Tablette (<=1024px)
    ───────────────────────────────────────── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .methode-inner { grid-template-columns: 1fr; gap: 3rem; }
      .footer-inner  { grid-template-columns: 1fr 1fr; }
    }


    /* ─────────────────────────────────────────
       RESPONSIVE — Mobile (<=768px)
    ───────────────────────────────────────── */
    @media (max-width: 768px) {

      /* Navbar */
      nav { padding: 0 1.2rem; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer    { display: flex; }

      /* Hero */
      #accueil {
        min-height: 100dvh;
      }
      .hero-img {
        object-fit: cover;
        object-position: center bottom;
      }
      .hero-right {
        padding: 7rem 1.5rem 3rem;
      }
      .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
      .hero-desc { font-size: 1.05rem; max-width: 100%; }
      .hero-btns { flex-direction: column; gap: .8rem; }
      .hero-btns .btn { text-align: center; justify-content: center; }

      /* Sections */
      section { padding: 4.5rem 1.2rem; }
      .section-header { margin-bottom: 3rem; }

      /* Timeline */
      .timeline::before { left: 24px; transform: none; }
      .tl-item {
        grid-template-columns: 56px 1fr !important;
        grid-template-rows: auto;
        margin-bottom: 2.5rem;
      }
      .tl-item .tl-content { grid-column: 2 !important; grid-row: 1 !important; text-align: left !important; padding: 1.2rem; }
      .tl-item .tl-dot     { grid-column: 1 !important; grid-row: 1 !important; }
      .tl-item .tl-empty   { display: none !important; }
      .tl-dot-inner { width: 38px; height: 38px; }
      .tl-dot-inner svg { width: 17px; height: 17px; }

      /* Services */
      #services { padding: 4.5rem 1.2rem; }
      .services-grid { grid-template-columns: 1fr; }
      .svc-card { padding: 2rem 1.5rem; }

      /* Citation */
      .quote-band { padding: 3.5rem 1.5rem; }

      /* Methode */
      #methode { padding: 4.5rem 1.2rem; }
      .methode-inner { gap: 2.5rem; }
      .methode-text .section-header { text-align: center; }
      .methode-text .gold-rule { margin: 1.4rem auto 0; }

      /* Contact */
      #contact { padding: 4.5rem 1.2rem; }
      .contact-card { padding: 2.5rem 1.5rem; }
      .contact-btns { flex-direction: column; align-items: stretch; }
      .contact-btns .btn { text-align: center; justify-content: center; }
      .contact-info { gap: 1rem; flex-direction: column; align-items: center; }

      /* Footer */
      footer { padding: 3rem 1.2rem 1.5rem; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    }


    /* ─────────────────────────────────────────
       RESPONSIVE — Tres petit (<=400px)
    ───────────────────────────────────────── */
    @media (max-width: 400px) {
      .hero-h1 { font-size: 1.9rem; }
      .hero-eyebrow { font-size: .7rem; }
      .tag { font-size: .65rem; padding: .2rem .55rem; }
      .section-title { font-size: 1.6rem; }
    }