  /* ============================================
     CHARTE FEATLOVE — Variables
     ============================================ */
  :root {
    --c-noir: #0a0a0a;
    --c-bleu-nuit: #040824;
    --c-brun: #492911;
    --c-creme: #fffbf6;
    --c-rose: #ca6d74;
    --c-creme-soft: #f7f1e8;
    --c-noir-soft: rgba(10, 10, 10, 0.72);
    --c-noir-mute: rgba(10, 10, 10, 0.55);
    --c-line: rgba(73, 41, 17, 0.18);

    --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --f-titre: 'Maven Pro', 'Helvetica Neue', sans-serif;
    --f-corps: 'Poppins', 'Helvetica Neue', sans-serif;

    --max: 1320px;
    --gutter: clamp(20px, 4vw, 56px);
    --section-y: clamp(80px, 10vw, 140px);
  }

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

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--f-corps);
    font-weight: 300;
    color: var(--c-noir);
    background: var(--c-creme);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ============================================
     TYPOGRAPHIE
     ============================================ */
  .display {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.05;
  }
  .titre {
    font-family: var(--f-titre);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .eyebrow {
    font-family: var(--f-titre);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    color: var(--c-brun);
  }

  /* ============================================
     LAYOUT GENERIQUE
     ============================================ */
  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .section { padding: var(--section-y) 0; position: relative; }
  .section--dark { background: var(--c-bleu-nuit); color: var(--c-creme); }
  .section--dark .eyebrow { color: var(--c-rose); }

  /* ============================================
     NAVIGATION
     ============================================ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 10px var(--gutter);
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
  }
  .nav.scrolled {
    background: rgba(255, 251, 246, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 6px var(--gutter);
    border-bottom: 1px solid var(--c-line);
  }
  .nav__logo {
    display: inline-block;
    width: 78px;
    height: 78px;
    background: url(../images/logo-featlove-white.svg) no-repeat center / contain;
    transition: width 0.4s ease, height 0.4s ease, background-image 0.3s ease;
  }
  .nav.scrolled .nav__logo {
    background-image: url(../images/logo-featlove-black.svg);
    width: 64px;
    height: 64px;
  }

  .nav__links {
    display: flex; gap: 36px; align-items: center;
    list-style: none;
  }
  .nav__links a {
    font-family: var(--f-titre);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-creme);
    opacity: 0.85;
    transition: opacity 0.3s ease, color 0.4s ease;
    position: relative;
  }
  .nav.scrolled .nav__links a { color: var(--c-noir); }
  .nav__links a:hover { opacity: 1; }
  .nav__links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
    height: 1px; background: currentColor; transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .nav__links a:hover::after { transform: scaleX(1); }

  .nav__cta {
    padding: 12px 24px;
    background: var(--c-noir);
    color: var(--c-creme) !important;
    border-radius: 100px;
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 1 !important;
    border: 1px solid var(--c-noir);
  }
  .nav__cta:hover { background: var(--c-rose); border-color: var(--c-rose); color: var(--c-creme) !important; }
  .nav.scrolled .nav__cta { background: var(--c-noir); color: var(--c-creme) !important; border-color: var(--c-noir); }
  .nav.scrolled .nav__cta:hover { background: var(--c-brun); border-color: var(--c-brun); }
  .nav__cta::after { display: none; }

  .nav__burger {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
  }
  .nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-creme);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.35s ease;
    transform-origin: center;
  }
  .nav.scrolled .nav__burger span { background: var(--c-noir); }

  /* ============================================
     BOUTONS
     ============================================ */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 34px;
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.35s ease;
    border: 1px solid transparent;
  }
  .btn--primary { background: var(--c-noir); color: var(--c-creme); }
  .btn--primary:hover { background: var(--c-brun); transform: translateY(-2px); }
  .btn--light { background: var(--c-creme); color: var(--c-noir); }
  .btn--light:hover { background: var(--c-rose); color: var(--c-creme); transform: translateY(-2px); }
  .btn--ghost {
    background: transparent;
    color: var(--c-creme);
    border-color: rgba(255, 251, 246, 0.4);
  }
  .btn--ghost:hover { background: var(--c-creme); color: var(--c-noir); }
  .btn--outline {
    background: transparent;
    color: var(--c-noir);
    border-color: var(--c-noir);
  }
  .btn--outline:hover { background: var(--c-noir); color: var(--c-creme); }
  .btn__arrow { transition: transform 0.3s ease; }
  .btn:hover .btn__arrow { transform: translateX(4px); }

  /* ============================================
     HERO
     ============================================ */
  .hero {
    height: 100vh; min-height: 640px;
    position: relative;
    overflow: hidden;
    color: var(--c-creme);
    display: flex; align-items: flex-end;
  }
  .hero__bg {
    position: absolute; inset: 0;
    background: url('../images/hero-couple-coucher-soleil.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: kenburns 16s ease-out forwards;
  }
  @keyframes kenburns {
    to { transform: scale(1); }
  }
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(4, 8, 36, 0.35) 0%, rgba(4, 8, 36, 0) 35%, rgba(4, 8, 36, 0.7) 100%);
  }
  .hero__inner {
    position: relative; z-index: 2;
    width: 100%;
    padding: 0 var(--gutter) clamp(60px, 10vh, 100px);
    max-width: var(--max); margin: 0 auto;
  }
  .hero__eyebrow {
    color: rgba(255, 251, 246, 0.85);
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }
  .hero__title {
    font-size: clamp(44px, 7.5vw, 104px);
    margin-bottom: 28px;
    max-width: 14ch;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.5s forwards;
  }
  .hero__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-creme);
  }
  .hero__sub {
    max-width: 480px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 251, 246, 0.92);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.7s forwards;
  }
  .hero__actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.9s forwards;
  }

  .hero__scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--f-titre);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 251, 246, 0.65);
    writing-mode: vertical-rl;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
  }
  .hero__scroll::after {
    content: ''; display: block;
    width: 1px; height: 40px;
    background: rgba(255, 251, 246, 0.5);
    margin: 12px auto 0;
    animation: scrollPulse 2s ease infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.4); opacity: 1; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ============================================
     POUR QUI (LE MIROIR)
     ============================================ */
  .miroir { padding: clamp(80px, 9vw, 130px) 0; }
  .miroir__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
  }
  .miroir__title {
    font-size: clamp(38px, 5vw, 68px);
    color: var(--c-bleu-nuit);
  }
  .miroir__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .miroir__text p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--c-noir-soft);
    margin-bottom: 18px;
  }
  .miroir__text p:last-child { margin-bottom: 0; }
  .miroir__text strong {
    color: var(--c-noir);
    font-weight: 500;
  }

  /* ============================================
     UNIVERS / À PROPOS
     ============================================ */
  .univers {
    background: var(--c-bleu-nuit);
    color: var(--c-creme);
    overflow: hidden;
  }
  .univers__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  .univers__media {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
  }
  .univers__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s ease;
  }
  .univers__media:hover img { transform: scale(1.04); }
  .univers__eyebrow { color: var(--c-rose); margin-bottom: 24px; }
  .univers__stats {
    display: flex;
    gap: 48px;
    margin: 36px 0 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 251, 246, 0.15);
    border-bottom: 1px solid rgba(255, 251, 246, 0.15);
  }
  .univers__stat strong {
    display: block;
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 500;
    font-size: 36px;
    color: var(--c-rose);
    line-height: 1;
    margin-bottom: 6px;
  }
  .univers__stat span {
    font-family: var(--f-titre);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 251, 246, 0.75);
  }
  .univers__title {
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 32px;
  }
  .univers__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
  }
  .univers__text p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 251, 246, 0.85);
    margin-bottom: 18px;
  }
  .univers__signature {
    margin-top: 36px;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 28px;
    color: var(--c-creme);
  }
  .univers__signature small {
    display: block;
    font-family: var(--f-titre);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-rose);
    margin-top: 6px;
  }

  /* ============================================
     GALERIE
     ============================================ */
  .galerie__head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(50px, 6vw, 80px);
  }
  .galerie__title {
    font-size: clamp(40px, 5.5vw, 72px);
    margin: 18px 0 20px;
    color: var(--c-bleu-nuit);
  }
  .galerie__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .galerie__sub {
    font-size: 16px;
    color: var(--c-noir-soft);
    line-height: 1.7;
  }

  .galerie__grid {
    columns: 3;
    column-gap: 14px;
  }
  .galerie__item {
    overflow: hidden;
    position: relative;
    break-inside: avoid;
    margin-bottom: 14px;
    display: block;
    cursor: zoom-in;
  }
  .galerie__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease, filter 0.4s ease;
  }
  .galerie__item:hover img { transform: scale(1.04); filter: brightness(1.05); }
  .galerie__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4, 8, 36, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .galerie__item:hover::after { opacity: 1; }

  .galerie__more {
    text-align: center;
    margin-top: 60px;
  }

  /* ============================================
     LIGHTBOX
     ============================================ */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 36, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .lightbox.open { display: flex; opacity: 1; }
  .lightbox__img-wrap {
    max-width: 92vw;
    max-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox__img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease;
  }
  .lightbox__close, .lightbox__nav {
    position: absolute;
    background: rgba(255, 251, 246, 0.1);
    border: 1px solid rgba(255, 251, 246, 0.2);
    color: var(--c-creme);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 22px;
    z-index: 2;
  }
  .lightbox__close:hover, .lightbox__nav:hover {
    background: rgba(255, 251, 246, 0.2);
    transform: scale(1.05);
  }
  .lightbox__close { top: 30px; right: 30px; }
  .lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
  .lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
  .lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
  .lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }
  .lightbox__counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 251, 246, 0.7);
    font-family: var(--f-titre);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  body.lightbox-open { overflow: hidden; }

  @media (max-width: 640px) {
    .lightbox__close { top: 16px; right: 16px; width: 44px; height: 44px; }
    .lightbox__nav { width: 44px; height: 44px; }
    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
  }

  /* ============================================
     OFFRES / TARIFS
     ============================================ */
  .offres { background: var(--c-creme-soft); }
  .offres__head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(50px, 6vw, 80px);
  }
  .offres__title {
    font-size: clamp(40px, 5.5vw, 72px);
    margin: 18px 0 20px;
    color: var(--c-bleu-nuit);
  }
  .offres__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .offres__sub {
    font-size: 16px;
    color: var(--c-noir-soft);
  }

  .offres__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .offre {
    background: var(--c-creme);
    padding: 44px 36px 40px;
    border: 1px solid var(--c-line);
    display: flex; flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }
  .offre:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -20px rgba(4, 8, 36, 0.18);
  }
  .offre--featured {
    background: var(--c-bleu-nuit);
    color: var(--c-creme);
    border-color: var(--c-bleu-nuit);
  }
  .offre--featured .offre__name { color: var(--c-rose); }
  .offre--featured .offre__price { color: var(--c-creme); }
  .offre--featured .offre__price small { color: rgba(255, 251, 246, 0.55); }
  .offre--featured .offre__features li { color: rgba(255, 251, 246, 0.85); }
  .offre--featured .offre__features li::before { background: var(--c-rose); }
  .offre--featured .btn { background: var(--c-creme); color: var(--c-noir); }
  .offre--featured .btn:hover { background: var(--c-rose); color: var(--c-creme); }
  .offre--featured .offre__badge {
    position: absolute; top: -14px; right: 24px;
    background: var(--c-rose); color: var(--c-creme);
    padding: 6px 14px;
    font-family: var(--f-titre);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 100px;
  }
  .offre__name {
    font-family: var(--f-titre);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-brun);
    margin-bottom: 10px;
  }
  .offre__tagline {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: inherit;
    opacity: 0.92;
  }
  .offre__price {
    font-family: var(--f-titre);
    font-size: 48px;
    font-weight: 800;
    color: var(--c-noir);
    line-height: 1;
    margin-bottom: 4px;
  }
  .offre__price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-noir-mute);
    letter-spacing: 0;
    text-transform: none;
    margin-left: 4px;
  }
  .offre__divider {
    height: 1px; background: var(--c-line);
    margin: 28px 0 24px;
  }
  .offre--featured .offre__divider { background: rgba(255, 251, 246, 0.15); }
  .offre__features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
  }
  .offre__features li {
    padding: 10px 0 10px 24px;
    font-size: 14.5px;
    color: var(--c-noir-soft);
    position: relative;
    line-height: 1.55;
  }
  .offre__features li::before {
    content: ''; position: absolute;
    left: 0; top: 18px;
    width: 12px; height: 1px;
    background: var(--c-brun);
  }
  .offre__cta { margin-top: auto; }
  .offre__cta .btn { width: 100%; justify-content: center; }

  .offres__note {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: var(--c-noir-mute);
    font-style: italic;
  }

  /* ============================================
     TÉMOIGNAGES
     ============================================ */
  .temoignages { background: var(--c-creme); }
  .temoignages__head {
    text-align: center;
    margin-bottom: 70px;
  }
  .temoignages__title {
    font-size: clamp(38px, 5vw, 64px);
    margin: 16px 0 20px;
    color: var(--c-bleu-nuit);
  }
  .temoignages__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .temoignages__rating {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
    padding: 12px 22px;
    background: var(--c-creme-soft);
    border-radius: 100px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stars { color: #fbbf24; letter-spacing: 4px; font-size: 19px; line-height: 1; }
  .rating-score {
    font-family: var(--f-titre);
    font-size: 15px;
    font-weight: 600;
    color: var(--c-noir);
  }
  .rating-score strong { font-size: 18px; font-weight: 800; }
  .rating-source {
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 500;
    color: var(--c-noir-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .temoignages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .temoignage {
    background: var(--c-creme-soft);
    padding: 44px 36px 38px;
    position: relative;
  }
  .temoignage::before {
    content: '"';
    font-family: var(--f-display);
    font-style: italic;
    font-size: 90px;
    line-height: 1;
    color: var(--c-rose);
    position: absolute;
    top: 18px; left: 26px;
    opacity: 0.18;
  }
  .temoignage__text {
    font-family: var(--f-corps);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--c-noir);
    margin: 18px 0 28px;
    position: relative;
    z-index: 1;
  }
  .temoignage__author {
    font-family: var(--f-titre);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--c-noir);
  }
  .temoignage__author small {
    display: block;
    font-weight: 400;
    color: var(--c-noir-mute);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 10px;
    margin-top: 4px;
  }
  .temoignages__cta {
    text-align: center;
    margin-top: 50px;
  }

  /* ============================================
     MÉTHODE
     ============================================ */
  .methode { background: var(--c-creme-soft); }
  .methode__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(50px, 6vw, 80px);
  }
  .methode__title {
    font-size: clamp(40px, 5.5vw, 68px);
    margin: 16px 0 20px;
    color: var(--c-bleu-nuit);
  }
  .methode__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }

  .etapes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
  }
  .etapes::before {
    content: '';
    position: absolute;
    top: 30px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: var(--c-line);
    z-index: 0;
  }
  .etape {
    text-align: center;
    position: relative; z-index: 1;
  }
  .etape__num {
    width: 60px; height: 60px;
    margin: 0 auto 24px;
    background: var(--c-creme);
    border: 1px solid var(--c-brun);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 24px;
    color: var(--c-brun);
  }
  .etape__title {
    font-family: var(--f-titre);
    font-size: 18px;
    font-weight: 600;
    color: var(--c-bleu-nuit);
    margin-bottom: 12px;
  }
  .etape__text {
    font-size: 14.5px;
    color: var(--c-noir-soft);
    line-height: 1.65;
  }

  /* ============================================
     FAQ
     ============================================ */
  .faq__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(50px, 6vw, 70px);
  }
  .faq__title {
    font-size: clamp(38px, 5vw, 60px);
    margin: 16px 0 20px;
    color: var(--c-bleu-nuit);
  }
  .faq__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .faq__list {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq__item {
    border-bottom: 1px solid var(--c-line);
  }
  .faq__item:first-child { border-top: 1px solid var(--c-line); }
  .faq__q {
    width: 100%;
    text-align: left;
    padding: 26px 50px 26px 0;
    font-family: var(--f-titre);
    font-size: 17px;
    font-weight: 600;
    color: var(--c-bleu-nuit);
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .faq__q:hover { color: var(--c-brun); }
  .faq__q::after {
    content: '+';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    color: var(--c-brun);
    transition: transform 0.3s ease;
  }
  .faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
  .faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq__item.open .faq__a {
    max-height: 400px;
    padding-bottom: 28px;
  }
  .faq__a p {
    font-size: 15.5px;
    color: var(--c-noir-soft);
    line-height: 1.75;
  }

  /* ============================================
     CTA FINAL + CALENDLY
     ============================================ */
  .final {
    background: var(--c-bleu-nuit);
    color: var(--c-creme);
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(202, 109, 116, 0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .final__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
  }
  .final__title {
    font-size: clamp(42px, 6vw, 80px);
    margin: 18px 0 24px;
    line-height: 1.05;
  }
  .final__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-rose);
  }
  .final__sub {
    font-size: 17px;
    color: rgba(255, 251, 246, 0.82);
    line-height: 1.7;
  }
  .final .eyebrow { color: var(--c-rose); }

  .calendly-inline-widget,
  .final__cta {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .btn--xl {
    padding: 24px 56px;
    font-size: 14px;
    letter-spacing: 0.22em;
  }
  .final__meta {
    margin-top: 24px;
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 251, 246, 0.65);
  }

  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background: var(--c-noir);
    color: rgba(255, 251, 246, 0.7);
    padding: 70px 0 30px;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 251, 246, 0.1);
  }
  .footer__brand {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url(../images/logo-featlove-white.svg) no-repeat center / contain;
    margin-bottom: 18px;
  }
  .footer__tag {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    color: var(--c-rose);
    margin-bottom: 18px;
  }
  .footer__about {
    font-size: 14px;
    line-height: 1.65;
    max-width: 320px;
  }
  .footer__col h4 {
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-creme);
    margin-bottom: 18px;
  }
  .footer__col ul { list-style: none; }
  .footer__col li { margin-bottom: 10px; }
  .footer__col a {
    font-size: 14px;
    color: rgba(255, 251, 246, 0.7);
    transition: color 0.3s ease;
  }
  .footer__col a:hover { color: var(--c-rose); }
  .footer__bottom {
    padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px;
    color: rgba(255, 251, 246, 0.5);
  }

  /* ============================================
     ANIMATIONS AU SCROLL
     ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 980px) {
    .miroir__grid,
    .univers__grid,
    .offres__grid,
    .temoignages__grid,
    .footer__top {
      grid-template-columns: 1fr;
    }
    .etapes { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .etapes::before { display: none; }
    .galerie__grid { columns: 2; column-gap: 10px; }
    .galerie__item { margin-bottom: 10px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  }
  @media (max-width: 640px) {
    /* Menu mobile : overlay plein écran fiable sur toutes les pages */
    .nav__links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 28px;
      background: var(--c-creme);
      padding: 100px 24px 60px;
      margin: 0;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      z-index: 100;
    }
    body.menu-open .nav__links {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    /* Liens : style uniforme, gros et lisibles, indépendants du mode nav.
       :not(.nav__cta) pour ne PAS toucher au bouton CTA qui a son propre style. */
    .nav__links li { list-style: none; }
    .nav__links a:not(.nav__cta),
    body.menu-open .nav__links a:not(.nav__cta),
    .nav.scrolled .nav__links a:not(.nav__cta),
    .nav.nav--solid .nav__links a:not(.nav__cta) {
      color: var(--c-noir) !important;
      font-family: var(--f-titre);
      font-size: 20px !important;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 1 !important;
      padding: 8px 4px;
      display: inline-block;
    }
    .nav__links a:not(.nav__cta)::after { display: none !important; }

    /* CTA dans le menu mobile : taille raisonnable, pas géant.
       Spécificité boostée avec body.menu-open pour battre les règles globales. */
    body.menu-open .nav__links .nav__cta,
    .nav .nav__links .nav__cta,
    .nav.nav--solid .nav__links .nav__cta,
    .nav.scrolled .nav__links .nav__cta {
      background: var(--c-noir) !important;
      color: var(--c-creme) !important;
      font-family: var(--f-titre) !important;
      font-size: 12px !important;
      font-weight: 600 !important;
      padding: 14px 28px !important;
      border-radius: 100px !important;
      letter-spacing: 0.15em !important;
      text-transform: uppercase !important;
      margin-top: 16px;
      border: 1px solid var(--c-noir) !important;
      display: inline-block !important;
    }

    /* Burger : par-dessus le menu */
    .nav__burger {
      display: flex;
      cursor: pointer;
      position: relative;
      z-index: 101;
      width: 28px;
      height: 22px;
    }

    /* Logo nav mobile */
    .nav__logo { width: 60px; height: 60px; position: relative; z-index: 101; }
    .nav.scrolled .nav__logo,
    .nav.nav--solid .nav__logo { width: 50px; height: 50px; }

    /* Quand menu ouvert, la barre de nav devient transparente pour ne pas gêner */
    body.menu-open .nav,
    body.menu-open .nav.scrolled,
    body.menu-open .nav.nav--solid {
      background: transparent;
      border-bottom: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    /* Hero */
    .hero { min-height: 560px; }
    .hero__title { font-size: 44px; }
    .miroir__title, .univers__title, .galerie__title,
    .offres__title, .temoignages__title, .methode__title, .final__title { font-size: 38px; }
    .etapes { grid-template-columns: 1fr; }
    .galerie__grid { columns: 1; }
    .footer__top { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .offre { padding: 36px 28px; }
    .temoignage { padding: 34px 26px; }
  }

  /* ============================================
     PAGES INTERNES (tarifs, galerie)
     ============================================ */
  .page-hero {
    padding: 180px 0 80px;
    background: var(--c-creme);
    border-bottom: 1px solid var(--c-line);
  }
  .page-hero--galerie {
    background: var(--c-bleu-nuit);
    color: var(--c-creme);
    border-bottom: none;
  }
  .page-hero--galerie .page-hero__eyebrow { color: var(--c-rose); }
  .page-hero__inner {
    max-width: 820px;
  }
  .page-hero__eyebrow { color: var(--c-brun); margin-bottom: 22px; }
  .page-hero__title {
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--c-bleu-nuit);
  }
  .page-hero--galerie .page-hero__title { color: var(--c-creme); }
  .page-hero__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .page-hero--galerie .page-hero__title em { color: var(--c-rose); }
  .page-hero__sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--c-noir-soft);
    max-width: 620px;
  }
  .page-hero--galerie .page-hero__sub { color: rgba(255, 251, 246, 0.85); }

  /* Section "narrow" pour la philosophie */
  .section--narrow .container { max-width: 1100px; }
  .section--soft { background: var(--c-creme-soft); }

  /* PHILOSOPHIE TARIFAIRE */
  .philo {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: start;
  }
  .philo__title {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--c-bleu-nuit);
  }
  .philo__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .philo__text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--c-noir-soft);
    margin-bottom: 18px;
  }
  .philo__text strong { color: var(--c-noir); font-weight: 500; }

  /* INCLUS DANS TOUTES LES FORMULES */
  .inclus { background: var(--c-bleu-nuit); color: var(--c-creme); }
  .inclus__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(50px, 6vw, 80px);
  }
  .inclus .eyebrow { color: var(--c-rose); }
  .inclus__title {
    font-size: clamp(40px, 5.5vw, 64px);
    color: var(--c-creme);
    margin: 16px 0 20px;
  }
  .inclus__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-rose);
  }
  .inclus__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 28px;
  }
  .inclus__item {
    text-align: left;
  }
  .inclus__icon {
    font-size: 22px;
    color: var(--c-rose);
    margin-bottom: 14px;
  }
  .inclus__item h3 {
    font-family: var(--f-titre);
    font-size: 16px;
    font-weight: 600;
    color: var(--c-creme);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .inclus__item p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 251, 246, 0.7);
  }

  /* OPTIONS */
  .options { background: var(--c-creme); }
  .options__head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(50px, 6vw, 70px);
  }
  .options__title {
    font-size: clamp(40px, 5.5vw, 64px);
    color: var(--c-bleu-nuit);
    margin: 16px 0 20px;
  }
  .options__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .options__sub {
    font-size: 16px;
    color: var(--c-noir-soft);
  }
  .options__list {
    max-width: 880px;
    margin: 0 auto;
  }
  .option {
    padding: 28px 0;
    border-bottom: 1px solid var(--c-line);
  }
  .option:first-child { border-top: 1px solid var(--c-line); }
  .option__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .option__name {
    font-family: var(--f-titre);
    font-size: 19px;
    font-weight: 600;
    color: var(--c-bleu-nuit);
    letter-spacing: -0.01em;
  }
  .option__price {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 24px;
    color: var(--c-brun);
    white-space: nowrap;
  }
  .option__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-noir-soft);
    max-width: 720px;
  }
  .option__desc em {
    color: var(--c-rose);
    font-style: italic;
  }
  .option__desc strong {
    color: var(--c-noir);
    font-weight: 500;
  }
  .option--highlight {
    background: var(--c-creme-soft);
    padding: 28px 28px;
    border-bottom: none;
    border-top: none;
    margin: 8px 0;
  }
  .option--highlight + .option { border-top: 1px solid var(--c-line); }
  .option--highlight .option__name { color: var(--c-bleu-nuit); }

  /* GALERIE PAGE COMPLÈTE */
  .galerie-full { padding-top: 80px; padding-bottom: 100px; }
  .galerie__grid--full {
    columns: 3;
    column-gap: 18px;
  }
  .galerie__grid--full .galerie__item {
    margin-bottom: 18px;
  }

  @media (max-width: 980px) {
    .philo { grid-template-columns: 1fr; }
    .inclus__grid { grid-template-columns: repeat(2, 1fr); }
    .galerie__grid--full { columns: 2; column-gap: 12px; }
    .galerie__grid--full .galerie__item { margin-bottom: 12px; }
    .page-hero { padding: 140px 0 60px; }
  }
  @media (max-width: 640px) {
    .inclus__grid { grid-template-columns: 1fr; gap: 26px; }
    .galerie__grid--full { columns: 1; }
    .option__head { flex-direction: column; gap: 4px; }
    .option__price { font-size: 20px; }
    .page-hero { padding: 120px 0 50px; }
    .page-hero__title { font-size: 40px; }
  }

  /* ============================================
     NAV EN MODE SOLIDE FORCÉ (pour pages internes
     sans hero sombre, comme tarifs.html)
     ============================================ */
  .nav.nav--solid {
    background: rgba(255, 251, 246, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 6px var(--gutter);
    border-bottom: 1px solid var(--c-line);
  }
  .nav.nav--solid .nav__logo {
    background-image: url(../images/logo-featlove-black.svg);
    width: 64px;
    height: 64px;
  }
  .nav.nav--solid .nav__links a { color: var(--c-noir); }
  .nav.nav--solid .nav__cta { background: var(--c-noir); color: var(--c-creme) !important; }
  .nav.nav--solid .nav__cta:hover { background: var(--c-brun); color: var(--c-creme) !important; }
  .nav.nav--solid .nav__burger span { background: var(--c-noir); }

  @media (max-width: 640px) {
    .nav.nav--solid .nav__logo { width: 50px; height: 50px; }
  }

  /* ============================================
     MENU MOBILE — animation burger ↔ croix
     ============================================ */
  body.menu-open { overflow: hidden; }

  /* Burger devient X quand menu ouvert. Burger fait 20px de haut.
     Les 3 barres de 2px sont espacées par space-between, donc :
     - barre 1 : top (y=0)
     - barre 2 : centre (y=9)
     - barre 3 : bottom (y=18)
     Pour faire la croix : translateY(+9px) sur la 1, scaleX(0) sur la 2, translateY(-9px) sur la 3 */
  body.menu-open .nav__burger span {
    background: var(--c-noir) !important;
  }
  body.menu-open .nav__burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  body.menu-open .nav__burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body.menu-open .nav__burger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ============================================
     PAGE CONTACT
     ============================================ */
  .contact-choice { padding-bottom: 60px; }
  .contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
  }
  .contact-option {
    background: var(--c-creme-soft);
    padding: 44px 38px 38px;
    border: 1px solid var(--c-line);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .contact-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px -20px rgba(4, 8, 36, 0.15);
  }
  .contact-option--featured {
    background: var(--c-bleu-nuit);
    color: var(--c-creme);
    border-color: var(--c-bleu-nuit);
  }
  .contact-option__icon {
    font-size: 40px;
    margin-bottom: 18px;
  }
  .contact-option h3 {
    font-size: 26px;
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .contact-option--featured h3 { color: var(--c-creme); }
  .contact-option p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--c-noir-soft);
  }
  .contact-option--featured p { color: rgba(255, 251, 246, 0.85); }
  .contact-option .btn { width: 100%; justify-content: center; }
  .contact-option--featured .btn--primary {
    background: var(--c-creme);
    color: var(--c-noir);
  }
  .contact-option--featured .btn--primary:hover {
    background: var(--c-rose);
    color: var(--c-creme);
  }
  .contact-option__meta {
    display: block;
    margin-top: 16px;
    font-family: var(--f-titre);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-noir-mute);
  }
  .contact-option--featured .contact-option__meta { color: rgba(255, 251, 246, 0.6); }

  /* FORMULAIRE */
  .contact-form-wrap {
    max-width: 880px;
    margin: 0 auto;
  }
  .contact-form-head {
    text-align: center;
    margin-bottom: 50px;
  }
  .contact-form-title {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--c-bleu-nuit);
    margin: 16px 0 18px;
  }
  .contact-form-title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-brun);
  }
  .contact-form-sub {
    font-size: 16px;
    color: var(--c-noir-soft);
    line-height: 1.7;
  }
  .contact-form {
    background: var(--c-creme);
    padding: 48px 44px;
    border: 1px solid var(--c-line);
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field--full { grid-column: span 2; }
  .form-field label {
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-bleu-nuit);
    margin-bottom: 10px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: var(--f-corps);
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid var(--c-line);
    background: var(--c-creme-soft);
    color: var(--c-noir);
    transition: border-color 0.3s ease, background 0.3s ease;
    border-radius: 4px;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--c-brun);
    background: var(--c-creme);
  }
  .form-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
  .form-field--check label {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--c-noir-soft);
    cursor: pointer;
  }
  .form-field--check input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--c-brun);
  }
  .form-submit {
    margin-top: 34px;
    text-align: center;
  }
  .form-submit .btn {
    border: none;
    cursor: pointer;
    width: auto;
    padding: 20px 44px;
  }
  .form-submit small {
    display: block;
    margin-top: 18px;
    font-family: var(--f-titre);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-noir-mute);
  }

  /* COORDONNÉES */
  .coords { background: var(--c-creme); padding: 80px 0 100px; }
  .coords__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
  }
  .coords__item {}
  .coords__label {
    font-family: var(--f-titre);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-rose);
    margin-bottom: 14px;
  }
  .coords__value {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    color: var(--c-bleu-nuit);
    line-height: 1.5;
    word-break: break-word;
  }
  .coords__value a {
    color: var(--c-bleu-nuit);
    border-bottom: 1px solid var(--c-line);
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .coords__value a:hover {
    color: var(--c-brun);
    border-color: var(--c-brun);
  }

  @media (max-width: 768px) {
    .contact-options { grid-template-columns: 1fr; gap: 18px; }
    .contact-option { padding: 36px 28px 32px; }
    .contact-form { padding: 36px 26px; }
    .form-grid { grid-template-columns: 1fr; gap: 18px; }
    .form-field--full { grid-column: span 1; }
    .coords__grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ============================================
     AUDIT UX/UI — AMÉLIORATIONS MOBILE & TABLETTE
     ============================================ */

  /* Tablette (768-980px) : ajustements fins */
  @media (max-width: 980px) and (min-width: 641px) {
    .hero__title { font-size: clamp(40px, 7vw, 72px); }
    .miroir__title, .univers__title { font-size: clamp(34px, 5vw, 56px); }
    .galerie__grid { columns: 2; }
    .offres__grid { gap: 18px; }
    .temoignages__grid { gap: 22px; }
    .contact-options { grid-template-columns: 1fr 1fr; }
  }

  /* Mobile (<640px) : améliorations générales */
  @media (max-width: 640px) {
    /* Boutons plus grands pour le tactile */
    .btn {
      padding: 16px 28px;
      font-size: 11.5px;
    }
    .btn--xl { padding: 20px 36px; }

    /* Padding sections allégé */
    :root { --section-y: clamp(60px, 10vw, 100px); }

    /* Hero plus compact */
    .hero__inner { padding-bottom: 50px; }
    .hero__title { font-size: 38px; line-height: 1.08; }
    .hero__sub { font-size: 15px; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    /* Listes offres : plus de respiration */
    .offre__features li { font-size: 13.5px; padding: 8px 0 8px 22px; }
    .offre__price { font-size: 42px; }

    /* Témoignages */
    .temoignage__text { font-size: 15px; line-height: 1.7; }
    .temoignages__rating { padding: 10px 18px; gap: 10px; }
    .stars { font-size: 16px; letter-spacing: 3px; }
    .rating-source { font-size: 10px; }

    /* Sections page tarifs */
    .page-hero { padding: 100px 0 40px; }
    .page-hero__title { font-size: 36px; line-height: 1.08; }
    .page-hero__sub { font-size: 15px; }

    /* Options tarifs : alignement */
    .option__head { gap: 6px; }
    .option__name { font-size: 17px; }
    .option__price { font-size: 19px; }
    .option__desc { font-size: 14px; }

    /* FAQ : plus de padding tactile */
    .faq__q { padding: 22px 40px 22px 0; font-size: 15px; line-height: 1.4; }
    .faq__q::after { font-size: 24px; right: 4px; }
    .faq__a p { font-size: 14.5px; }

    /* Footer mobile : meilleure répartition */
    .footer { padding: 50px 0 24px; }
    .footer__top { gap: 30px; padding-bottom: 36px; }
    .footer__brand { width: 80px; height: 80px; }
    .footer__col h4 { font-size: 11px; }

    /* Coordonnées contact : taille réduite */
    .coords__value { font-size: 18px; }

    /* Final CTA */
    .final__title { font-size: 36px; }
    .btn--xl { width: 100%; max-width: 400px; }
    .final__cta { padding: 0 8px; }
  }

  /* Très petit mobile (<400px) */
  @media (max-width: 400px) {
    :root { --gutter: 16px; }
    .hero__title { font-size: 32px; }
    .miroir__title, .univers__title, .galerie__title,
    .offres__title, .temoignages__title, .methode__title, .final__title,
    .page-hero__title, .contact-form-title { font-size: 30px; }
    .offre { padding: 30px 22px; }
    .temoignage { padding: 28px 22px; }
  }

  /* ============================================
     GALERIE V2 — Filtres + Masonry premium
     ============================================ */
  .g-filters-wrap {
    background: var(--c-creme);
    padding: 30px 0 20px;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--c-line);
  }
  .nav.scrolled ~ .g-filters-wrap,
  .nav.nav--solid ~ .g-filters-wrap {
    top: 64px;
  }
  .g-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .g-filter {
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-noir-soft);
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--c-line);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .g-filter:hover {
    color: var(--c-noir);
    border-color: var(--c-brun);
  }
  .g-filter--active {
    background: var(--c-noir);
    color: var(--c-creme);
    border-color: var(--c-noir);
  }
  .g-filter--active:hover {
    background: var(--c-brun);
    border-color: var(--c-brun);
    color: var(--c-creme);
  }

  /* Grille masonry */
  .g-grid {
    columns: 3;
    column-gap: 14px;
  }
  .g-item {
    break-inside: avoid;
    margin-bottom: 14px;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    background: var(--c-creme-soft);
    border: none;
    padding: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .g-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease, filter 0.4s ease;
  }
  .g-item:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
  }
  .g-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(4, 8, 36, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .g-item:hover::after { opacity: 1; }

  /* Cachés par filtre */
  .g-item--hidden {
    display: none !important;
  }

  /* Empty state */
  .g-empty {
    text-align: center;
    padding: 60px 20px;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    color: var(--c-noir-mute);
  }

  @media (max-width: 980px) {
    .g-grid { columns: 2; column-gap: 10px; }
    .g-item { margin-bottom: 10px; }
    .g-filters { gap: 6px; }
    .g-filter { font-size: 11px; padding: 8px 14px; }
  }
  @media (max-width: 640px) {
    .g-grid { columns: 1; }
    .g-filters-wrap { padding: 20px 0 16px; position: relative; top: auto; }
    .g-filters {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding: 0 var(--gutter) 6px;
      margin: 0 calc(var(--gutter) * -1);
      scrollbar-width: none;
    }
    .g-filters::-webkit-scrollbar { display: none; }
  }

  /* ============================================
     GALERIE MAGAZINE ÉDITORIAL — V3
     ============================================ */

  /* Style global pour la page galerie */
  body.page-galerie { background: var(--c-creme); }

  /* HERO PLEIN ÉCRAN */
  .ed-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    color: var(--c-creme);
    display: flex;
    align-items: center;
  }
  .ed-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: kenburns 20s ease-out forwards;
  }
  .ed-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(4, 8, 36, 0.55) 0%,
      rgba(4, 8, 36, 0.25) 35%,
      rgba(4, 8, 36, 0.65) 100%);
  }
  .ed-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .ed-hero__eyebrow {
    font-family: var(--f-titre);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 251, 246, 0.85);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }
  .ed-hero__title {
    font-family: var(--f-titre);
    font-weight: 700;
    font-size: clamp(50px, 8vw, 120px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.5s forwards;
  }
  .ed-hero__title em {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-creme);
  }
  .ed-hero__sub {
    max-width: 540px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 251, 246, 0.92);
    opacity: 0;
    animation: fadeUp 1.1s ease 0.7s forwards;
  }
  .ed-hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: var(--f-titre);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 251, 246, 0.7);
    writing-mode: vertical-rl;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
  }
  .ed-hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 251, 246, 0.5);
    margin: 12px auto 0;
    animation: scrollPulse 2s ease infinite;
  }

  /* TABLE DES MATIÈRES STICKY */
  .ed-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 251, 246, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-line);
    padding: 18px 0;
    transition: all 0.4s ease;
  }
  .ed-nav__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .ed-nav__label {
    font-family: var(--f-titre);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-brun);
    flex-shrink: 0;
  }
  .ed-nav__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    flex: 1;
  }
  .ed-nav__link {
    font-family: var(--f-titre);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-noir-soft);
    transition: color 0.3s ease;
    position: relative;
  }
  .ed-nav__link:hover { color: var(--c-noir); }
  .ed-nav__link.active {
    color: var(--c-noir);
  }
  .ed-nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--c-brun);
  }

  /* SECTIONS = CHAPITRES DU MAGAZINE */
  .ed-section {
    padding: clamp(80px, 12vw, 180px) 0;
    position: relative;
  }
  .ed-section + .ed-section {
    border-top: 1px solid var(--c-line);
  }

  /* HEADER DE CHAPITRE */
  .ed-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(60px, 8vw, 110px);
    position: relative;
  }
  .ed-header__num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 400;
    color: var(--c-rose);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: -50px;
    pointer-events: none;
  }
  .ed-header__title {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(48px, 6vw, 80px);
    color: var(--c-bleu-nuit);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }
  .ed-header__divider {
    width: 60px;
    height: 1px;
    background: var(--c-brun);
    margin: 0 auto 28px;
  }
  .ed-header__intro {
    font-size: 17px;
    line-height: 1.75;
    color: var(--c-noir-soft);
    font-style: italic;
    max-width: 580px;
    margin: 0 auto;
  }

  /* CONTENU DE CHAPITRE = BLOCS PHOTOS */
  .ed-content {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 4vw, 60px);
  }

  .ed-block {
    width: 100%;
  }

  .ed-photo {
    display: block;
    width: 100%;
    overflow: hidden;
    background: var(--c-creme-soft);
    border: none;
    padding: 0;
    cursor: zoom-in;
    position: relative;
  }
  .ed-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  }
  .ed-photo:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
  }
  .ed-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(4, 8, 36, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .ed-photo:hover::after { opacity: 1; }

  /* SPOTLIGHT : 1 photo en grand, marges latérales pour valoriser */
  .ed-block--spotlight {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* DUO : 2 photos côte à côte */
  .ed-block--duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 2vw, 24px);
  }

  /* TRIO : 1 grande à gauche, 2 stack à droite */
  .ed-block--trio {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(12px, 2vw, 24px);
    align-items: stretch;
  }
  .ed-block--trio .ed-photo--big {
    height: 100%;
  }
  .ed-block--trio .ed-photo--big img {
    height: 100%;
    object-fit: cover;
  }
  .ed-photo-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 24px);
  }
  .ed-photo-stack .ed-photo {
    flex: 1;
    overflow: hidden;
  }
  .ed-photo-stack .ed-photo img {
    height: 100%;
    object-fit: cover;
  }

  /* CITATION INTERMÉDIAIRE */
  .ed-quote {
    padding: clamp(80px, 12vw, 180px) 0;
    background: var(--c-bleu-nuit);
    color: var(--c-creme);
    text-align: center;
  }
  .ed-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
  }
  .ed-quote p {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.2;
    color: var(--c-creme);
    margin-bottom: 32px;
  }
  .ed-quote em {
    color: var(--c-rose);
  }
  .ed-quote cite {
    font-family: var(--f-titre);
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 251, 246, 0.65);
  }

  /* RESPONSIVE */
  @media (max-width: 980px) {
    .ed-hero { min-height: 600px; }
    .ed-block--trio {
      grid-template-columns: 1fr;
    }
    .ed-photo-stack {
      flex-direction: row;
    }
    .ed-photo-stack .ed-photo img {
      height: auto;
    }
    .ed-nav__links { gap: 16px; }
    .ed-nav__link { font-size: 11px; }
  }
  @media (max-width: 640px) {
    .ed-hero { min-height: 500px; }
    .ed-hero__title { font-size: 44px; }
    .ed-hero__sub { font-size: 15px; }
    .ed-block--duo,
    .ed-block--trio {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .ed-photo-stack {
      flex-direction: column;
    }
    .ed-section { padding: 60px 0; }
    .ed-header { margin-bottom: 40px; }
    .ed-header__num { font-size: 80px; margin-bottom: -30px; }
    .ed-header__title { font-size: 38px; }
    .ed-header__intro { font-size: 15px; }
    /* Nav table des matières scroll horizontal */
    .ed-nav { padding: 12px 0; }
    .ed-nav__inner { gap: 16px; }
    .ed-nav__links {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
    }
    .ed-nav__links::-webkit-scrollbar { display: none; }
    .ed-nav__link { white-space: nowrap; flex-shrink: 0; }
    .ed-quote p { font-size: 32px; }
  }
