    /* ============================================================
       TOKENS
    ============================================================ */
    :root {
      --white:      #FAFAF8;   /* fond — presque pur, légèrement organique */
      --ink:        #1A1A18;   /* texte principal */
      --muted:      #7A7A6E;   /* texte secondaire, captions */
      --accent:     #8C8C7A;   /* gris-olive — accent unique, désaturé */
      --rule:       #E2E2DC;   /* filets, séparateurs */
      --overlay:    rgba(26,26,24,0.38); /* voile sur photos */

      --f-display:  'Playfair Display', Georgia, serif;
      --f-body:     'DM Sans', 'Helvetica Neue', sans-serif;

      /* Échelle type */
      --t-hero-a:   clamp(72px, 13vw, 180px);  /* "J.CELLE" fracturé */
      --t-hero-b:   clamp(12px, 1.6vw, 20px);  /* "Photographie" whisper */
      --t-display:  clamp(32px, 5vw, 64px);
      --t-band:     clamp(11px, 1.2vw, 14px);  /* texte flottant sur photo */
      --t-body:     14px;
      --t-micro:    10px;

      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ============================================================
       RESET
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--f-body);
      font-weight: 200;
      font-size: var(--t-body);
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ============================================================
       UTILITAIRES
    ============================================================ */

    /* L'étoile — gimmick identitaire */
    .s { color: var(--accent); display: inline-block; font-style: normal; }

    /* Label micro en capitales tracées */
    .micro {
      font-family: var(--f-body);
      font-weight: 300;
      font-size: var(--t-micro);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* Filet */
    hr { border: none; border-top: 1px solid var(--rule); }

    /* ============================================================
       NAVIGATION — ultra-discrète, fixe
    ============================================================ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 24px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      mix-blend-mode: normal;
      transition: background 0.5s var(--ease);
    }
    .nav.scrolled {
      background: var(--ink);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    /* Logo : deux lignes fracturées */
    .nav__logo {
      display: flex;
      flex-direction: column;
      line-height: 2;
    }
    .nav__logo-top {
      font-family: var(--f-display);
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--white);
    }
    .nav__logo-top .s { font-size: 9px; }
    .nav__logo-bottom {
      font-family: var(--f-body);
      font-weight: 200;
      font-size: 9px;
      letter-spacing: 1em;
      text-transform: uppercase;
      color: var(--muted);
      padding-left: 2px;
      margin-top: 2px;
    }

    .nav__links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav__links a {
      font-size: var(--t-micro);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      font-weight: 300;
      transition: color 0.2s;
    }
    .nav__links a:hover { color: var(--muted); }

    .nav__reserve {
      font-size: var(--t-micro);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 300;
      color: var(--white);
      border-bottom: 1px solid currentColor;
      padding-bottom: 1px;
      transition: color 0.2s;
    }
    .nav__reserve:hover { color: var(--accent); }

    /* ============================================================
       HERO — titre fracturé, plein écran
    ============================================================ */
    .hero {
      height: 100dvh;
      min-height: 600px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    /* Photo de fond plein écran */
    .hero__bg {
      position: absolute;
      inset: 0;
      /* Placeholder — remplacer par <img> */
      background: linear-gradient(170deg, #C8BEB0 0%, #9E9080 40%, #6E6258 100%);
      /* Légère vignette bas */
      background-image:
        linear-gradient(to top, rgba(26,26,24,0.55) 0%, rgba(26,26,24,0) 50%),
        linear-gradient(170deg, #C8BEB0 0%, #9E9080 40%, #6E6258 100%);
    }
    /* Quand une vraie image est présente */
    .hero__bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }

    /* Texte hero — repose sur le bas gauche */
    .hero__copy {
      position: relative;
      z-index: 2;
      padding: 0 40px 56px;
    }

    /* "J.CELLE" — grand, tracé, blanc */
    .hero__name {
      font-family: var(--f-display);
      font-size: var(--t-hero-a);
      font-weight: 400;
      font-style: italic;
      line-height: 0.88;
      color: #fff;
      letter-spacing: -0.02em;
      display: block;
      /* L'étoile au milieu du nom */
    }
    .hero__name .s {
      color: rgba(255,255,255,0.5);
      font-size: 0.3em;
      vertical-align: middle;
    }

    /* "Photographie" — murmure, décalé à droite */
    .hero__sub {
      display: flex;
      justify-content: flex-end;
      margin-top: 8px;
    }
    .hero__sub span {
      font-family: var(--f-body);
      font-weight: 200;
      font-size: var(--t-hero-b);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.62);
    }

    /* Tagline et CTA — rangée basse */
    .hero__bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.18);
    }
    .hero__tagline {
      font-weight: 200;
      font-size: 13px;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.6);
      max-width: 280px;
      line-height: 1.7;
    }
    .hero__cta {
      font-size: var(--t-micro);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 300;
      color: rgba(255,255,255,0.85);
      border-bottom: 1px solid rgba(255,255,255,0.4);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .hero__cta:hover {
      color: #fff;
      border-color: rgba(255,255,255,0.9);
    }

    /* Indicateur scroll */
    .hero__scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .hero__scroll-line {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.3);
      position: relative;
      overflow: hidden;
    }
    .hero__scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.8);
      animation: scrollPulse 1.8s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%   { top: -100%; }
      100% { top: 100%; }
    }
    @media (max-width: 768px) {
    .hero__bg img { /* Remplace par le sélecteur exact de ton image */
        object-fit: cover;
        object-position: 70% center; /* Ajuste la valeur (ex. 65%, 75% ou 80%) */
        }
    }

    /* ============================================================
       SECTION INTRO — texte seul, très aéré
    ============================================================ */
    .intro {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      padding: 120px 40px;
      gap: 40px;
      align-items: start;
    }

    .intro__label { padding-top: 6px; }

    .intro__body {
      font-family: var(--f-display);
      font-size: clamp(18px, 2.5vw, 28px);
      font-weight: 400;
      font-style: italic;
      line-height: 1.6;
      color: var(--ink);
      letter-spacing: 0.01em;
    }

    .intro__aside {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 20px;
      padding-top: 8px;
    }
    .intro__aside-link {
      font-size: var(--t-micro);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 300;
      color: var(--muted);
      border-bottom: 1px solid var(--rule);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .intro__aside-link:hover {
      color: var(--ink);
      border-color: var(--accent);
    }

    /* ============================================================
       BANDEAUX PRESTATIONS — photos pleine largeur empilées
    ============================================================ */

    /* Chaque bandeau est une ligne pleine largeur */
    .band {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    /* Hauteur variable selon la prestation */
    .band--tall   { height: 80vh; min-height: 500px; }
    .band--medium { height: 60vh; min-height: 380px; }

    /* Photo pleine bande */
    .band__photo {
      position: absolute;
      inset: 0;
      transition: transform 0.8s var(--ease);
    }
    .band:hover .band__photo {
      transform: scale(1.025);
    }

    /* Placeholders couleur — nuances distinguées */
    .band__photo--mariage {
      background: linear-gradient(135deg, #B8AEA0 0%, #8A8074 100%);
    }
    .band__photo--portrait {
      background: linear-gradient(135deg, #A8B0A0 0%, #788072 100%);
    }
    .band__photo--grossesse {
      background: linear-gradient(135deg, #C0B4A4 0%, #906E5E 100%);
    }

    /* Voile dégradé sur le côté où repose le texte */
    .band__veil {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    /* Texte à gauche : voile gauche */
    .band--text-left .band__veil {
      background: linear-gradient(to right, rgba(26,26,24,0.55) 0%, rgba(26,26,24,0) 50%);
    }
    /* Texte à droite : voile droit */
    .band--text-right .band__veil {
      background: linear-gradient(to left, rgba(26,26,24,0.55) 0%, rgba(26,26,24,0) 50%);
    }

    /* Contenu textuel flottant sur la photo */
    .band__content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 56px;
    }
    .band--text-left  .band__content { align-items: flex-start; }
    .band--text-right .band__content { align-items: flex-end; text-align: right; }

    .band__label {
      color: rgba(250,250,248,0.5);
      margin-bottom: 12px;
    }

    .band__title {
      font-family: var(--f-display);
      font-size: clamp(28px, 5vw, 60px);
      font-weight: 400;
      font-style: italic;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      max-width: 400px;
    }

    .band__desc {
      font-weight: 200;
      font-size: 13px;
      color: rgba(250,250,248,0.68);
      line-height: 1.75;
      max-width: 280px;
      margin-bottom: 28px;
    }

    .band__link {
      font-size: var(--t-micro);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 300;
      color: rgba(250,250,248,0.8);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(250,250,248,0.25);
      padding-bottom: 3px;
      transition: color 0.2s, border-color 0.2s;
    }
    .band__link::after { content: '→'; transition: transform 0.3s; }
    .band__link:hover {
      color: #fff;
      border-color: rgba(250,250,248,0.8);
    }
    .band__link:hover::after { transform: translateX(4px); }

    /* Numéro éditorial en coin opposé */
    .band__num {
      position: absolute;
      font-family: var(--f-display);
      font-size: clamp(80px, 14vw, 160px);
      font-weight: 400;
      font-style: italic;
      color: rgba(250,250,248,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .band--text-left  .band__num { right: 32px; bottom: 16px; }
    .band--text-right .band__num { left:  32px; bottom: 16px; }
    .band__price {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 24px;
    margin-bottom: 18px;
    color: var(--white);
    }

    /* ============================================================
       SECTION CHIFFRES — interlude minimaliste
    ============================================================ */
    .figures {
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .figure-item {
      padding: 56px 40px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .figure-item + .figure-item {
      border-left: 1px solid var(--rule);
    }

    .figure-item__num {
      font-family: var(--f-display);
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 400;
      font-style: italic;
      color: var(--ink);
      line-height: 1;
    }
    .figure-item__num .s { font-size: 0.45em; }

    .figure-item__label {
      font-weight: 200;
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.06em;
    }

    /* ============================================================
       SECTION GALERIE — mosaïque pleine largeur
    ============================================================ */
    .galerie {
      padding: 0;
    }

    .galerie__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 80px 40px 48px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .galerie__title {
      font-family: var(--f-display);
      font-size: var(--t-display);
      font-weight: 400;
      font-style: italic;
      color: var(--ink);
      line-height: 1.05;
    }

    .galerie__filters {
      display: flex;
      gap: 24px;
    }
    .filter-btn {
      font-size: var(--t-micro);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 300;
      color: var(--muted);
      padding: 0;
      padding-bottom: 2px;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .filter-btn:hover,
    .filter-btn.active {
      color: var(--ink);
      border-color: var(--accent);
    }

    /* Grille galerie — 3 colonnes + grandes cellules */
    .galerie__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
      padding: 0 3px 3px;
    }

    .gal-cell {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gal-cell--wide  { grid-column: span 2; }
    .gal-cell--tall  { grid-row:    span 2; }

    /* Ratio selon position dans la grille */
    .gal-cell:not(.gal-cell--wide):not(.gal-cell--tall) { aspect-ratio: 3/4; }
    .gal-cell--wide:not(.gal-cell--tall)                 { aspect-ratio: 16/9; }
    .gal-cell--tall:not(.gal-cell--wide)                 { aspect-ratio: unset; }

    /* Placeholders */
    .gal-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.7s var(--ease);
    }
    .gal-cell:hover .gal-bg { transform: scale(1.04); }

    .gal-bg-1 { background: #9A9288; }
    .gal-bg-2 { background: #82887E; }
    .gal-bg-3 { background: #A89E94; }
    .gal-bg-4 { background: #707870; }
    .gal-bg-5 { background: #B0A498; }
    .gal-bg-6 { background: #8A8880; }
    .gal-bg-7 { background: #787068; }

    /* Hover : léger voile + icône ✦ */
    .gal-cell::after {
      content: '✦';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(250,250,248,0.9);
      font-size: 22px;
      background: rgba(26,26,24,0);
      opacity: 0;
      transition: background 0.35s, opacity 0.35s;
    }
    .gal-cell:hover::after {
      background: rgba(26,26,24,0.22);
      opacity: 1;
    }

    /* Légende au bas de chaque cellule */
    .gal-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 48px 18px 16px;
      background: linear-gradient(to top, rgba(26,26,24,0.5), transparent);
      color: rgba(250,250,248,0.75);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 300;
      opacity: 0;
      transition: opacity 0.35s;
    }
    .gal-cell:hover .gal-caption { opacity: 1; }

    /* ============================================================
       SECTION À PROPOS — plein écran horizontal
    ============================================================ */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 90vh;
    }

    .about__photo {
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg, #C4BAB0 0%, #9A9088 100%);
    }
    .about__photo img {
      transition: transform 0.9s var(--ease);
    }
    .about__photo:hover img { transform: scale(1.03); }

    /* Badge étoile absolu */
    .about__badge {
      position: absolute;
      top: 40px;
      right: 40px;
      width: 80px;
      height: 80px;
      border: 1px solid rgba(250,250,248,0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .about__badge .s { font-size: 20px; color: rgba(250,250,248,0.6); }
    .about__badge span {
      font-size: 8px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.4);
    }

    .about__text {
      padding: 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about__eyebrow { margin-bottom: 36px; }

    .about__quote {
      font-family: var(--f-display);
      font-size: clamp(20px, 3vw, 34px);
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: 36px;
    }
    /* Guillemet décoratif */
    .about__quote::before {
      content: '\201C';
      display: block;
      font-size: 3em;
      line-height: 0.5;
      color: var(--rule);
      margin-bottom: 16px;
    }

    .about__body {
      font-weight: 200;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 400px;
      margin-bottom: 48px;
    }

    .about__signature {
      font-family: var(--f-display);
      font-style: italic;
      font-size: 28px;
      color: var(--ink);
      font-weight: 400;
    }

    /* ============================================================
       SECTION TÉMOIGNAGES
    ============================================================ */
    .testimonials {
      padding: 120px 40px;
      position: relative;
      overflow: hidden;
    }

    /* Étoile filigrane en fond */
    .testimonials::before {
      content: '✦';
      position: absolute;
      left: -4%;
      top: 50%;
      transform: translateY(-50%);
      font-size: clamp(240px, 35vw, 480px);
      color: var(--rule);
      pointer-events: none;
      line-height: 1;
      z-index: 0;
    }

    .testimonials__head {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      margin-bottom: 80px;
      align-items: end;
      position: relative;
      z-index: 1;
    }

    .testimonials__title {
      font-family: var(--f-display);
      font-size: var(--t-display);
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.05;
    }

    .testimonials__intro {
      font-weight: 200;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 420px;
      align-self: end;
    }

    .testimonials__list {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      z-index: 1;
    }

    .testimonial {
      display: grid;
      grid-template-columns: 80px 1fr auto;
      gap: 32px;
      align-items: start;
      padding: 40px 0;
      border-top: 1px solid var(--rule);
    }
    .testimonial:last-child { border-bottom: 1px solid var(--rule); }

    .testimonial__num {
      font-family: var(--f-display);
      font-size: 11px;
      font-style: italic;
      color: var(--accent);
      padding-top: 6px;
    }

    .testimonial__quote {
      font-family: var(--f-display);
      font-size: clamp(15px, 2vw, 20px);
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.55;
    }
    .testimonial__quote::before {
      content: '\201C';
      color: var(--rule);
    }
    .testimonial__quote::after {
      content: '\201D';
      color: var(--rule);
    }

    .testimonial__meta {
      text-align: right;
      padding-top: 4px;
    }
    .testimonial__author {
      font-size: var(--t-micro);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 300;
      display: block;
      margin-bottom: 4px;
    }
    .testimonial__stars {
      color: var(--accent);
      font-size: 8px;
      letter-spacing: 4px;
    }

    /* ============================================================
       SECTION CONTACT — deux colonnes larges
    ============================================================ */
    .contact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
      border-top: 1px solid var(--rule);
    }

    .contact__left {
      padding: 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid var(--rule);
    }

    .contact__eyebrow { margin-bottom: 24px; }

    .contact__title {
      font-family: var(--f-display);
      font-size: var(--t-display);
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.05;
      margin-bottom: 32px;
    }

    .contact__intro {
      font-weight: 200;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.9;
      max-width: 340px;
      margin-bottom: 56px;
    }

    .contact__details {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: auto;
    }

    .detail-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-top: 1px solid var(--rule);
    }
    .detail-row:last-child { border-bottom: 1px solid var(--rule); }
    .detail-row dt {
      font-size: var(--t-micro);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 300;
    }
    .detail-row dd {
      font-weight: 200;
      font-size: 13px;
      color: var(--muted);
    }

    .contact__right {
      padding: 80px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Formulaire épuré — tout en lignes inférieures */
    .form {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .form__duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

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

    .form__label {
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 300;
      margin-bottom: 10px;
    }

    .form__input,
    .form__select,
    .form__textarea {
      font-family: var(--f-body);
      font-weight: 200;
      font-size: 14px;
      color: var(--ink);
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--rule);
      padding: 8px 0;
      outline: none;
      width: 100%;
      transition: border-color 0.3s var(--ease);
      appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
    }
    .form__input::placeholder,
    .form__textarea::placeholder {
      color: var(--rule);
      font-weight: 200;
    }
    .form__input:focus,
    .form__select:focus,
    .form__textarea:focus {
      border-color: var(--ink);
    }

    .form__textarea { height: 90px; resize: none; }

    /* Select */
    .form__select-wrap { position: relative; }
    .form__select-wrap::after {
      content: '↓';
      position: absolute;
      right: 0; top: 8px;
      color: var(--accent);
      font-size: 11px;
      pointer-events: none;
    }
    .form__select option { background: var(--white); }

    /* Bouton envoi */
    .form__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .form__note {
      font-size: 9px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--rule);
      font-weight: 300;
    }
    .form__note.success { color: var(--accent); }
    .form__note.error   { color: #C0392B; }

    .btn-send {
      font-family: var(--f-body);
      font-size: var(--t-micro);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 300;
      color: var(--ink);
      background: none;
      padding: 14px 28px;
      border: 1px solid var(--ink);
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .btn-send .s { font-size: 8px; transition: transform 0.3s; }
    .btn-send:hover {
      background: var(--ink);
      color: var(--accent);
    }
    .btn-send:hover .s { transform: rotate(90deg); }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: var(--ink);
      padding: 56px 40px 36px;
    }

    .footer__top {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(250,250,248,0.08);
      margin-bottom: 28px;
    }

    .footer__wordmark {
      font-family: var(--f-display);
      font-size: clamp(28px, 5vw, 52px);
      font-style: italic;
      font-weight: 400;
      color: rgba(250,250,248,0.9);
      letter-spacing: -0.01em;
    }

    .footer__star {
      font-size: 48px;
      color: rgba(140,140,122,0.25);
    }

    .footer__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .footer__links a {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 300;
      color: rgba(250,250,248,0.3);
      transition: color 0.2s;
    }
    .footer__links a:hover { color: rgba(250,250,248,0.7); }

    .footer__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer__copy {
      font-size: 9px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.2);
      font-weight: 300;
    }
    .footer__location {
      font-family: var(--f-display);
      font-style: italic;
      font-size: 13px;
      color: rgba(250,250,248,0.25);
    }

    /* ============================================================
       LIGHTBOX
    ============================================================ */
    .lb-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(26,26,24,0.96);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s var(--ease);
    }
    .lb-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .lb-close {
      position: absolute;
      top: 28px; right: 36px;
      font-size: 24px;
      color: rgba(250,250,248,0.5);
      transition: color 0.2s;
    }
    .lb-close:hover { color: rgba(250,250,248,0.9); }

    .lb-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .lb-placeholder {
      width: min(700px, 80vw);
      height: min(480px, 65vh);
      background: #2A2A28;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lb-placeholder span {
      font-family: var(--f-display);
      font-style: italic;
      color: rgba(250,250,248,0.2);
      font-size: 14px;
    }
    .lb-caption {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(250,250,248,0.3);
    }

    /* ============================================================
       REVEAL AU SCROLL
    ============================================================ */
    @media (prefers-reduced-motion: no-preference) {
      .r {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
      }
      .r.in { opacity: 1; transform: none; }
      .r-d1 { transition-delay: 0.1s; }
      .r-d2 { transition-delay: 0.2s; }
      .r-d3 { transition-delay: 0.32s; }
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 900px) {
      .intro           { grid-template-columns: 1fr; padding: 80px 24px; }
      .intro__label,
      .intro__aside    { display: none; }
      .figures         { grid-template-columns: 1fr; }
      .figure-item + .figure-item { border-left: none; border-top: 1px solid var(--rule); }
      .band__content   { padding: 0 28px; }
      .about           { grid-template-columns: 1fr; min-height: auto; }
      .about__photo    { height: 65vw; }
      .about__text     { padding: 48px 24px; }
      .testimonials    { padding: 80px 24px; }
      .testimonials__head { grid-template-columns: 1fr; gap: 24px; }
      .testimonial     { grid-template-columns: 1fr; gap: 12px; }
      .testimonial__meta { text-align: left; }
      .contact         { grid-template-columns: 1fr; }
      .contact__left   { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--rule); min-height: auto; }
      .contact__right  { padding: 48px 24px; }
      .form__duo       { grid-template-columns: 1fr; }
      .galerie__grid   { grid-template-columns: 1fr 1fr; }
      .gal-cell--wide  { grid-column: 1 / -1; }
      .footer__top     { grid-template-columns: 1fr; text-align: center; }
      .footer__links   { align-items: center; }
      .footer__star    { display: none; }
      .nav__links      { display: none; }
      .hero__copy      { padding: 0 24px 40px; }
    }

    /* ============================================================
       FOCUS VISIBLE
    ============================================================ */
    :focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }