/* =============================================================================
   NUVO Hair Studio — moderne, sobre
   Variables + 4 palettes
   ============================================================================= */

   :root {
    --font-display: "Space Grotesk", system-ui, sans-serif;
    --font-serif: "Instrument Serif", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --radius-pill: 999px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --header-h: 84px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Palette 1 — Modern Pop (défaut) */
  html[data-palette="1"] {
    --color-vivid: #ef4444;
    --color-secondary: #6366f1;
    --color-accent: #facc15;
    --surface-light: #ffffff;
    --surface-dark: #0c0c10;
    --text-on-light: #0f0f0f;
    --text-on-dark: #ffffff;
    --stroke-hero: #ffffff;
  }
  
  /* Palette 2 — Pink Pop */
  html[data-palette="2"] {
    --color-vivid: #ff3d6d;
    --color-secondary: #7b5cff;
    --color-accent: #ffd60a;
    --surface-light: #ffffff;
    --surface-dark: #0c0c10;
    --text-on-light: #0f0f0f;
    --text-on-dark: #ffffff;
    --stroke-hero: #ffffff;
  }
  
  /* Palette 3 — Electric Blue */
  html[data-palette="3"] {
    --color-vivid: #0066ff;
    --color-secondary: #00e5ff;
    --color-accent: #ffd60a;
    --surface-light: #ffffff;
    --surface-dark: #030b18;
    --text-on-light: #0f0f0f;
    --text-on-dark: #ffffff;
    --stroke-hero: #ffffff;
  }
  
  /* Palette 4 — Lime Explosion */
  html[data-palette="4"] {
    --color-vivid: #c6ff00;
    --color-secondary: #ff3d00;
    --color-accent: #7b5cff;
    --surface-light: #ffffff;
    --surface-dark: #0a1008;
    --text-on-light: #0f0f0f;
    --text-on-dark: #ffffff;
    --stroke-hero: #ffffff;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  body {
    margin: 0;
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.55;
    color: var(--text-on-light);
    background: var(--surface-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  body.is-loading {
    overflow: hidden;
  }
  
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  
  a {
    color: inherit;
  }
  
  button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  /* Scroll progress */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    z-index: 10050;
    pointer-events: none;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--color-vivid), var(--color-secondary));
  }
  
  /* Preloader */
  .preloader {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  
  .preloader__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--surface-dark);
    isolation: isolate;
    overflow: hidden;
  }
  
  .preloader__brand {
    position: relative;
    z-index: 3;
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(4rem, 18vw, 12rem);
    letter-spacing: -0.04em;
    color: var(--text-on-dark);
  }
  
  .preloader__burst {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110vw;
    height: 110vw;
    margin-left: -55vw;
    margin-top: -55vw;
    border-radius: 50%;
    background: var(--color-vivid);
    transform: scale(0);
    z-index: 2;
    mix-blend-mode: destination-out;
    will-change: transform;
  }
  
  /* Palette switcher */
  .palette-switcher {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 120000;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-dark) 72%, transparent);
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--text-on-dark) 18%, transparent);
  }
  
  .palette-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--surface-light);
    box-shadow: 0 0 0 1px var(--surface-dark);
    transition: transform 0.2s var(--ease-out);
  }
  
  .palette-dot:hover {
    transform: scale(1.12);
  }
  
  .palette-dot.is-active {
    transform: scale(1.25);
    outline: 2px solid var(--color-vivid);
    outline-offset: 2px;
  }
  
  .palette-dot[data-palette="1"] {
    background: linear-gradient(135deg, #ef4444, #6366f1);
  }
  .palette-dot[data-palette="2"] {
    background: linear-gradient(135deg, #ff3d6d, #7b5cff);
  }
  .palette-dot[data-palette="3"] {
    background: linear-gradient(135deg, #0066ff, #00e5ff);
  }
  .palette-dot[data-palette="4"] {
    background: linear-gradient(135deg, #c6ff00, #ff3d00);
  }
  
  /* Custom cursor */
  .cursor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10030;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  body.show-cursor .cursor {
    opacity: 1;
  }
  
  .cursor__ring {
    position: absolute;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--color-vivid) 85%, transparent);
    background: color-mix(in srgb, var(--color-vivid) 22%, transparent);
    transform: translate3d(-9999px, -9999px, 0);
    transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, border-color 0.2s ease;
  }
  
  .cursor.is-hover .cursor__ring {
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border-color: var(--color-secondary);
  }
  
  .cursor__label {
    position: absolute;
    margin-top: 28px;
    margin-left: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-on-light);
    text-shadow: 0 1px 0 #fff;
    transform: translate3d(-9999px, -9999px, 0);
    opacity: 0;
    transition: opacity 0.15s ease;
  }
  
  .cursor.is-hover .cursor__label {
    opacity: 1;
  }
  
  body.show-cursor,
  body.show-cursor a,
  body.show-cursor button {
    cursor: none;
  }
  
  /* WhatsApp float */
  .whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10010;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--color-vivid);
    color: var(--text-on-light);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--color-vivid) 55%, transparent);
    transition: transform 0.35s var(--ease-out), box-shadow 0.25s ease;
  }
  
  .whatsapp-float:hover {
    transform: rotate(360deg) scale(1.06);
    box-shadow: 0 18px 50px color-mix(in srgb, var(--color-vivid) 65%, transparent);
  }
  
  @media (max-width: 900px) {
    .whatsapp-float {
      bottom: 88px;
    }
  }
  
  /* Header */
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    z-index: 8000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 clamp(16px, 4vw, 48px);
    gap: 16px;
    transition: background 0.35s var(--ease-out), border-color 0.35s ease, backdrop-filter 0.35s ease;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
  }
  
  .site-header.is-scrolled {
    background: color-mix(in srgb, var(--surface-light) 78%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid color-mix(in srgb, var(--text-on-light) 10%, transparent);
  }
  
  .logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    letter-spacing: -0.06em;
    text-decoration: none;
    color: var(--text-on-light);
    justify-self: start;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.4vw, 32px);
    justify-self: center;
    grid-column: 2;
  }
  
  .site-nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
  }
  
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--color-vivid);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s var(--ease-out);
  }
  
  .site-nav a:hover::after {
    transform: scaleX(1);
  }
  
  .btn--book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px 0 20px;
    height: 52px;
    border-radius: var(--radius-pill);
    background: var(--color-vivid);
    color: var(--text-on-light);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--color-vivid) 45%, transparent);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  }
  
  .btn--book:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--color-vivid) 55%, transparent);
  }
  
  .btn__icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--surface-dark) 10%, transparent);
  }
  
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--text-on-light);
    position: relative;
  }
  
  .nav-toggle__bar {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--text-on-light);
    transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out);
  }
  
  .nav-toggle__bar:first-child {
    top: 16px;
  }
  .nav-toggle__bar:last-child {
    top: 24px;
  }
  
  .site-header.is-open .nav-toggle__bar:first-child {
    top: 21px;
    transform: rotate(45deg);
  }
  .site-header.is-open .nav-toggle__bar:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }
  
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 7990;
    background: var(--color-vivid);
    transform: translateY(-100%);
    transition: transform 0.55s var(--ease-out);
  }
  
  .nav-overlay.is-open {
    transform: translateY(0);
  }
  
  @media (max-width: 900px) {
    .site-nav,
    .btn--book {
      display: none;
    }
    .nav-toggle {
      display: grid;
      place-items: center;
    }
    .site-header.is-open .site-nav {
      display: flex;
      flex-direction: column;
      position: fixed;
      inset: 0;
      padding-top: 120px;
      z-index: 7995;
      justify-content: flex-start;
      align-items: center;
      gap: 28px;
      font-size: 1.5rem;
    }
    .site-header.is-open .site-nav a {
      color: var(--text-on-light);
    }
    .site-header.is-open .site-nav a::after {
      background: var(--surface-dark);
    }
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .btn--primary {
    background: var(--color-vivid);
    color: var(--text-on-light);
    border-color: transparent;
    box-shadow: 0 14px 40px color-mix(in srgb, var(--color-vivid) 42%, transparent);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  }
  
  .btn--primary:hover {
    transform: scale(1.05) rotate(-1.5deg);
  }
  
  .btn--secondary {
    border: 3px solid var(--text-on-light);
    color: var(--text-on-light);
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-out);
  }
  
  .btn--secondary:hover {
    background: var(--text-on-light);
    color: var(--surface-light);
  }
  
  .btn--ghost {
    background: transparent;
    color: var(--text-on-light);
    padding-inline: 0;
    border-radius: 0;
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0;
  }
  
  .btn--ghost::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.35s var(--ease-out);
  }
  
  .btn--ghost:hover::after {
    transform: scaleX(1);
  }
  
  .btn--xl {
    padding: 18px 34px;
    font-size: 0.95rem;
  }
  
  .btn--xxl {
    padding: 22px 40px;
    font-size: clamp(1rem, 2.4vw, 1.35rem);
  }
  
  .btn--wide {
    width: 100%;
  }
  
  .btn--dark {
    background: var(--surface-dark);
    color: var(--text-on-dark);
  }
  
  .btn--dark:hover {
    filter: brightness(1.08);
  }
  
  .btn--icon {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }
  
  .link-ghost {
    font-size: 0.85rem;
    text-decoration: none;
    position: relative;
  }
  .link-ghost::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s var(--ease-out);
  }
  .link-ghost:hover::after {
    transform: scaleX(1);
  }
  
  .link-bold {
    font-weight: 800;
    font-family: var(--font-display);
    text-decoration: none;
    border-bottom: 3px solid var(--color-vivid);
  }
  
  /* Ripple host */
  .ripple-host {
    position: relative;
    overflow: hidden;
  }
  
  .ripple-dot {
    position: absolute;
    border-radius: 50%;
    background: color-mix(in srgb, var(--surface-light) 55%, transparent);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.65s ease-out forwards;
    pointer-events: none;
  }
  
  @keyframes ripple {
    to {
      transform: translate(-50%, -50%) scale(18);
      opacity: 0;
    }
  }
  
  /* Section shell */
  .section {
    position: relative;
    padding: clamp(72px, 12vw, 140px) 0;
  }
  
  .section-inner {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
  }
  
  .section-head {
    margin-bottom: clamp(32px, 6vw, 64px);
  }
  
  .section-head__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3.5rem, 12vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--text-on-light);
  }
  
  .section-head__title--dark {
    color: var(--text-on-light);
  }
  
  .section-head--on-dark .section-head__title {
    color: var(--text-on-dark);
  }
  
  .section-head__sub {
    margin: 0.5rem 0 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: color-mix(in srgb, var(--text-on-light) 70%, transparent);
  }
  
  .section-head__sub--dark {
    color: color-mix(in srgb, var(--text-on-dark) 72%, transparent);
  }
  
  .section-head--compact {
    text-align: left;
  }
  
  .section-head--compact .section-head__sub--on-vivid {
    color: var(--text-on-light);
    opacity: 0.9;
  }
  
  /* HERO */
  .hero {
    min-height: 100svh;
    padding-top: var(--header-h);
    position: relative;
    background: var(--surface-light);
    overflow: clip;
  }
  
  .hero__grain {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    opacity: 0.14;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
  }
  
  .hero__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(24px, 5vw, 56px) 0 120px;
  }
  
  @media (max-width: 900px) {
    .hero__layout {
      grid-template-columns: 1fr;
      padding-bottom: 100px;
    }
  }
  
  .hero__eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--text-on-light) 55%, transparent);
    margin: 0 0 12px;
  }
  
  .hero__title {
    margin: 0;
    line-height: 0.85;
  }
  
  .hero__hair {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(4rem, 14vw, 11rem);
    letter-spacing: -0.06em;
    color: var(--text-on-light);
  }
  
  .hero__tagline-wrap {
    display: inline-block;
    margin: 12px 0;
    transform: rotate(-2deg);
  }
  
  .hero__tagline {
    display: inline-block;
    padding: 8px 18px 12px;
    background: var(--color-vivid);
    color: var(--stroke-hero);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    line-height: 1;
    box-shadow: 6px 8px 0 color-mix(in srgb, var(--color-secondary) 50%, transparent);
  }
  
  .hero__studio {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3.2rem, 12vw, 9rem);
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-on-light);
    text-stroke: 1px var(--text-on-light);
    paint-order: stroke fill;
  }
  
  .hero__lead {
    max-width: 34ch;
    margin: 24px 0 28px;
    font-size: 1.05rem;
  }
  
  .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }
  
  .hero__visual {
    position: relative;
    justify-self: end;
    width: min(420px, 88vw);
  }
  
  @media (max-width: 900px) {
    .hero__visual {
      justify-self: center;
    }
  }
  
  .hero__portrait-wrap {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid color-mix(in srgb, var(--text-on-light) 88%, transparent);
    box-shadow: 0 24px 56px color-mix(in srgb, var(--color-vivid) 22%, transparent);
    aspect-ratio: 1;
  }
  
  .hero__portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Ticker */
  .ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 2px solid var(--text-on-light);
    background: var(--surface-dark);
    color: var(--text-on-dark);
    overflow: hidden;
    height: 52px;
  }
  
  .ticker__track {
    display: flex;
    width: max-content;
    will-change: transform;
  }
  
  .ticker__track--css {
    animation: ticker-marquee 28s linear infinite;
  }
  
  @keyframes ticker-marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .ticker__content {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 28px;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .ticker--footer {
    position: relative;
    border-top: none;
    border-bottom: 2px solid color-mix(in srgb, var(--text-on-dark) 22%, transparent);
  }
  
  /* Stats — fond lié à la palette (plus “toujours noir” identique) */
  .stats {
    color: var(--text-on-dark);
    overflow: hidden;
    background: radial-gradient(
        120% 90% at 12% 0%,
        color-mix(in srgb, var(--color-vivid) 28%, var(--surface-dark)),
        var(--surface-dark)
      ),
      radial-gradient(
        90% 70% at 92% 80%,
        color-mix(in srgb, var(--color-secondary) 22%, transparent),
        transparent
      ),
      var(--surface-dark);
  }
  
  .stats__deco {
    position: absolute;
    inset: -20% -10%;
    background: repeating-linear-gradient(
      -28deg,
      transparent,
      transparent 40px,
      color-mix(in srgb, var(--color-vivid) 22%, transparent) 40px,
      color-mix(in srgb, var(--color-vivid) 22%, transparent) 42px
    );
    opacity: 0.35;
    pointer-events: none;
  }
  
  .stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 40px);
  }
  
  @media (max-width: 900px) {
    .stats__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  .stat__num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text-on-dark);
    -webkit-text-fill-color: var(--text-on-dark);
    text-shadow: 0 0 48px color-mix(in srgb, var(--color-vivid) 55%, transparent),
      0 2px 0 color-mix(in srgb, var(--surface-dark) 40%, transparent);
  }
  
  .stat__label {
    margin: 12px 0 0;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--text-on-dark) 78%, transparent);
  }
  
  .stat__num--static {
    font-variant-numeric: tabular-nums;
  }
  
  /* Services */
  .services {
    background: var(--surface-light);
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  
  @media (max-width: 1000px) {
    .service-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .service-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .service-card {
    border-radius: var(--radius-lg);
    padding: clamp(22px, 3vw, 30px);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, filter 0.35s ease;
    will-change: transform;
  }
  
  .service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  }
  
  .service-card__meta {
    margin: 10px 0 0;
    font-size: 0.92rem;
    color: color-mix(in srgb, var(--text-on-light) 68%, transparent);
  }
  
  .service-card__price {
    margin: 18px 0 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
    align-self: flex-end;
  }
  
  .service-card[data-tone="pink"] {
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-vivid) 85%, #fff), var(--color-vivid));
    color: var(--text-on-light);
  }
  .service-card[data-tone="violet"] {
    background: linear-gradient(160deg, var(--color-secondary), color-mix(in srgb, var(--color-secondary) 40%, #000));
    color: var(--text-on-dark);
  }
  .service-card[data-tone="yellow"] {
    background: linear-gradient(135deg, var(--color-accent), #fff3a6);
    color: var(--text-on-light);
  }
  .service-card[data-tone="dark"] {
    background: var(--surface-dark);
    color: var(--text-on-dark);
  }
  .service-card[data-tone="light"] {
    background: var(--surface-light);
    border: 3px solid var(--text-on-light);
    color: var(--text-on-light);
  }
  .service-card[data-tone="grad"] {
    background: linear-gradient(120deg, var(--color-vivid), var(--color-secondary));
    color: var(--text-on-light);
  }
  
  .service-card:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 28px 64px color-mix(in srgb, var(--color-vivid) 38%, transparent);
  }
  
  /* Work */
  .work {
    background: var(--surface-dark);
    color: var(--text-on-dark);
  }
  
  .masonry {
    columns: 3 280px;
    column-gap: 18px;
  }
  
  .masonry__item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: 20px;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.45s var(--ease-out), border-radius 0.5s ease, box-shadow 0.35s ease;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  }
  
  .masonry__item::before {
    content: attr(data-index);
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 8px 12px;
    background: var(--color-vivid);
    color: var(--text-on-light);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }
  
  .masonry__item img {
    width: 100%;
    display: block;
    transition: transform 0.5s var(--ease-out);
  }
  
  .masonry__item:hover {
    transform: scale(1.03);
    border-radius: 32px;
    box-shadow: 0 24px 64px color-mix(in srgb, var(--color-vivid) 28%, transparent);
  }
  
  .masonry__item:hover img {
    transform: scale(1.04);
  }
  
  /* Crew */
  .crew-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
  
  @media (max-width: 1000px) {
    .crew-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 560px) {
    .crew-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .crew-card {
    border-radius: var(--radius-lg);
    padding: 22px;
    text-align: center;
    transition: transform 0.4s var(--ease-out);
  }
  
  .crew-card[data-bg="pink"] {
    background: color-mix(in srgb, var(--color-vivid) 35%, var(--surface-light));
  }
  .crew-card[data-bg="violet"] {
    background: color-mix(in srgb, var(--color-secondary) 40%, var(--surface-light));
  }
  .crew-card[data-bg="yellow"] {
    background: color-mix(in srgb, var(--color-accent) 45%, var(--surface-light));
  }
  .crew-card[data-bg="dark"] {
    background: var(--surface-dark);
    color: var(--text-on-dark);
  }
  
  .crew-card__photo {
    margin: 0 auto 16px;
    width: min(220px, 70%);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid color-mix(in srgb, var(--text-on-light) 85%, transparent);
    transition: transform 0.45s var(--ease-out), border-radius 0.45s ease;
  }
  
  .crew-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
  }
  
  .crew-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
  }
  
  .crew-card__role {
    margin: 6px 0 12px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
  }
  
  .crew-card__links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .crew-card:hover {
    transform: scale(1.02);
  }
  
  .crew-card:hover .crew-card__photo {
    border-radius: 28px;
  }
  
  .crew-card:hover img {
    transform: scale(1.04);
  }
  
  /* Reviews */
  .reviews {
    background: var(--color-vivid);
    color: var(--text-on-light);
  }
  
  .reviews-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  
  .review-card {
    flex: 0 0 min(320px, 82vw);
    scroll-snap-align: start;
    background: var(--surface-light);
    color: var(--text-on-light);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }
  
  .review-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid var(--color-accent);
  }
  
  .stars {
    text-align: center;
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .review-card p {
    margin: 0 0 14px;
    font-family: var(--font-body);
    font-size: 0.98rem;
  }
  
  .review-card footer {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--text-on-light) 70%, transparent);
  }
  
  .reviews-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
  }
  
  /* Vibe / IG */
  .vibe {
    background: var(--surface-dark);
    color: var(--text-on-dark);
    text-align: center;
  }
  
  .vibe__title {
    margin: 0 0 28px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 8vw, 6rem);
    letter-spacing: -0.05em;
    line-height: 0.95;
  }
  
  .ig-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
    gap: 12px;
    margin-bottom: 28px;
  }
  
  .ig-tile {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    display: block;
  }
  
  .ig-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out), filter 0.35s ease;
  }
  
  .ig-tile:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .ig-tile:nth-child(2) {
    grid-column: span 2;
  }
  .ig-tile:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .ig-tile:nth-child(4) {
    grid-column: span 3;
  }
  .ig-tile:nth-child(5) {
    grid-column: span 2;
  }
  .ig-tile:nth-child(6) {
    grid-column: span 1;
  }
  
  .ig-tile__icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--text-on-dark);
    background: color-mix(in srgb, var(--surface-dark) 45%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .ig-tile:hover .ig-tile__icon {
    opacity: 1;
  }
  .ig-tile:hover img {
    transform: scale(1.06);
    filter: saturate(1.2);
  }
  
  @media (max-width: 800px) {
    .ig-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .ig-tile:nth-child(n) {
      grid-column: auto;
      grid-row: auto;
    }
    .ig-tile--tall {
      grid-row: span 2;
    }
  }
  
  /* Book */
  .book {
    position: relative;
    overflow: clip;
  }
  
  .book__bg {
    position: absolute;
    inset: -40% -20%;
    background: linear-gradient(125deg, color-mix(in srgb, var(--color-vivid) 55%, transparent), color-mix(in srgb, var(--color-secondary) 55%, transparent));
    opacity: 0.35;
    transform: rotate(-6deg);
    pointer-events: none;
  }
  
  .book__inner {
    position: relative;
  }
  
  .book__panel {
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 44px);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--surface-light) 88%, transparent);
    border: 2px solid color-mix(in srgb, var(--text-on-light) 12%, transparent);
    text-align: center;
    backdrop-filter: blur(10px);
  }
  
  .book__wa-line {
    margin: 22px 0 10px;
    font-size: 1rem;
  }
  
  .book__wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    color: #128c7e;
  }
  
  .book__wa-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dcf8c6;
  }
  
  /* FAQ */
  .faq {
    background: var(--surface-dark);
    color: var(--text-on-dark);
  }
  
  .faq__title {
    margin: 0 0 28px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.8rem, 8vw, 6rem);
    letter-spacing: -0.04em;
  }
  
  .accordion__item {
    border-bottom: 1px solid color-mix(in srgb, var(--text-on-dark) 18%, transparent);
  }
  
  .accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    color: var(--text-on-dark);
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    position: relative;
    transition: background 0.35s ease, color 0.35s ease, padding 0.35s ease;
  }
  
  .accordion__trigger::before {
    content: "";
    position: absolute;
    inset: 8px -12px;
    border-radius: 16px;
    background: var(--color-vivid);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.45s var(--ease-out);
    z-index: 0;
  }
  
  .accordion__trigger span:first-child {
    position: relative;
    z-index: 1;
  }
  
  .accordion__icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--color-vivid);
  }
  
  .accordion__icon::before,
  .accordion__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 3px;
    background: var(--color-vivid);
    transform: translate(-50%, -50%);
    transition: transform 0.35s var(--ease-out), background 0.35s ease;
  }
  
  .accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  .accordion__trigger[aria-expanded="true"] {
    color: var(--text-on-light);
    padding-left: 12px;
  }
  
  .accordion__trigger[aria-expanded="true"]::before {
    transform: scaleX(1);
  }
  
  .accordion__trigger[aria-expanded="true"] .accordion__icon::before,
  .accordion__trigger[aria-expanded="true"] .accordion__icon::after {
    background: var(--text-on-light);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .accordion__trigger[aria-expanded="true"] .accordion__icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  .accordion__panel {
    padding: 0 0 18px;
    color: color-mix(in srgb, var(--text-on-dark) 78%, transparent);
  }
  
  .accordion__panel[hidden] {
    display: none;
  }
  
  /* Contact */
  .contact__grid {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
  }
  
  @media (max-width: 900px) {
    .contact__grid {
      grid-template-columns: 1fr;
    }
  }
  
  .contact__big {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
  }
  
  .contact-form {
    display: grid;
    gap: 18px;
  }
  
  .field {
    position: relative;
  }
  
  .field input,
  .field textarea {
    width: 100%;
    padding: 18px 14px 12px;
    border-radius: 14px;
    border: 2px solid color-mix(in srgb, var(--text-on-light) 16%, transparent);
    background: var(--surface-light);
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }
  
  .field input:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--color-vivid);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-vivid) 25%, transparent);
  }
  
  .field label {
    position: absolute;
    left: 14px;
    top: 16px;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--text-on-light) 55%, transparent);
    pointer-events: none;
    transition: transform 0.25s var(--ease-out), font-size 0.25s ease, color 0.25s ease;
  }
  
  .field input:focus + label,
  .field input:not(:placeholder-shown) + label,
  .field textarea:focus + label,
  .field textarea:not(:placeholder-shown) + label {
    transform: translateY(-10px);
    font-size: 0.72rem;
    color: var(--color-vivid);
  }
  
  .field__error {
    display: block;
    min-height: 1.2em;
    margin-top: 6px;
    font-size: 0.82rem;
    color: #c1121f;
  }
  
  .form-success {
    margin: 0;
    font-weight: 700;
    color: #0f7a45;
  }
  
  .map-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 48px auto 0;
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid var(--text-on-light);
    filter: invert(1) hue-rotate(180deg) saturate(1.2) contrast(1.05);
  }
  
  .map-wrap iframe {
    width: 100%;
    display: block;
    border: 0;
  }
  
  /* Footer */
  .site-footer {
    background: var(--surface-dark);
    color: var(--text-on-dark);
    padding: 0 0 28px;
    position: relative;
    overflow: clip;
  }
  
  .footer__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(5rem, 18vw, 14rem);
    line-height: 0.85;
    text-align: center;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 2px color-mix(in srgb, var(--text-on-dark) 85%, transparent);
    margin: 10px 0 18px;
    opacity: 0.9;
  }
  
  .footer__cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-top: 18px;
  }
  
  @media (max-width: 720px) {
    .footer__cols {
      grid-template-columns: 1fr;
    }
  }
  
  .footer__h {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--text-on-dark) 65%, transparent);
  }
  
  .footer__tiny {
    margin: 28px 0 0;
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--text-on-dark) 55%, transparent);
  }
  
  /* Lightbox — [hidden] doit rester masqué (display:grid ne doit pas l’écraser) */
  .lightbox[hidden] {
    display: none !important;
    pointer-events: none !important;
  }
  
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 12000;
    background: color-mix(in srgb, var(--surface-dark) 88%, transparent);
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: auto;
  }
  
  .lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-vivid);
    color: var(--text-on-light);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }
  
  .lightbox img {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 96vw);
    max-height: 86vh;
    border-radius: 24px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  }
  
  /* Split animation helpers */
  .split-target .char {
    display: inline-block;
    transform-origin: 50% 80%;
  }
  
  .reveal-line {
    opacity: 0;
    transform: translateY(18px) rotate(-2deg);
  }
  
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* --- Prisme éditeur : avant/après + bios équipe --- */
  .prisme-transforms {
    margin-bottom: 2.5rem;
  }
  .prisme-ba-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .prisme-ba-pair {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .prisme-ba-pair img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
  }
  .prisme-ba-caption {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
  }
  .crew-card__bio {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    line-height: 1.45;
    opacity: 0.88;
  }
