:root {
    --violet-deep: #1a0a2e;
    --violet-mid: #2d1457;
    --violet-bright: #6b35a8;
    --violet-soft: #9b5dd4;
    --violet-pale: #c89ef7;
    --violet-mist: #e8d5ff;
    --gold: #f0c060;
    --gold-soft: #f7dfa0;
    --gold-pale: #fdf0d0;
    --pink-cloud: #f9d0e8;
    --blush: #ffb5d8;
    --cloud-peach: #ffd6be;
    --cloud-rose: #f4a0c0;
    --white: #fff;
    --text-light: rgba(255,255,255,0.9);
    --text-muted: rgba(255,255,255,0.6);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  /* SCROLLBAR DORÉE */
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: var(--violet-deep);
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--violet-bright), var(--gold-soft));
    border-radius: 999px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--gold-soft), var(--blush), var(--gold));
  }

  /* Firefox */
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--violet-deep);
  }

  body {
    background: var(--violet-deep);
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSEUR (STAR) */
  .cursor {
    width: 28px; height: 28px;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%,-50%) rotate(0deg);
    color: var(--gold);
    filter: drop-shadow(0 0 6px var(--gold)) drop-shadow(0 0 14px var(--violet-pale));
    transition: color 0.3s;
    animation: cursorSpin 6s linear infinite;
    will-change: transform;
  }

  .cursor-star-svg {
    width: 100%; height: 100%;
    display: block;
  }

  @keyframes cursorSpin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
  }

  /* Mini Star Trails (Spawned w./JS) */
  .cursor-mini {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    width: 6px; height: 6px;
    color: var(--gold-soft);
    opacity: 1;
    animation: miniTrail 0.55s ease forwards;
    will-change: transform, opacity;
  }
  .cursor-mini svg { width: 100%; height: 100%; }

  @keyframes miniTrail {
    0%   { opacity: 0.9; transform: translate(-50%,-50%) scale(1) rotate(0deg); }
    100% { opacity: 0;   transform: translate(-50%,-50%) scale(0.1) rotate(180deg); }
  }

  /* The 'Clouds' background */
  .cloud-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .cloud-blob {
    will-change: transform;
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: cloudDrift 30s ease-in-out infinite alternate;
  }
  
  .cloud-blob:nth-child(1) { width: 500px; height: 300px; background: var(--cloud-rose); top: 10%; left: -10%; animation-duration: 35s; }
  .cloud-blob:nth-child(2) { width: 400px; height: 250px; background: var(--pink-cloud); top: 60%; right: -5%; animation-duration: 28s; animation-delay: -10s; }
  .cloud-blob:nth-child(3) { width: 350px; height: 200px; background: var(--violet-bright); top: 30%; left: 50%; animation-duration: 40s; animation-delay: -5s; }
  .cloud-blob:nth-child(4) { width: 300px; height: 180px; background: var(--blush); bottom: 20%; left: 20%; animation-duration: 32s; animation-delay: -15s; }

  @keyframes cloudDrift {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
  }

  /* MAIN WRAPPER */
  .site {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* NAV */
  nav {
    will-change: transform;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(26,10,46,0.6);
    border-bottom: 1px solid rgba(240,192,96,0.15);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-soft);
    text-decoration: none;
    letter-spacing: 0.04em;
  }

  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .nav-links {
    position: relative;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet-mist);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    z-index: 1;
  }

  .nav-links a:hover { color: var(--gold-soft); }

  .nav-pill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 999px;
    pointer-events: none;
    transition: left 0.35s cubic-bezier(.4,0,.2,1), width 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
    opacity: 0;
  }

  .nav-links a.nav-active {
    color: var(--gold-soft);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
    position: relative;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 0;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--violet-pale);
  }

  .hero-star {
    font-size: 2rem;
    color: var(--gold);
    display: inline-block;
    animation: spinStar 8s linear infinite;
    margin: 0 12px;
    vertical-align: middle;
  }

  @keyframes spinStar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--violet-mist);
    margin-top: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
    letter-spacing: 0.05em;
  }

  /* STATUS */
  .hero-status {
    margin-top: 40px;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
  }

  .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(240,192,96,0.4);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-soft);
    background: rgba(240,192,96,0.08);
    backdrop-filter: blur(8px);
  }

  .status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #7fff7f;
    box-shadow: 0 0 8px #7fff7f;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-cta {
    margin-top: 56px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
  }

  .btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: none;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--violet-deep);
    font-weight: 500;
  }

  .btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240,192,96,0.4);
  }

  .btn-outline {
    border: 1px solid rgba(200,158,247,0.5);
    color: var(--violet-pale);
  }

  .btn-outline:hover {
    border-color: var(--violet-pale);
    background: rgba(200,158,247,0.1);
    transform: translateY(-2px);
  }

  /* SCROLL */
  .scroll-hint {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
    text-align: center;
  }

  .scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    width: 100%;
    text-align: center;
  }

  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(200,158,247,0.6), transparent);
    animation: scrollLine 2s ease infinite;
  }

  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SECTIONS */
  section {
    padding: 100px 0;
    contain: layout style;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 48px;
  }

  .section-title em {
    font-style: italic;
    color: var(--violet-pale);
  }

  /* DIVIDER */
  .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,158,247,0.3), transparent);
    margin: 0;
  }

  /* ABOUT (TEXT) */
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--violet-mist);
    margin-bottom: 20px;
  }

  .about-text .highlight {
    color: var(--violet-pale);
    font-style: italic;
  }

  /* ABOUT (CARD) */
  .about-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,158,247,0.2);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(8px);
    position: sticky;
    top: 100px;
  }

  .about-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet-bright), var(--blush));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    overflow: hidden;
    border: 2px solid rgba(240,192,96,0.4);
    box-shadow: 0 0 20px rgba(240,192,96,0.15);
  }

  .about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
  }

  .about-card .tagline {
    font-size: 0.8rem;
    color: var(--gold-soft);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
  }

  .about-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(200,158,247,0.15);
  }

  .stat-row:last-child { border-bottom: none; }
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--violet-pale);
  }

  /* ABOUT (LINKS) */
  .social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-link {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(200,158,247,0.3);
    color: var(--violet-pale);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border-color: var(--gold);
    color: var(--gold-soft);
    background: rgba(240,192,96,0.1);
  }

  /* GALERIE */
  .gallery-intro {
    max-width: 600px;
    margin-bottom: 56px;
  }
  .gallery-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  .gallery-grid {
    columns: 3;
    column-gap: 16px;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200,158,247,0.15);
    position: relative;
    cursor: none;
  }

  .gallery-item img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    will-change: transform;
    transform: scale(1.04);
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,10,46,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover::after { opacity: 1; }

  .gallery-note {
    margin-top: 32px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
  }

  .gallery-note a { color: var(--violet-pale); }

  /* COMMISSIONS */
  .commissions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }

  .commission-card {
    border: 1px solid rgba(200,158,247,0.2);
    border-radius: 20px;
    padding: 32px 24px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .commission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .commission-card:hover {
    border-color: rgba(200,158,247,0.4);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
  }

  .commission-card:hover::before { transform: scaleX(1); }

  .commission-card:nth-child(1) { --accent: var(--violet-pale); }
  .commission-card:nth-child(2) { --accent: var(--gold); }
  .commission-card:nth-child(3) { --accent: var(--blush); }

  .commission-type {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .commission-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
  }

  .commission-price {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-soft);
    margin-bottom: 20px;
  }

  /* hint */
  .commission-img-hint {
    margin-top: 10px;
    text-align: center;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.3s;
  }

  .commission-card:hover .commission-img-hint {
    opacity: 0;
  }


  /* IMAGE D'EXEMPLE (COMMISSION) */
  .commission-example {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    position: relative;
  }

  /* HOVER (SWAP) */
  .commission-example .img-default,
  .commission-example .img-hover {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .commission-example .img-hover {
    opacity: 0;
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: contain;
  }

  .commission-card:hover .commission-example .img-default { opacity: 0; transform: scale(1.02); }
  .commission-card:hover .commission-example .img-hover  { opacity: 1; transform: scale(1.02); }

  .commission-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* CONTACT */
  .contact-section {
    text-align: center;
    padding: 80px 0 120px;
  }

  .contact-section .section-title {
    margin-bottom: 16px;
  }

  .contact-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 48px;
  }

  .contact-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(200,158,247,0.3);
    color: var(--violet-pale);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
    border-color: rgba(240,192,96,0.6);
    color: var(--gold-soft);
    background: rgba(240,192,96,0.08);
    transform: translateY(-2px);
  }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(200,158,247,0.15);
    padding: 32px 0;
    text-align: center;
  }

  footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  footer span { color: var(--gold); }

  .footer-credit {
    margin-left: 35px;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(232,224,200,0.15); 
    text-transform: uppercase;
    margin-top: 0.85rem; 
    text-decoration: none;
  }

  .footer-credit a{
    color: var(--gold);
    text-decoration: none;
  }

  .footer-credit a:hover{
    color: var(--gold-soft);
    text-decoration: underline;
  }

  /* SPARKLES (CLIC) */
  .sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: sparkleAnim 0.6s ease forwards;
    will-change: transform, opacity;
  }

  @keyframes sparkleAnim {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(0); opacity: 0; }
  }

  /* REVEAL AU SCROLL */
  .reveal {
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
  }
  .reveal.hidden {
    opacity: 0;
    transform: translateY(32px);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  /* PAST COMMISSIONS */
  .past-commissions-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 56px;
    cursor: none;
    user-select: none;
  }

  .past-toggle-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,158,247,0.3), transparent);
  }

  .past-toggle-label {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: opacity 0.3s;
  }

  .past-commissions-toggle:hover .past-toggle-label { opacity: 0.7; }

  .past-toggle-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: var(--violet-mist);
    transition: color 0.3s;
  }

  .past-commissions-toggle:hover .past-toggle-text { color: var(--gold-soft); }

  .past-toggle-star {
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
  }

  .past-commissions-toggle:hover .past-toggle-star {
    opacity: 1;
    transform: rotate(45deg);
  }

  .past-toggle-chevron {
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.5;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    line-height: 1;
    margin-top: -4px;
  }

  .past-commissions-toggle:hover .past-toggle-chevron { opacity: 0.9; }

  .past-commissions-toggle.open .past-toggle-chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  .past-commissions-toggle.open .past-toggle-star {
    opacity: 1;
    transform: rotate(90deg);
  }
  
  .past-commissions-toggle.open .past-toggle-text { color: var(--gold-soft); }

  /* ANIME WRAP */
  .past-commissions-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1);
  }

  .past-commissions-wrap.open {
    max-height: 2000px;
  }

  .past-commissions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 32px;
    padding-bottom: 8px;
  }

  .past-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(200,158,247,0.15);
    background: rgba(255,255,255,0.03);
    cursor: none;
  }

  .past-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s;
  }

  .past-item:hover img {
    will-change: transform;
    transform: scale(1.06);
  }


  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10,4,20,0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .lightbox.open {
    opacity: 1;
    pointer-events: all;
  }

  .lightbox-img {
    max-width: min(90vw, 800px);
    max-height: 88vh;
    border-radius: 16px;
    border: 1px solid rgba(200,158,247,0.3);
    box-shadow: 0 0 60px rgba(200,158,247,0.2), 0 0 120px rgba(107,53,168,0.15);
    object-fit: contain;
    transform: scale(0.92);
    transition: transform 0.3s ease;
  }

  .lightbox.open .lightbox-img { transform: scale(1); }

  .lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    background: none;
    border: 1px solid rgba(200,158,247,0.4);
    color: var(--violet-pale);
    font-size: 1rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }

  .lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240,192,96,0.1);
  }

  .lightbox-hint {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.4s ease;
  }

  .lightbox-hint-mobile { display: none; }

  @media (hover: none) and (pointer: coarse) {
    .lightbox-hint-pc     { display: none; }
    .lightbox-hint-mobile { display: inline; }
  }

  /* cursor: none sur TOUS */
  a, button, [onclick], label, select, input, textarea,
  .gallery-item, .past-item,
  .past-commissions-toggle,
  .commission-card,
  .btn,
  .lightbox-close,
  .contact-link,
  .social-link,
  .nav-links a,
  .nav-logo, .lang-option, .nav-right {
    cursor: none !important;
  }

  /* ── HAMBURGER BUTTON ── */
  .nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none !important;
    padding: 0.5rem;
    z-index: 200;
  }

  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-soft);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 82vw);
    height: 100dvh;
    background: var(--violet-mid);
    z-index: 150;
    flex-direction: column;
    padding: 5rem 2rem 3rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(200,158,247,0.15);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu ul li {
    border-bottom: 1px solid rgba(200,158,247,0.1);
  }

  .mobile-menu ul li:first-child {
    border-top: 1px solid rgba(200,158,247,0.1);
  }

  .mobile-menu ul a {
    display: block;
    padding: 1.1rem 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--violet-mist);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s, padding-left 0.2s;
    cursor: none !important;
  }

  .mobile-menu ul a:hover,
  .mobile-menu ul a:active {
    color: var(--gold-soft);
    padding-left: 0.5rem;
  }

  .mobile-menu-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none;
    border: 1px solid rgba(200,158,247,0.25);
    color: rgba(200,158,247,0.5);
    font-size: 1rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: none !important;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }

  .mobile-menu-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240,192,96,0.08);
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,4,20,0.6);
    z-index: 140;
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Dots cachés sur pc */
  .commission-dots { display: none; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .mobile-menu { display: flex; }
    .about-layout { grid-template-columns: 1fr; }
    .about-card { position: static; }
    .commissions-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 0;
      padding-bottom: 0;
      scrollbar-width: none;
      margin-bottom: 0;
    }
    .commissions-grid::-webkit-scrollbar { display: none; }
    .commission-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
      padding: 14px 14px 10px;
    }
    .commission-card:active::before { transform: scaleX(0); }
    .commission-card::before { display: none; }
    .commission-example { max-height: 200px; overflow: hidden; }
    .commission-example .img-default,
    .commission-example .img-hover {
      width: 100%;
      height: 200px;
      object-fit: contain;
      object-position: center;
    }
    .commission-example .img-default { position: relative; }
    .commission-example .img-hover { position: absolute; inset: 0; opacity: 0; }
    .commission-card:hover,
    .commission-card:active { transform: none; }
    .commission-type { margin-bottom: 4px; }
    .commission-name { font-size: 1.1rem; margin-bottom: 4px; }
    .commission-price { font-size: 0.85rem; margin-bottom: 10px; }
    .commission-img-hint { font-size: 0.55rem; margin-top: 6px; }
    #commissions { padding: 40px 0 20px; }
    #commissions .section-label { margin-bottom: 6px; }
    #commissions .section-title { font-size: 1.8rem; margin-bottom: 16px; }
    .commission-dots { margin-top: 12px; margin-bottom: 16px; }
    .commission-cta { gap: 10px; margin-bottom: 0; }
    .gallery-grid { columns: 2; }
    .site { padding: 0 20px; }
    .past-commissions-grid { grid-template-columns: repeat(2, 1fr); }

    /* Curseur désactivé sur mobile */
    body { cursor: auto; overflow-x: hidden; max-width: 100%; }
    .cursor, .cursor-mini { display: none !important; }
    a, button, [onclick], label, select, input, textarea,
    .gallery-item, .past-item, .past-commissions-toggle,
    .commission-card, .btn, .lightbox-close, .contact-link,
    .social-link, .nav-links a, .nav-logo, .mobile-menu ul a,
    .nav-burger, .mobile-menu-close {
      cursor: auto !important;
    }

    .scroll-hint {
      bottom: -15px;
    }
    .divider {
      margin: 20px;
    }
    .nav-right {
      gap: 0.5rem;
    }
    .lang-toggle {
      font-size: 0.68rem;
      padding: 0.22rem 0.55rem;
    }

    /* ── DOTS (mobile) ── */
    .commission-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
      margin-bottom: 32px;
    }

    .commission-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(200,158,247,0.2);
      border: 1px solid rgba(200,158,247,0.4);
      padding: 0;
      cursor: auto !important;
      appearance: none;
      -webkit-appearance: none;
      transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    }

    .commission-dot--active {
      background: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 0 8px var(--gold);
      transform: scale(1.3);
    }
  }

  /* ── PREFERS-REDUCED-MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    
    .hero-eyebrow, .hero-title, .hero-sub, .hero-status, .hero-cta, .scroll-hint {
      opacity: 1;
      transform: none;
    }

    .cloud-blob { animation: none; }
    .status-dot { animation: none; }
    .hero-star  { animation: none; }
    .cursor     { animation: none; }
    .scroll-line { animation: none; }
    .reveal.hidden { opacity: 1; transform: none; }
  }

  /* ── LANGUE OPTIONS (TOGGLE) ── */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    transition: border-color 0.2s, background 0.2s;
  }

  .lang-toggle:hover {
    border-color: rgba(255,255,255,0.38);
    background: rgba(255,255,255,0.05);
  }

  .lang-sep {
    opacity: 0.35;
    font-size: 0.65rem;
  }

  .lang-option {
    transition: color 0.2s;
    cursor: pointer;
    padding: 0.1rem 0.15rem;
  }

  .lang-option.lang-active {
    color: var(--gold, #f0c060);
    font-weight: 700;
  }