  :root {
    --navy: #1A2744;
    --gold: #B8942E;
    --white: #FFFFFF;
    --noir: #111111;
    --blue-1: #042c53;
    --blue-2: #0c447c;
    --blue-3: #185fa5;
    --blue-4: #378add;
    --blue-5: #85b7eb;
    --bg: #F8F7F4;
    --bg-elevated: #FFFFFF;
    --text-primary: #1A2744;
    --text-secondary: #3d4761;
    --text-tertiary: #8b92a0;
    --border-subtle: rgba(26,39,68,0.08);
    --shadow-xs: 0 1px 2px rgba(26,39,68,0.06);
    --shadow-sm: 0 1px 3px rgba(26,39,68,0.08), 0 1px 2px rgba(26,39,68,0.06);
    --shadow-md: 0 4px 6px -1px rgba(26,39,68,0.08), 0 2px 4px -1px rgba(26,39,68,0.04);
    --shadow-lg: 0 10px 25px -3px rgba(26,39,68,0.1), 0 4px 6px -2px rgba(26,39,68,0.04);
    --shadow-xl: 0 20px 50px -5px rgba(26,39,68,0.12), 0 8px 16px -4px rgba(26,39,68,0.06);

    /* ═══════════════════ TOKENS FLUIDES 2026 ═══════════════════ */
    /* Système fluide complet - Règles 1+2+5 du doc scaling responsive 2026 */
    /* Interpolation viewports 320-1440px, valeurs alignées sur design historique */
    /* Toujours rem + vw combinés pour respecter WCAG 1.4.4 (zoom 200%) */
    /* Choix éditoriaux préservés : nav > body (--font-nav), gradation sous-titres (--font-sub) */

    /* Typographie fluide - échelle modulaire */
    /* Échelle typographique - base 18px (mise à jour 17 juillet 2026) */
    /* Multiplicateur uniforme appliqué : mobile ×1.125, desktop ×1.071 vs échelle 16px */
    --font-tiny:      clamp(0.79rem, 0.76rem + 0.13vw, 0.91rem);
    --font-small:     clamp(1.01rem, 0.98rem + 0.11vw, 1.07rem);
    --font-body:      1.125rem; /* 18px fixe partout */
    --font-nav:       clamp(1.07rem, 1.04rem + 0.13vw, 1.16rem);
    --font-sub:       clamp(1.18rem, 1.15rem + 0.14vw, 1.23rem);
    --font-hero-sub:  clamp(1.15rem, 1.08rem + 0.32vw, 1.35rem);
    --font-h4:        clamp(1.46rem, 1.4rem + 0.29vw, 1.61rem);
    --font-badge:     clamp(1.41rem, 1.29rem + 0.5vw, 1.71rem);
    --font-price:     clamp(1.35rem, 1.16rem + 0.86vw, 1.93rem);
    --font-label:     clamp(1.46rem, 1.3rem + 0.71vw, 1.93rem);
    --font-h3:        clamp(1.46rem, 1.23rem + 1.07vw, 2.36rem);
    --font-h2:        clamp(1.91rem, 1.49rem + 1.86vw, 3.21rem);
    --font-h1:        clamp(2.59rem, 1.87rem + 3.14vw, 4.82rem);

    /* Espacements fluides */
    --space-2xs: clamp(0.25rem, 0.24rem + 0.05vw, 0.3rem);
    --space-xs:  clamp(0.5rem,  0.48rem + 0.1vw,  0.6rem);
    --space-s:   clamp(1rem,    0.94rem + 0.28vw, 1.25rem);
    --space-m:   clamp(1.5rem,  1.36rem + 0.71vw, 2rem);
    --space-l:   clamp(2rem,    1.79rem + 1.07vw, 2.75rem);
    --space-xl:  clamp(2.5rem,  2.14rem + 1.79vw, 3.75rem);
    --space-2xl: clamp(4rem,    3.29rem + 3.57vw, 6.5rem);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Urbanist', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ═══════════════════ NAV ═══════════════════ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.7rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248,247,244,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border-subtle);
  }

  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  /* Logo bigger as requested */
  .nav-logo svg { height: 44px; width: auto; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-links a {
    font-weight: 400;
    font-size: var(--font-nav);
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text-primary); }

  .nav-cta {
    padding: 0.6rem 1.6rem !important;
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: 6px;
    font-weight: 500 !important;
    font-size: var(--font-body) !important;
    box-shadow: 0 1px 3px rgba(26,39,68,0.2), 0 1px 2px rgba(26,39,68,0.12) !important;
    transition: all 0.2s !important;
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,39,68,0.25), 0 2px 4px rgba(26,39,68,0.1) !important;
  }

  /* ═══════════════════ HERO ═══════════════════ */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 8rem 3rem 6rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -15%; right: -8%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,148,46,0.05) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -8%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,39,68,0.03) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
  }

  /* Badge options */
  .hero-badge--accent {
    display: inline-flex;
    align-items: center;
    font-size: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    /* Tighter bottom margin */
    margin-bottom: 2.5rem;
    padding: 0.55rem 1.2rem 0.55rem 1rem;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,0.5);
  }

  .hero-badge--caps {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: var(--font-badge);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--gold);
    margin-bottom: 2rem;
  }
  .hero-badge--caps::before,
  .hero-badge--caps::after {
    content: '';
    width: 44px;
    height: 1.5px;
    background: #B8942E;
  }

  /* Badge refonte 4a : uppercase + letter-spacing large, PAS de tiret décoratif */
  .hero-badge--refonte {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .hero-badge--pill {
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 2.5rem;
    padding: 0.45rem 1.4rem;
    background: rgba(184,148,46,0.08);
    border-radius: 100px;
    border: 1px solid rgba(184,148,46,0.15);
  }

  .hero h1 {
    font-weight: 700;
    font-size: var(--font-h1);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    max-width: 1050px;
  }
  .hero h1 .accent { color: var(--gold); }

  .hero-sub {
    font-size: var(--font-hero-sub);
    font-weight: 400;
    color: #3d4761;
    line-height: 1.5;
    max-width: 760px;
    margin: 0 0 1.6rem;
  }

  /* Citation quote block 4a : juste bordure gauche gold, PAS de fond */
  .hero-quote {
    padding: 0 0 0 18px;
    border-left: 3px solid var(--gold);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 2.6rem;
    max-width: 620px;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--navy);
    color: var(--white);
    font-family: 'Urbanist', sans-serif;
    font-size: var(--font-body);
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(26,39,68,0.2), 0 1px 2px rgba(26,39,68,0.12);
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,39,68,0.2), 0 3px 6px rgba(26,39,68,0.1);
  }
  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(26,39,68,0.15);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Urbanist', sans-serif;
    font-size: var(--font-body);
    font-weight: 500;
    border: 1.5px solid rgba(26,39,68,0.15);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .btn-secondary:hover {
    border-color: rgba(26,39,68,0.3);
    box-shadow: var(--shadow-sm);
  }

  /* ═══════════════════ SECTIONS SHARED ═══════════════════ */
  section { padding: 3rem 3rem; scroll-margin-top: 3.5rem; }

  .section-label {
    font-size: var(--font-label);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .section-title {
    font-weight: 300;
    font-size: var(--font-h2);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    text-wrap: balance;
  }

  .section-subtitle {
    font-weight: 300;
    font-size: var(--font-sub);
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 520px;
  }

  /* ═══════════════════ MISSION ═══════════════════ */
  .mission {
    background: var(--bg);
  }
  .mission-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .mission .section-label {
    color: var(--gold);
    font-size: var(--font-label);
  }

  .mission-title {
    font-weight: 300;
    font-size: var(--font-h2);
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0.5rem 0 1.2rem;
    max-width: 720px;
    text-wrap: balance;
  }

  .mission-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2.5rem;
  }

  .mission-column {
    display: flex;
    flex-direction: column;
  }

  .mission-col-label {
    font-size: var(--font-sub);
    font-weight: 500;
    color: var(--gold);
    margin: 0 0 1.2rem 0;
    padding-top: 1.3rem;
    border-top: 3px solid #B8942E;
  }

  .mission-col-text {
    font-weight: 300;
    font-size: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
  }

  /* ═══════════════════ SERVICES ═══════════════════ */
  .services { background: var(--bg-elevated); }
  .services-inner { max-width: 1100px; margin: 0 auto; }

  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
  }
  .service-card {
    flex: 0 1 calc((100% - 2rem) / 2);
  }

  .service-card {
    padding: 2.8rem 2.2rem;
    border-radius: 10px;
    position: relative;
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
  }

  .service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--gold);
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 2rem;
  }
  .service-icon svg {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-weight: 600;
    font-size: var(--font-sub);
    margin-bottom: 0.8rem;
    color: var(--text-primary);
  }

  .service-card p {
    font-weight: 300;
    font-size: var(--font-body);
    line-height: 1.55;
    color: var(--text-secondary);
  }

  /* ═══════════════════ PROCESS ═══════════════════ */
  .process {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
  }
  .process::after {
    content: '';
    position: absolute;
    top: -50%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,148,46,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .process .section-title { color: var(--white); }
  .process .section-subtitle { color: rgba(255,255,255,0.5); }
  .process-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

  .process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-top: 1.5rem;
  }

  .process-step {
    width: calc(33.333% - 1rem);
    padding: 1.5rem 1.5rem;
    position: relative;
  }

  .step-number {
    font-size: var(--font-h2);
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.2rem;
    opacity: 0.4;
  }

  .process-step h3 {
    font-weight: 500;
    font-size: var(--font-sub);
    margin-bottom: 0.8rem;
    color: var(--white);
  }

  .process-step p {
    font-weight: 300;
    font-size: var(--font-body);
    line-height: 1.55;
    color: #8b9ab8;
  }

  /* ═══════════════════ PRICING (Menu style) ═══════════════════ */
  .pricing { background: var(--bg); }

  .menu-inner {
    max-width: 780px;
    margin: 0 auto;
  }

  /* Section headers with numbered line */
  .menu-section { margin-top: 0.8rem; }

  .menu-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .menu-section-num {
    font-weight: 300;
    font-size: var(--font-sub);
    color: var(--gold);
    flex-shrink: 0;
  }

  .menu-section-line {
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
  }

  .menu-section-title {
    font-weight: 600;
    font-size: var(--font-h4);
    color: var(--text-primary);
    margin-bottom: 0.3rem;
  }

  .menu-section-title.menu-title-featured {
    font-weight: 600;
  }

  .menu-section-desc {
    font-weight: 300;
    font-size: var(--font-body);
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
  }

  /* Menu rows */
  .menu-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-subtle);
    gap: 3rem;
  }

  .menu-row > div:first-child {
    flex: 1;
    max-width: 65%;
  }

  .menu-row > div:last-child,
  .menu-row > .menu-item-price {
    text-align: right;
  }

  .menu-row:first-of-type { border-top: 1px solid var(--border-subtle); }

  .menu-section > .menu-row:last-child { border-bottom: none; }

  .menu-row-hero {
    padding: 1rem 0 1.2rem;
    border-bottom: none;
  }

  .menu-row-featured {
    background: rgba(184,148,46,0.04);
    margin: 0 -1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border-bottom: none;
  }

  .menu-item-name {
    font-weight: 400;
    font-size: var(--font-sub);
    color: var(--text-primary);
    line-height: 1.4;
  }

  .menu-item-name.menu-item-primary {
    font-weight: 400;
    font-size: var(--font-sub);
  }

  .menu-item-includes {
    font-weight: 300;
    font-size: var(--font-body);
    color: var(--text-secondary);
    margin-top: 0.5rem;
    line-height: 1.55;
  }

  .menu-item-desc {
    font-weight: 300;
    font-size: var(--font-body);
    color: var(--text-secondary);
    margin-top: 0.2rem;
    line-height: 1.55;
  }
  .menu-item-desc p {
    margin: 0 0 1rem 0;
  }
  .menu-item-desc p:last-child {
    margin-bottom: 0;
  }

  .menu-item-price {
    font-weight: 300;
    font-size: var(--font-price);
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.02em;
  }

  .menu-item-price span {
    font-size: var(--font-tiny);
    font-weight: 400;
    color: var(--text-tertiary);
  }

  .menu-item-price .euro {
    font-size: 0.75em;
    color: inherit;
  }

  .menu-item-price-big {
    font-size: 2.4rem;
    letter-spacing: -0.02em;
  }

  .menu-tag {
    display: inline-block;
    font-size: var(--font-tiny);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    background: rgba(184,148,46,0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
  }

  .menu-footer {
    margin-top: 0;
    padding-top: 0.5rem;
    text-align: center;
  }

  .menu-footer p {
    font-weight: 300;
    font-size: var(--font-body);
    color: var(--text-secondary);
    margin: 0;
  }

  /* ═══════════════════ EQUIPE ═══════════════════ */
  .equipe { background: var(--navy); }
  .equipe .section-label { color: var(--gold); }
  .equipe-inner { max-width: 880px; margin: 0 auto; }

  .equipe-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 1.5rem;
  }

  .equipe-photo {
    flex-shrink: 0;
    padding-top: 0.25rem;
  }

  .equipe-photo img {
    width: 280px;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: block;
  }

  .equipe-text {
    flex: 1;
  }

  .equipe-name {
    font-size: var(--font-h3);
    font-weight: 400;
    color: var(--white);
    margin: 0 0 0.3rem 0;
    padding: 0;
    line-height: 1.2;
  }

  .equipe-role {
    font-size: var(--font-sub);
    font-weight: 500;
    color: var(--gold);
    margin: 0 0 1.5rem 0;
  }

  .equipe-bio {
    font-size: var(--font-body);
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
    margin: 0;
  }

  .equipe-bio + .equipe-bio {
    margin-top: 0.8rem;
  }

  .equipe-bio-full {
    margin-top: 0.8rem !important;
  }

  /* ═══════════════════ FAQ ═══════════════════ */
  .faq {
    background: var(--bg-elevated);
  }

  .faq-inner {
    max-width: 740px;
    margin: 0 auto;
  }

  .faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .faq-item {
    background: var(--bg);
    border-radius: 10px;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
  }

  .faq-item:hover {
    box-shadow: var(--shadow-sm);
  }

  .faq-item.open {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-sm);
  }

  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-size: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    gap: 1rem;
  }

  .faq-question:hover {
    color: var(--navy);
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .faq-icon::before {
    width: 14px; height: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .faq-icon::after {
    width: 2px; height: 14px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }

  .faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-item.open .faq-answer {
    /* max-height doit couvrir la question la plus longue sur mobile étroit.
       Q6 (Hébergement) ≈ 1316px, Q7 (Durabilité) ≈ 1901px.
       4000px = marge de sécurité pour évolution future du contenu.
       RÈGLE : auditer max-height à chaque modif de contenu FAQ. */
    max-height: 4000px;
  }

  .faq-answer-inner {
    padding: 0 1.8rem 1.5rem;
    font-weight: 300;
    font-size: var(--font-body);
    line-height: 1.55;
    color: var(--text-secondary);
  }

  .faq-answer-inner a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(184, 148, 46, 0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
  }

  .faq-answer-inner a:hover {
    text-decoration-color: var(--gold);
  }

  /* ═══════════════════ FINAL CTA ═══════════════════ */
  .final-cta {
    text-align: center;
    background: var(--bg);
    padding: 3rem 2rem;
  }
  .final-cta-inner { max-width: 560px; margin: 0 auto; }

  .final-cta .section-title {
    font-size: var(--font-h2);
    margin-bottom: 1.5rem;
  }

  .final-cta p {
    font-weight: 300;
    font-size: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  /* Balance the two-line tagline evenly rather than letting the browser
     leave a single orphan word ("engagement.") on line 2. Supported by all
     modern browsers; falls back to normal wrapping in older ones. */
  .final-cta-tagline {
    text-wrap: balance;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Copyable email block replacing the old CTA button.
     Pill container holds the address (clickable mailto) + a copy button. */
  .contact-email-block {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem 0.5rem 1.35rem;
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    margin-top: 0.5rem;
    transition: border-color 0.2s ease;
    max-width: 100%;
  }
  .contact-email-block:hover {
    border-color: var(--gold);
  }

  .contact-email-value {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.01em;
    user-select: all;
    transition: color 0.2s ease;
    white-space: nowrap;
  }
  .contact-email-value:hover {
    color: var(--gold);
  }

  .contact-email-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.95rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .contact-email-copy:hover {
    background: var(--gold);
  }
  .contact-email-copy svg {
    flex-shrink: 0;
  }

  .contact-email-feedback {
    display: block;
    min-height: 1.4em;
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }
  .contact-email-feedback.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ═══════════════════ FOOTER ═══════════════════ */
  /* ═══════════════════ FOOTER ═══════════════════ */
  footer {
    background: var(--navy);
    color: #9fb0cc;
    padding: 4rem 2rem 2rem;
    font-weight: 300;
    text-align: left;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand {
    max-width: 280px;
  }

  .footer-brand-name {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
  }

  .footer-brand-tagline {
    font-size: var(--font-small);
    color: #9fb0cc;
    font-weight: 300;
  }

  .footer-col-title {
    font-size: var(--font-tiny);
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-col li {
    margin-bottom: 0.6rem;
    font-size: var(--font-small);
    color: #bcc8dc;
  }

  .footer-col-intro {
    color: #bcc8dc !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.4;
  }

  .footer-col a {
    color: #bcc8dc;
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #bcc8dc;
    font-size: var(--font-small);
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
  }

  .footer-social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(184,148,46,0.05);
  }

  .footer-linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }

  .footer-linkedin-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: var(--font-small);
  }

  .footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-legal-links a {
    color: #9fb0cc;
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-copyright {
    color: #9fb0cc;
  }

  .cta-alt {
    font-size: var(--font-small);
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 1rem;
  }
  .cta-alt a { color: var(--gold); text-decoration: none; }
  .cta-alt a:hover { text-decoration: underline; }

  /* ═══════════════════ CTA Email block ═══════════════════ */
  .cta-email-block {
    margin-top: 1.5rem;
  }

  .cta-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-tertiary);
    font-size: var(--font-tiny);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .cta-separator::before,
  .cta-separator::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(26,39,68,0.2);
  }

  .cta-email-label {
    font-size: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.55;
  }

  .cta-email-link {
    display: inline-block;
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
  }

  .cta-email-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cta-email-link:hover {
    color: var(--gold);
  }

  .cta-email-link:hover::after {
    transform: scaleX(1);
  }

  /* ═══════════════════ LEGAL PAGES ═══════════════════ */
  .legal-page {
    background: var(--white);
    padding: 4rem 3rem;
    border-top: 1px solid var(--border-subtle);
  }
  /* Standalone legal pages (mentions-legales.html, politique-confidentialite.html) sit
     right after the fixed nav, unlike on the homepage where they follow the footer.
     Extra top padding clears the nav, matching .hero's treatment. */
  .legal-page-standalone {
    padding-top: 8rem;
    border-top: none;
  }
  .legal-inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .legal-page h2 {
    font-size: var(--font-h2);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 2rem;
  }
  .legal-page h3 {
    font-size: var(--font-sub);
    font-weight: 500;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
  .legal-page p {
    font-size: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0.5rem 0;
  }
  .legal-page strong {
    font-weight: 500;
    color: var(--text-primary);
  }
  .legal-page a { color: var(--gold); text-decoration: none; }
  .legal-page a:hover { text-decoration: underline; }
  .legal-page em { font-style: italic; color: var(--text-tertiary); }

  /* Placeholders "à compléter" - visibles pour édition, à retirer avant publication */
  .legal-todo {
    background: rgba(184, 148, 46, 0.08);
    border-left: 3px solid var(--gold);
    padding: 0.85rem 1.15rem;
    margin: 0.75rem 0;
    border-radius: 0 6px 6px 0;
  }
  .legal-todo::before {
    content: "⚠ À COMPLÉTER - ";
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
    font-size: 0.85em;
  }
  .legal-todo-inline {
    background: rgba(184, 148, 46, 0.14);
    color: var(--gold);
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.92em;
    font-style: italic;
  }

  footer a { color: var(--gold); text-decoration: none; }

  /* ═══════════════════ ANIMATIONS ═══════════════════ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.22s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.34s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.46s; }

  /* ═══════════════════ RESPONSIVE ═══════════════════ */
  .nav-hamburger { display: none; }
  .nav-cta-mobile { display: none; }
  .mobile-menu { display: none; }
  .mobile-break { display: none; }
  .desktop-break { display: inline; }

  /* ═══════════════════ MOBILE ═══════════════════ */

  /* ═══════════════════ TABLET & MOBILE (nav + hero adjustments) ═══════════════════ */
  @media (max-width: 1024px) {
    nav {
      padding: 1.1rem 1.25rem 0.5rem;
    }

    .nav-logo svg { height: 38px; }

    .nav-links { display: none; }

    /* CTA compact en header */
    .nav-cta-mobile {
      display: inline-flex;
      align-items: center;
      padding: 0.5rem 1rem;
      background: var(--navy);
      color: var(--white);
      font-family: 'Urbanist', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      border-radius: 6px;
      text-decoration: none;
      margin-left: auto;
      margin-right: 0.8rem;
      box-shadow: 0 1px 3px rgba(26,39,68,0.2), 0 1px 2px rgba(26,39,68,0.12);
    }

    /* Hamburger button */
    .nav-hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 28px;
      height: 28px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 1px;
      transition: all 0.3s ease;
    }
    .nav-hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile menu overlay - liste simple, tout se suit du haut vers le bas */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 99;
      background: var(--bg);
      padding: 5.5rem 2rem 2rem;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 2rem;
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }

    /* Zone haute : tagline */
    .mobile-menu-top {
      width: 100%;
      text-align: center;
    }
    .mobile-menu-tagline {
      font-family: 'Urbanist', sans-serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--gold);
      letter-spacing: 0.03em;
      margin: 0;
    }

    /* Zone centrale : liens de navigation */
    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.4rem;
    }
    .mobile-menu-links a {
      font-family: 'Urbanist', sans-serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-menu-links a:hover { color: var(--text-primary); }

    /* Zone basse : CTA + email */
    .mobile-menu-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: 100%;
    }
    .mobile-menu-email {
      font-family: 'Urbanist', sans-serif;
      font-size: var(--font-small);
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-menu-email:hover { color: var(--text-primary); }

    .mobile-menu .mobile-cta {
      margin-top: 0;
      padding: 0.8rem 2.2rem;
      background: var(--navy);
      color: var(--white);
      border-radius: 8px;
      font-weight: 500;
      font-size: 1.1rem;
      text-decoration: none;
      box-shadow: 0 1px 3px rgba(26,39,68,0.2), 0 1px 2px rgba(26,39,68,0.12);
    }

    /* Hero : retire min-height 100vh (contenu détermine hauteur) + padding tablette adapté */
    .hero {
      min-height: auto;
      padding: 7rem 2.5rem 5rem;
    }
    .hero-content { max-width: 100%; }
    .legal-page-standalone { padding-top: 7rem; }

    /* Équipe : photo centrée au-dessus du texte (iPad Air, iPad, iPad Mini)
       Empêche la photo décalée à gauche avec colonne texte étroite */
    .equipe-content {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .equipe-text {
      width: 100%;
    }
    .equipe-bio { text-align: left; }
  }

  /* Mobile */
  @media (max-width: 768px) {
    /* Hero mobile - compact layout (override le padding tablette de 1024px) */
    .hero {
      padding: 7rem 1.5rem 4rem;
    }

    .hero-badge--caps {
      letter-spacing: 0.03em;
      font-weight: 500;
      margin-bottom: 2rem;
      gap: 0.7rem;
    }
    .hero-badge--caps span { text-align: center; }
    .mobile-break { display: inline; }
    .hero-badge--caps::before,
    .hero-badge--caps::after {
      width: 24px;
    }
    .hero-badge--accent { margin-bottom: 1.5rem; }
    .hero-badge--pill { margin-bottom: 1.5rem; }
    .hero-badge--refonte {
      margin-bottom: 1.5rem;
      font-size: 13px;
      letter-spacing: 0.16em;
    }

    .hero h1 {
      margin-bottom: 1.5rem;
    }

    .hero-sub {
      margin: 0 0 1.4rem;
    }

    .hero-quote {
      padding-left: 14px;
      margin: 0 0 1.8rem;
      font-size: 1.1rem;
    }

    .hero-ctas {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.6rem;
      margin: 0;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
      justify-content: center;
      padding: 0.8rem 2rem;
    }

    /* ═══ Mobile sections - consistent hierarchy ═══ */
    section { padding: 2.5rem 1.5rem; scroll-margin-top: 3rem; }

    .section-label { margin-bottom: 1rem; }
    .section-title { font-size: var(--font-h2); margin-bottom: 1rem; }
    .services-grid { gap: 1.2rem; }
    .services-inner { max-width: 100%; }
    .desktop-break { display: none; }
    .service-card { flex: 0 1 100%; padding: 2rem 1.5rem; }    .service-icon { width: 34px; height: 34px; margin-bottom: 1.5rem; }
    .service-icon svg { width: 34px; height: 34px; }

    /* Process mobile */
    .process { padding-bottom: 1rem; }
    .process-steps { gap: 0.5rem; }
    .process-inner { max-width: 100%; }
    .process-step { width: 100%; padding: 1.5rem 0.5rem; }
    .step-number { font-size: 2.5rem; margin-bottom: 1rem; }    .process .section-subtitle { color: rgba(255,255,255,0.5); }

    /* Pricing mobile */
    .menu-inner { max-width: 100%; }
    .menu-section { margin-top: 1.2rem; }
    .menu-row {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 0.8rem 1rem;
      padding: 1.5rem 0;
    }
    .menu-row > div:first-child {
      display: contents;
    }
    .menu-row .menu-item-name {
      order: 1;
      flex: 1 1 auto;
      min-width: 0;
      max-width: calc(100% - 9rem);
    }
    .menu-row > .menu-item-price {
      order: 2;
      flex-shrink: 0;
      margin-left: auto;
      background: rgba(184,148,46,0.08);
      padding: 0.3rem 0.8rem;
      border-radius: 6px;
      color: var(--navy);
    }

    .menu-row .menu-item-includes,
    .menu-row .menu-item-desc {
      order: 3;
      flex: 1 1 100%;
      max-width: 100%;
    }

    .menu-row .menu-item-name {
      order: 1;
      flex: 1 1 auto;
      max-width: calc(100% - 8rem);
    }
    .menu-row .menu-item-budget {
      order: 4;
      flex: 0 0 auto;
      max-width: 100%;
    }
    .menu-row-featured { margin: 0 -1rem; padding: 1rem; }
    .menu-item-price-big { font-size: var(--font-h3); font-weight: 500; line-height: 1; }
    .menu-item-price { font-weight: 400; }
    .menu-footer { margin-top: 0; padding-top: 0.5rem; }
    .menu-footer .btn-primary { width: auto; padding: 0.8rem 2rem; margin-top: 1.5rem !important; }
    .pricing { padding-bottom: 2.5rem !important; }

    /* Mission mobile */
    .mission-inner { max-width: 100%; padding: 0 1.5rem; }
    .mission-title { max-width: 100%; margin-bottom: 1rem; }
    .mission-columns { grid-template-columns: 1fr; gap: 2rem; margin-top: 1.9rem; }

    /* Equipe mobile */
    .equipe-inner { max-width: 100%; padding: 0 1.5rem; }
    .equipe-content {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .equipe-photo img { width: 260px; height: 325px; }
    .equipe-bio { text-align: left; }

    /* FAQ mobile */
    .faq-inner { max-width: 100%; }
    .faq-question { padding: 1.2rem 1.4rem; }
    .faq-answer-inner { padding: 0 1.4rem 1.2rem; }
    .faq-list { gap: 0.6rem; }

    /* CTA mobile */
    .final-cta { padding: 2.5rem 1.5rem; }
    .final-cta-tagline { max-width: 100%; }

    /* Pill collapses to vertical on narrow screens so the email address
       doesn't overflow the container. */
    .contact-email-block {
      flex-direction: column;
      align-items: stretch;
      padding: 1rem;
      border-radius: 1rem;
      gap: 0.75rem;
      width: 100%;
      max-width: 340px;
    }
    .contact-email-value {
      font-size: 0.95rem;
      text-align: center;
      white-space: normal;
      word-break: break-all;
    }
    .contact-email-copy {
      justify-content: center;
      padding: 0.65rem 1rem;
    }

    /* Back to top mobile */
    .back-to-top-a {
      bottom: 1.5rem;
      right: 1.5rem;
      width: 44px;
      height: 44px;
    }

    /* Footer mobile */
    footer { 
      padding: 3rem 1.5rem 1.5rem;
    }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    /* Legal pages mobile */
    .legal-page { padding: 2.5rem 1.5rem; }
    .legal-page-standalone { padding-top: 7rem; }
  }

  /* Small phones */
  /* Mobile étroit : tag "Partenaire" passe en dessous du titre
     (>500px : reste inline-block à côté du titre comme desktop) */
  @media (max-width: 500px) {
    .menu-tag {
      display: block;
      width: fit-content;
      margin-top: 0.3rem;
      margin-left: 0;
    }
  }

  @media (max-width: 380px) {
    section { padding: 2rem 1.2rem; }

    .hero h1 { margin-bottom: 2rem; }
    .hero-sub { margin-bottom: 1.5rem; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary { padding: 0.7rem 1.5rem; }

    .cta-email-link { font-size: var(--font-body); word-break: break-all; }

    .nav-logo svg { height: 32px; }
    .service-card { padding: 1.5rem 1.2rem; }
    .process-step { padding: 1.2rem 0.3rem; }
    .process { padding-bottom: 0.8rem !important; }
    .menu-item-price-big { font-size: var(--font-h3); }    .menu-row .menu-item-name { max-width: calc(100% - 8rem); }
    .faq-question { padding: 1rem 1.2rem; }
    .faq-answer-inner { padding: 0 1.2rem 1rem; }

    .mission-col-text { line-height: 1.55; }
    .mission-title { max-width: 100%; }
    .equipe-photo img { width: 220px; height: 275px; }
    footer { padding: 2rem 1.2rem; }
  }

  /* Option A : règle minimale — approche B2B standard.
     Le hero prend sa hauteur naturelle avec padding respirant,
     contenu utilise 100% de la largeur, on accepte que ça scrolle un peu.
     Hero-sub max-width est géré par la base (700px) pour équilibre 2 lignes. */
  @media (max-height: 500px) and (orientation: landscape) {
    .hero {
      min-height: auto;
      padding: 6.5rem 2rem 3rem;
    }
  }

  /* ═══════════════════ BACK TO TOP ═══════════════════ */

  /* Version A - Cercle avec flèche */
  .back-to-top-a {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(26,39,68,0.25);
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  .back-to-top-a.visible {
    display: flex;
    opacity: 1;
  }
  .back-to-top-a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26,39,68,0.35);
  }

  /* Version B - Pilule avec texte */
  .back-to-top-b {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    box-shadow: 0 2px 12px rgba(26,39,68,0.25);
    z-index: 90;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
  }
  .back-to-top-b.visible {
    display: flex;
    opacity: 1;
  }
  .back-to-top-b:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26,39,68,0.35);
  }

  /* Show only one at a time - toggle .hidden to compare */
  .back-to-top.hidden { display: none !important; }

