/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ── Theme primitives — driven by theme.js (ne pas modifier ici) ── */
    --th-bg:           #f5f0eb;
    --th-bg-dark:      #1a1a1a;
    --th-text:         #1a1a1a;
    --th-text-inv:     #f5f0eb;
    --th-accent:       #c4a882;
    --th-muted:        #888;
    --th-font-heading: 'Syne', sans-serif;
    --th-font-body:    'Space Grotesk', sans-serif;
    --th-texture:      none;

    /* ── Aliases sémantiques utilisés partout dans le CSS ── */
    --bg:           var(--th-bg);
    --bg-dark:      var(--th-bg-dark);
    --text:         var(--th-text);
    --text-light:   var(--th-text-inv);
    --accent:       var(--th-accent);
    --gray:         var(--th-muted);
    --font-heading: var(--th-font-heading);
    --font-body:    var(--th-font-body);
    --title-label-gap: 1rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* ========================================
   PRELOADER
======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
    width: 200px;
}

.preloader-percent {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--text-light);
    border-radius: 2px;
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: 'aw-conqueror-std-stincilla', var(--font-heading), sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.menu-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px;
}

.menu-icon span {
    display: block;
    height: 1.5px;
    background: #fff;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.3s ease;
}

.menu-toggle.active .menu-icon span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active .menu-icon span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ========================================
   NAV OVERLAY
======================================== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 90;
    display: flex;
    align-items: center;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-overlay.open {
    clip-path: inset(0 0 0% 0);
}

.nav-inner {
    width: 100%;
    padding: 6rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.nav-links li {
    overflow: hidden;
}

.nav-links a {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-light);
    padding: 0.3rem 0;
    transform: translateY(110%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: var(--delay, 0s);
    position: relative;
    overflow: hidden;
}

/* Couche du bas qui monte au hover */
.nav-links a .text-top {
    display: block;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.4s ease;
}

.nav-links a .text-bottom {
    position: absolute;
    left: 0;
    top: 100%;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    color: var(--accent);
    opacity: 0;
    transform: translateY(0%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.4s ease;
}

.nav-links a:hover .text-top {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-links a:hover .text-bottom {
    transform: translateY(-100%);
    opacity: 1;
}

.nav-overlay.open .nav-links li:nth-child(1) a { --delay: 0.1s; transform: translateY(0); }
.nav-overlay.open .nav-links li:nth-child(2) a { --delay: 0.15s; transform: translateY(0); }
.nav-overlay.open .nav-links li:nth-child(3) a { --delay: 0.2s; transform: translateY(0); }
.nav-overlay.open .nav-links li:nth-child(4) a { --delay: 0.25s; transform: translateY(0); }
.nav-overlay.open .nav-links li:nth-child(5) a { --delay: 0.3s; transform: translateY(0); }

.nav-links a[data-index]::before {
    display: none; /* remplacé par .nav-index dans le JS */
}

.nav-index {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    flex-shrink: 0;
}

.nav-footer {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-footer a {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-footer a:hover {
    color: var(--text-light);
}

/* ========================================
   HERO
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 3rem 3rem;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-meta {
    position: absolute;
    right: 3rem;
    bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    max-width: 270px;
    padding-left: 1rem;
    border-left: 1px solid rgba(196, 168, 130, 0.45);
    color: var(--gray);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
    text-align: left;
    text-transform: uppercase;
    opacity: 0;
}

.hero-meta strong {
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-eyebrow {
    position: absolute;
    top: 7rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(860px, calc(100% - 2rem));
    font-size: 0.72rem;
    line-height: 1.75;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: normal;
    opacity: 0;
    will-change: opacity;
    cursor: default;
}

.hero-eyebrow-line,
.hero-subtitle-line {
    display: block;
}

.hero-eyebrow-line + .hero-eyebrow-line {
    margin-top: 0.25rem;
}

.hero-eyebrow-word,
.hero-subtitle-word {
    display: inline-block;
    white-space: nowrap;
}

.hero-eyebrow-char,
.hero-eyebrow-space,
.hero-subtitle-char,
.hero-subtitle-space {
    display: inline-block;
}

.hero-eyebrow-char,
.hero-subtitle-char {
    position: relative;
    transition:
        color 0.38s ease,
        opacity 0.38s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 0.008s);
}

.hero-eyebrow-char::after,
.hero-subtitle-char::after {
    content: attr(data-char);
    position: absolute;
    inset: 0;
    color: rgba(196, 168, 130, 0.46);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.32s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 0.008s);
}

.hero-eyebrow:hover .hero-eyebrow-char,
.hero-subtitle:hover .hero-subtitle-char {
    color: rgba(196, 168, 130, 0.96);
}

.hero-eyebrow:hover .hero-eyebrow-char:nth-child(3n + 1),
.hero-subtitle:hover .hero-subtitle-char:nth-child(3n + 1) {
    transform: translate3d(-0.05em, -0.09em, 0);
}

.hero-eyebrow:hover .hero-eyebrow-char:nth-child(3n + 2),
.hero-subtitle:hover .hero-subtitle-char:nth-child(3n + 2) {
    transform: translate3d(0.06em, 0.07em, 0);
}

.hero-eyebrow:hover .hero-eyebrow-char:nth-child(3n),
.hero-subtitle:hover .hero-subtitle-char:nth-child(3n) {
    transform: translate3d(0.02em, -0.05em, 0);
}

.hero-eyebrow:hover .hero-eyebrow-char::after,
.hero-subtitle:hover .hero-subtitle-char::after {
    opacity: 0.72;
    transform: translate3d(-0.11em, 0.04em, 0);
}

.hero-eyebrow-char:hover {
    color: var(--text-light);
    transition-delay: 0s;
}

.hero-eyebrow-char:hover::after {
    opacity: 0.95;
    transform: translate3d(-0.16em, 0.07em, 0);
}

.hero-subtitle-char:hover {
    color: var(--text);
    transition-delay: 0s;
}

.hero-subtitle-char:hover::after {
    opacity: 0.95;
    transform: translate3d(-0.16em, 0.07em, 0);
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: clamp(2.25rem, 4vw, 3.65rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0;
    cursor: default;
}

.hero-intro-text {
    max-width: 620px;
    margin: 0 0 1.35rem;
    font-size: clamp(0.76rem, 0.85vw, 0.92rem);
    line-height: 1.75;
    color: rgba(136, 136, 136, 0.72);
    text-align: center;
    opacity: 0;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 2rem;
    opacity: 0;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* ========================================
   SECTIONS COMMON
======================================== */
.section-header {
    padding: 0 3rem;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: var(--title-label-gap);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
}

/* ========================================
   SERVICES
======================================== */
.services {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.service-img-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.service-card:hover .service-img-placeholder {
    transform: scale(1.05);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0, 0.25, 1);
    will-change: transform;
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover .service-img::after {
    opacity: 1;
}

.service-content {
    padding: 2rem;
}

.service-number {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

.service-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* ========================================
   MARQUEE
======================================== */
.marquee-section {
    padding: 4rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.marquee {
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-inner span {
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   ABOUT
======================================== */
.about {
    padding: 10rem 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 500px;
}

.about-visual {
    position: relative;
    overflow: hidden;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 4px;
}

.about-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 1.2s cubic-bezier(0.25, 0, 0.25, 1);
    will-change: transform;
}

.about-visual:hover img {
    transform: scale(1.04);
}

/* Image reveal clip-path — état initial géré par JS (GSAP) */
.img-reveal {
    clip-path: inset(0 100% 0 0);
}

/* Section header reveal — géré par GSAP (pas de CSS opacity:0 ici) */

/* ========================================
   CURSOR DESIGN
======================================== */

/* Masquer le curseur natif uniquement avec une vraie souris */
@media (hover: hover) and (pointer: fine) {
    * { cursor: none !important; }
}

@media (hover: none), (pointer: coarse) {
    *,
    *::before,
    *::after {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-wrap,
    .cursor-particle {
        display: none !important;
    }
}

/* Point central — suit la souris instantanément */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: difference;
}

/* Wrapper positionné par GSAP avec lag */
.cursor-wrap {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999998;
}

/* Anneau tournant à deux arcs */
.cursor-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: #fff;
    border-bottom-color: #fff;
    mix-blend-mode: difference;
    animation: cursor-spin 3.5s linear infinite;
    transition: border-color 0.35s ease,
                transform 0.45s cubic-bezier(0.25, 0, 0.25, 1);
}

@keyframes cursor-spin {
    to { transform: rotate(360deg); }
}

/* Label au centre — visible sur les images */
.cursor-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    font-family: var(--font-body);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    mix-blend-mode: difference;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* État hover — liens et boutons */
.cursor-wrap.is-hovering .cursor-ring {
    border-color: #fff;
    animation-play-state: paused;
    transform: scale(1.35) rotate(45deg);
}

/* État hover — images (galerie, disciplines) */
.cursor-wrap.is-image .cursor-ring {
    border-color: var(--accent);
    animation-play-state: paused;
    transform: scale(1.7) rotate(0deg);
    border-top-color: var(--accent);
    border-bottom-color: var(--accent);
    border-left-color: rgba(196, 168, 130, 0.3);
    border-right-color: rgba(196, 168, 130, 0.3);
}

.cursor-wrap.is-image .cursor-label {
    opacity: 1;
}

/* ========================================
   WORK / PORTFOLIO
======================================== */
.work {
    padding: 8rem 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.work .section-label {
    color: var(--gray);
}

.work-gallery {
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.work-item {
    position: relative;
    cursor: pointer;
}

.work-item:nth-child(odd) {
    margin-top: 4rem;
}

.work-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.work-img-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.work-item:hover .work-img-placeholder {
    transform: scale(1.05);
}

.work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0, 0.25, 1);
    will-change: transform;
}

.work-item:hover .work-img img {
    transform: scale(1.06);
}

.work-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.5s ease;
    pointer-events: none;
}

.work-item:hover .work-img::after {
    background: rgba(0,0,0,0.15);
}

.work-info {
    padding: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
}

.work-number {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.work-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.work-category {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: auto;
    letter-spacing: 0.05em;
}

/* ========================================
   CTA
======================================== */
.cta {
    padding: 10rem 3rem;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 3rem;
}

.cta-line {
    display: block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--text);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background 0.4s ease, color 0.4s ease, gap 0.3s ease;
}

.cta-button:hover {
    background: var(--text);
    color: var(--text-light);
    gap: 1.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button--ghost {
    background: transparent;
    border-color: rgba(26,26,26,0.3);
}

.cta-button--ghost:hover {
    background: var(--text);
    color: var(--text-light);
    border-color: var(--text);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* ========================================
   BRANDS
======================================== */
.brands {
    padding: 5rem 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.brands-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brands-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.brand-name:hover {
    opacity: 1;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Compte à rebours */
.footer-countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-dark);
    color: var(--text-light);
    gap: 2rem;
}

.countdown-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
}

.countdown-next {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 3.5rem;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: opacity 0.15s ease;
}

.countdown-unit-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
}

.countdown-sep {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: rgba(245, 240, 235, 0.2);
    margin-bottom: 1.2rem;
}

/* Footer bas */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-right a:hover {
    color: var(--text);
}

/* ========================================
   TEXT HOVER EFFECTS
======================================== */

/* --- Caractères individuels --- */
.char {
    display: inline-block;
    transition: opacity 0.35s ease, color 0.35s ease;
    transition-delay: calc(var(--i) * 0.025s);
}

.char-word {
    display: inline-block;
    white-space: nowrap;
}

/* Vague de transparence : tous les chars s'estompent au hover du parent */
.service-card:hover .service-title .char,
.work-item:hover .work-title .char {
    opacity: 0.15;
    transition-delay: calc(var(--i) * 0.02s);
}

/* Le char survolé directement reste plein */
.char:hover {
    opacity: 1 !important;
    color: var(--accent);
    transition-delay: 0s !important;
}

/* --- Hero title — image dans la lettre survolée, vague sur les autres --- */

/* Chaque char porte le background prêt à être révélé */
.hero-title .char {
    background-image: url('../img/peintures/dame_3.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--text);
    transition: opacity 0.35s ease, -webkit-text-fill-color 0.35s ease;
    transition-delay: calc(var(--i) * 0.025s);
}

/* Vague : les autres lettres s'estompent (texte, pas image) */
.hero-title:hover .char {
    /* opacity: 0.12; */
    transition-delay: calc(var(--i) * 0.02s);
}

/* Lettre survolée : image pleine intensité à travers cette lettre uniquement */
.hero-title .char:hover {
    opacity: 1 !important;
    -webkit-text-fill-color: transparent !important;
    transition-delay: 0s !important;
}

/* --- Section title gradient au hover --- */
.section-title {
    cursor: default;
    background: linear-gradient(
        90deg,
        var(--text) 0%,
        var(--accent) 50%,
        var(--text) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-position: 100% center;
    transition: background-position 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.section-title:hover {
    background-position: 0% center;
}

/* Work section — titre en clair sur fond sombre */
.work .section-title {
    background: linear-gradient(
        90deg,
        var(--text-light) 0%,
        var(--accent) 50%,
        var(--text-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-position: 100% center;
    transition: background-position 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.work .section-title:hover {
    background-position: 0% center;
}

/* --- Section label shimmer --- */
.section-label::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    white-space: nowrap;
}

.section-label:hover::after {
    clip-path: inset(0 0% 0 0);
}

/* --- Logo hover --- */
.logo .logo-top {
    display: block;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.4s ease;
}

.logo .logo-bottom {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--accent);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.4s ease;
    opacity: 0;
}

.logo:hover .logo-top {
    transform: translateY(-100%);
    opacity: 0;
}

.logo:hover .logo-bottom {
    transform: translateY(-100%);
    opacity: 1;
}

/* --- Footer links underline slide --- */
.footer-right a,
.nav-footer a {
    position: relative;
    display: inline-block;
}

.footer-right a::after,
.nav-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.footer-right a:hover::after,
.nav-footer a:hover::after {
    width: 100%;
}

/* --- Work category fade + accent --- */
.work-category {
    transition: opacity 0.3s ease, color 0.3s ease;
}

.work-item:hover .work-category {
    opacity: 1;
    color: var(--accent);
}

/* --- About lead chars --- */
.about-lead .char {
    transition: opacity 0.4s ease, color 0.4s ease;
    transition-delay: calc(var(--i) * 0.015s);
}

.about-text-wrapper:hover .about-lead .char {
    opacity: 0.2;
}

.about-lead .char:hover {
    opacity: 1 !important;
    color: var(--accent);
    transition-delay: 0s !important;
}

/* ========================================
   ARTISTE
======================================== */
.artiste {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 8rem 3rem;
}

/* Header — nom + tag */
.artiste-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 3rem;
}

.artiste-header-left .section-label {
    color: var(--gray);
    margin-bottom: var(--title-label-gap);
    display: block;
}

.artiste-name {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    overflow: hidden;
}

.artiste-name-line {
    display: block;
    overflow: hidden;
}

.artiste-header-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.artiste-tag {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.artiste-tag--light {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.1em;
}

/* Body — image + bio */
.artiste-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 8rem;
}

.artiste-img-col {
    position: sticky;
    top: 6rem;
}

.artiste-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.artiste-img-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0, 0.25, 1);
    will-change: transform;
}

.artiste-img-wrap:hover img {
    transform: scale(1.04);
}

.artiste-img-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.artiste-img-label span {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.artiste-bio-col {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.artiste-bio {
    font-size: 1rem;
    color: rgba(245,240,235,0.65);
    line-height: 1.85;
    max-width: 480px;
}

.artiste-bio--lead {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
}

.artiste-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid rgba(196,168,130,0.3);
    padding-bottom: 0.4rem;
    transition: gap 0.3s ease, border-color 0.3s ease;
    width: fit-content;
}

.artiste-cta:hover {
    gap: 1.25rem;
    border-color: var(--accent);
}

.artiste-cta-arrow {
    transition: transform 0.3s ease;
}

.artiste-cta:hover .artiste-cta-arrow {
    transform: translateX(4px);
}

/* Stats */
.artiste-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8rem;
}

.artiste-stat {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.artiste-stat:last-child {
    border-right: none;
}

.artiste-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196,168,130,0.06);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.25,0,0.25,1);
}

.artiste-stat:hover::before {
    transform: scaleY(1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 600;
    color: var(--accent);
    opacity: 0.6;
}

.stat-number--symbol {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* Quote */
.artiste-quote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.artiste-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: rgba(245,240,235,0.5);
    border: none;
    padding: 0;
    letter-spacing: 0.01em;
}

/* Responsive artiste */
@media (max-width: 1024px) {
    .artiste-body {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .artiste-img-col {
        position: relative;
        top: auto;
    }
    .artiste-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .artiste-stat:nth-child(2) { border-right: none; }
    .artiste-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
    .artiste-stat:nth-child(3),
    .artiste-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 768px) {
    .artiste { padding: 6rem 1.5rem; }
    .artiste-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .artiste-header-right { text-align: left; }
    .artiste-stats { grid-template-columns: repeat(2, 1fr); }
    .artiste-quote-text { font-size: 1.2rem; }
}

/* ========================================
   GRAIN OVERLAY
======================================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    pointer-events: none;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

/* ========================================
   SHOWCASE — SCROLL HORIZONTAL
======================================== */
.showcase {
    padding: 8rem 0 0;
    overflow: hidden;
}

.showcase-header {
    padding: 0 3rem 3rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.showcase-hint {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
}

.showcase-track-wrapper {
    overflow: hidden;
}

.showcase-track {
    display: flex;
    gap: 2rem;
    padding: 0 3rem 4rem;
    will-change: transform;
}

.showcase-item {
    flex: 0 0 420px;
    cursor: pointer;
    position: relative;
}

.showcase-img-wrap {
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0, 0.25, 1);
    will-change: transform;
}

.showcase-item:hover .showcase-img-wrap img {
    transform: scale(1.05);
}

.showcase-caption {
    padding: 1.2rem 0 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.showcase-num {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.showcase-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.showcase-item:hover .showcase-name {
    color: var(--accent);
}

.showcase-item:focus-visible,
.vg-item:focus-visible,
.work-item:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 10px;
}

/* ========================================
   GALLERY FILTERS
======================================== */
.gallery-filters {
    display: flex;
    gap: 0.75rem;
    padding: 0 3rem 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Items filtrés masqués */
.work-item.filtered-out {
    pointer-events: none;
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 19000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(6px);
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img-wrap {
    max-width: 80vw;
    max-height: 75vh;
    overflow: hidden;
    border-radius: 4px;
}

.lightbox-img {
    max-width: 80vw;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.lightbox-cat {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lightbox-prev,
.lightbox-next {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    cursor: default;
    pointer-events: none;
}

.lightbox-counter {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--gray);
}

/* ========================================
   CURSOR PARTICLES (traînée)
======================================== */
.cursor-particle {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 999997;
    mix-blend-mode: multiply;
}

/* ========================================
   SIDE TOOLBAR (theme + sound)
======================================== */
.side-toolbar {
    position: fixed;
    left: 0px;
    bottom: -77px;
    transform: translateY(-50%);
    z-index: 18000;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.4rem;
    backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.41);
    border-radius: 0px 28px 0px 0px;
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.side-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    cursor: none;
    transition: background 0.25s, border-color 0.25s;
}

.side-btn:hover {
    background: #2a2a2a;
    border-color: rgba(255,255,255,0.3);
}

.side-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-btn-tooltip {
    position: absolute;
    left: calc(100% + 0.9rem);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.32rem 0.72rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.64rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.side-btn:hover .side-btn-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Sound playing state */
.sound-btn.playing {
    border-color: var(--accent);
}

/* Room return button — séparateur + couleur ambre */
.side-btn--room {
    border-color: rgba(180, 106, 77, 0.35);
    position: relative;
}

.side-btn--room.is-locked {
    opacity: 0.28;
    pointer-events: none;
    filter: saturate(0.55);
}

/* .side-btn--room::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 15%;
    width: 70%;
    height: 1px;
    background: rgba(255,255,255,0.1);
} */

/* .side-btn--room:hover {
    border-color: rgba(180, 106, 77, 0.85);
    background: rgba(180, 106, 77, 0.1);
} */

.sound-icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.sound-bar {
    display: block;
    width: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: background 0.3s;
    height: 4px;
}

/* Barres animées quand playing */
.sound-btn.playing .sound-bar:nth-child(1) {
    animation: soundWave 0.9s ease-in-out infinite;
}
.sound-btn.playing .sound-bar:nth-child(2) {
    animation: soundWave 0.9s ease-in-out infinite 0.15s;
}
.sound-btn.playing .sound-bar:nth-child(3) {
    animation: soundWave 0.9s ease-in-out infinite 0.3s;
}
.sound-btn.playing .sound-bar:nth-child(4) {
    animation: soundWave 0.9s ease-in-out infinite 0.45s;
}

.sound-btn.playing .sound-bar {
    background: var(--accent);
}

@keyframes soundWave {
    0%, 100% { height: 3px; }
    50%       { height: 14px; }
}

.sound-label {
    line-height: 1;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-img {
        aspect-ratio: 16/9;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-gallery {
        grid-template-columns: 1fr;
    }

    .work-item:nth-child(odd) {
        margin-top: 0;
    }

    .showcase-item {
        flex: 0 0 320px;
    }

    .showcase-img-wrap {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.2rem 1.5rem;
    }

    .section-header {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        justify-content: flex-start;
        padding: 7.25rem 1.25rem 2.25rem;
        overflow: hidden;
    }

    .hero-eyebrow {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: min(100%, 22.5rem);
        margin: 0 auto clamp(2.75rem, 8vh, 4.25rem);
        font-size: clamp(0.55rem, 2.15vw, 0.68rem);
        line-height: 1.8;
        letter-spacing: 0.12em;
    }

    .hero-eyebrow-line + .hero-eyebrow-line {
        margin-top: 0.45rem;
    }

    .hero-content {
        flex: 1;
        width: 100%;
        justify-content: center;
        padding: 0 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(3.1rem, 9vw, 3.25rem);
        line-height: 0.9;
        letter-spacing: -0.03em;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-top: 1.25rem;
        font-size: clamp(1rem, 4.8vw, 1.45rem);
        line-height: 1.2;
        letter-spacing: 0.14em;
    }

    .hero-subtitle-line {
        white-space: nowrap;
    }

    .hero-meta {
        position: static;
        align-items: center;
        width: min(100%, 22rem);
        max-width: none;
        margin: 0 auto 1.35rem;
        padding: 1rem 0 0;
        border-left: 0;
        border-top: 1px solid rgba(196, 168, 130, 0.45);
        font-size: 0.62rem;
        line-height: 1.55;
        text-align: center;
    }

    .hero-meta strong {
        font-size: 1.05rem;
    }

    .hero-scroll {
        padding-bottom: 0;
        gap: 0.35rem;
    }

    .scroll-line {
        height: 34px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .about {
        padding: 6rem 1.5rem;
    }

    .work {
        padding: 6rem 0;
    }

    .work-gallery {
        padding: 0 1.5rem;
    }

    .cta {
        padding: 6rem 1.5rem;
    }

    .brands {
        padding: 3rem 1.5rem;
    }

    .brands-inner {
        justify-content: center;
    }

    .footer-countdown {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .footer-left {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   GALERIE VIRTUELLE
======================================== */

/* -- Intro vertical -- */
.vg-header {
    padding: 9rem 3rem 6rem;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.vg-header .section-label {
    display: inline-block;
    margin-bottom: var(--title-label-gap);
}

.vg-header-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.vg-header-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gray);
}

.vg-header-sub {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.vg-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vg-scroll-line {
    width: 1px;
    height: 44px;
    background: currentColor;
    opacity: 0.25;
    animation: vgLinePulse 1.8s ease-in-out infinite;
    transform-origin: top;
}

@keyframes vgLinePulse {
    0%, 100% { opacity: 0.08; transform: scaleY(0.4); }
    50%       { opacity: 0.3;  transform: scaleY(1);   }
}

/* -- Track wrapper (100vh, pinné) -- */
.vg-track-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* Mur ivoire chaud + sol beige */
    background: linear-gradient(to bottom, #fbfaf9 66%, #f5f2ed 66%);
}

/* Titre fantôme en fond */
.vg-bg-title {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: clamp(6rem, 18vw, 15rem);
    font-weight: 800;
    letter-spacing: 0.35em;
    color: rgba(0,0,0,0.028);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* -- Track horizontal -- */
.vg-track {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10vw;
    gap: 7vw;
    position: relative;
    z-index: 1;
    will-change: transform;
}

/* Ombre de sol */
.vg-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 34%;
    background: linear-gradient(to top, rgba(40,28,16,0.07) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Barre de progression */
.vg-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(0,0,0,0.08);
    z-index: 6;
}

.vg-progress-fill {
    height: 100%;
    width: 0%;
    background: rgba(0,0,0,0.35);
}

/* -- Panneau intro -- */
.vg-panel {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.vg-panel--intro {
    width: clamp(260px, 32vw, 420px);
    justify-content: flex-start;
}

.vg-intro-inner {
    padding: 2.5rem 2rem 2.5rem 0;
    border-left: 1px solid rgba(0,0,0,0.14);
    padding-left: 2.5rem;
}

.vg-intro-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.38);
    margin-bottom: 1.2rem;
}

.vg-intro-name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: #26201a;
    margin-bottom: 1.5rem;
}

.vg-intro-rule {
    width: 36px;
    height: 1px;
    background: rgba(0,0,0,0.18);
    margin-bottom: 1.2rem;
}

.vg-intro-dates {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.42);
    margin-bottom: 0.6rem;
}

.vg-intro-media {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
}

/* -- Œuvre -- */
.vg-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: opacity 0.5s ease;
}

/* Décalages verticaux alternés — rythme de galerie */
.vg-item:nth-child(3n+1) { margin-bottom: 4vh; }
.vg-item:nth-child(3n+2) { margin-top: 4vh; }
.vg-item:nth-child(3n)   { margin-bottom: 2vh; }

/* Spot lumineux au-dessus */
.vg-spotlight {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 220px;
    background: radial-gradient(ellipse 50% 55% at 50% 0%,
        rgba(255,245,220,0.85) 0%,
        rgba(255,240,200,0.3) 40%,
        transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Cadre */
.vg-frame {
    position: relative;
    background: #fefefe;
    padding: 10px;
    margin: 0;
    box-shadow:
        0 1px 2px  rgba(0,0,0,0.06),
        0 4px 14px rgba(0,0,0,0.09),
        0 14px 36px rgba(0,0,0,0.11),
        0 28px 52px rgba(0,0,0,0.07);
    transition:
        transform 0.75s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.75s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: none;
}

/* Filet intérieur du passe-partout */
.vg-frame::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(0,0,0,0.055);
    pointer-events: none;
}

/* Images — proportions naturelles, hauteur contrainte */
.vg-frame img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.vg-item--lg .vg-frame { height: 440px; }
.vg-item--md .vg-frame { height: 340px; }
.vg-item--sm .vg-frame { height: 260px; }

/* Hover : légère élévation + zoom */
.vg-item:hover .vg-frame {
    transform: translateY(-10px) scale(1.025);
    box-shadow:
        0 2px 6px  rgba(0,0,0,0.08),
        0 8px 24px rgba(0,0,0,0.13),
        0 24px 56px rgba(0,0,0,0.15),
        0 48px 80px rgba(0,0,0,0.09);
}

/* Légende */
.vg-caption {
    margin-top: 1.4rem;
    text-align: left;
    width: 100%;
    padding: 0 3px;
}

.vg-cap-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(0,0,0,0.25);
    margin-bottom: 0.3rem;
}

.vg-cap-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: #26201a;
    margin: 0 0 0.25rem;
    letter-spacing: 0.02em;
}

.vg-cap-medium {
    display: block;
    font-size: 0.7rem;
    color: rgba(0,0,0,0.4);
    letter-spacing: 0.04em;
}

.vg-cap-year {
    display: block;
    font-size: 0.65rem;
    color: rgba(0,0,0,0.28);
    letter-spacing: 0.1em;
    margin-top: 0.15rem;
}

/* -- Citation -- */
.vg-quote-panel {
    flex-shrink: 0;
    width: clamp(240px, 28vw, 380px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1vw;
}

.vg-quote {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin: 0;
}

.vg-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: #26201a;
    margin-bottom: 1.4rem;
}

.vg-quote-cite {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    font-style: normal;
}

/* -- Panneau fermeture -- */
.vg-panel--closing {
    width: clamp(220px, 28vw, 360px);
    justify-content: center;
    padding-right: 4vw;
}

.vg-closing-inner {
    text-align: center;
}

.vg-closing-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.32);
    margin-bottom: 1rem;
}

.vg-closing-rule {
    width: 28px;
    height: 1px;
    background: rgba(0,0,0,0.15);
    margin: 0 auto 1rem;
}

.vg-closing-next {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.38);
}

/* -- Mobile : scroll vertical -- */
@media (max-width: 768px) {
    .vg-header { padding: 6rem 1.5rem 4rem; }

    .vg-track-wrap {
        height: auto;
        background: #f0ebe1;
        background-image: none;
    }

    .vg-bg-title { display: none; }

    .vg-track {
        flex-direction: column;
        align-items: center;
        padding: 3rem 1.5rem 5rem;
        gap: 4rem;
        transform: none !important;
    }

    .vg-item,
    .vg-quote-panel,
    .vg-panel--intro,
    .vg-panel--closing {
        width: 100%;
        max-width: 420px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .vg-item--lg .vg-frame,
    .vg-item--md .vg-frame,
    .vg-item--sm .vg-frame { height: auto; }

    .vg-frame img { height: auto; width: 100%; max-width: 100%; }

    .vg-floor,
    .vg-progress { display: none; }

    .vg-intro-inner { border-left: none; border-top: 1px solid rgba(0,0,0,0.12); padding-left: 0; padding-top: 1.5rem; }
}

/* ========================================
   #WORK — REDESIGN GALERIE MUSÉALE
   Overrides le CSS générique .work via
   spécificité ID + déclaration plus tardive
======================================== */

/* -- Base section -- */
#work {
    padding: 10rem 0 14rem;
    background: #0e0e0e;
    color: var(--text-light);
    position: relative;
}

/* Ligne ambiante en haut */
#work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5rem;
    right: 5rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
}

/* -- En-tête éditorial -- */
.work-exhibition-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5rem 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0;
}

.work-exhibition-meta .section-label {
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: var(--title-label-gap);
}

/* Titre "Collection" — grand et discret */
#work .section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    background: none;
    -webkit-text-fill-color: rgba(255,255,255,0.08);
    background-clip: unset;
    -webkit-background-clip: unset;
    transition: none;
}

/* -- Filtres repositionnés -- */
#work .gallery-filters {
    display: flex;
    gap: 0.5rem;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

#work .filter-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    cursor: none;
}

#work .filter-btn.active,
#work .filter-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
}

/* -- Grille éditorial asymétrique -- */
#work .work-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 2rem;
    row-gap: 0;
    padding: 0;
    /* reset grid générique */
    align-items: start;
}

/* Placement éditorial de chaque pièce */
#work .work-item:nth-child(1) {
    grid-column: 2 / 7;
    padding-top: 8rem;
    margin-top: 0;
}

#work .work-item:nth-child(2) {
    grid-column: 8 / 12;
    padding-top: 5rem;
    margin-top: 0;
}

#work .work-item:nth-child(3) {
    grid-column: 2 / 6;
    padding-top: 0rem;
    margin-top: 0;
}

#work .work-item:nth-child(4) {
    grid-column: 7 / 11;
    padding-top: 6rem;
    margin-top: 0;
}

#work .work-item:nth-child(5) {
    grid-column: 4 / 10;
    padding-top: 10rem;
    padding-bottom: 4rem;
    margin-top: 0;
}

/* -- Work item -- */
#work .work-item {
    position: relative;
    cursor: none;
    transition: opacity 0.55s ease;
}

#work .work-gallery.is-filter-transitioning .work-item {
    transition: none;
    will-change: transform, opacity;
}

/* Spot lumineux au-dessus — CSS only
#work .work-item::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 180px;
    background: radial-gradient(ellipse 45% 55% at 50% 0%,
        rgba(255,248,225,0.09) 0%,
        transparent 100%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.6s ease;
}

#work .work-item:hover::before {
    opacity: 1.8; 
} */

/* -- Image -- */
#work .work-img {
    aspect-ratio: unset;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

#work .work-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    transform: scale(1);
    transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

#work .work-item:hover .work-img img {
    transform: scale(1.04);
}

/* Ombre muséale — s'intensifie au hover */
#work .work-img {
    box-shadow:
        0 2px 8px  rgba(0,0,0,0.4),
        0 8px 32px rgba(0,0,0,0.35),
        0 24px 64px rgba(0,0,0,0.25);
    transition: box-shadow 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

#work .work-item:hover .work-img {
    box-shadow:
        0 4px 16px rgba(0,0,0,0.55),
        0 16px 56px rgba(0,0,0,0.5),
        0 48px 100px rgba(0,0,0,0.35),
        0 80px 140px rgba(0,0,0,0.18);
}

/* Overlay sombre sur hover — focus */
#work .work-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

#work .work-item:hover .work-img::after {
    background: rgba(0,0,0,0.08);
}

/* -- Info / cartouche -- */
#work .work-info {
    padding: 1.4rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

#work .work-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

#work .work-number {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.22);
    font-weight: 400;
    margin-bottom: 0.1rem;
}

#work .work-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.82);
    /* désactiver l'effet char hover générique */
    line-height: 1.3;
}

/* Override char hover générique uniquement dans #work */
#work .work-item:hover .work-title .char {
    opacity: 1;
    color: inherit;
    transition-delay: 0s;
}

#work .work-category {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.08em;
    margin-left: 0;
    margin-top: 0.1rem;
}

/* -- Museum label — révélé au hover -- */
.work-museum-label {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(6px);
    transition:
        max-height 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        opacity    0.45s ease 0.08s,
        transform  0.45s ease 0.08s;
    margin-top: 0;
    border-top: 0px solid rgba(255,255,255,0.08);
}

#work .work-item:hover .work-museum-label {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.8rem;
    border-top-width: 1px;
    padding-top: 0.7rem;
}

.work-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.32);
    font-style: italic;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

/* -- Items filtrés -- */
#work .work-item.filtered-out {
    opacity: 0 !important;
    pointer-events: none;
    transform: scale(0.98);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* -- Dimming au hover (les autres s'assombrissent) -- */
#work .work-gallery.has-hover .work-item:not(:hover) {
    opacity: 0.3;
}

#work .work-gallery.has-hover .work-item.filtered-out {
    opacity: 0 !important;
}

#work .work-gallery.is-filtered {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    padding: 4rem 5rem 2rem;
}

#work .work-gallery.is-filtered .work-item:nth-child(n) {
    grid-column: auto;
    padding-top: 0;
    padding-bottom: 0;
}

#work .work-gallery.is-filtered .work-museum-label {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.8rem;
    border-top-width: 1px;
    padding-top: 0.7rem;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    .work-exhibition-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 0 3rem 4rem;
    }

    #work .work-item:nth-child(1) { grid-column: 1 / 7; padding-top: 6rem; }
    #work .work-item:nth-child(2) { grid-column: 9 / 13; padding-top: 6rem; }
    #work .work-item:nth-child(3) { grid-column: 4 / 7; padding-top: 0rem; }
    #work .work-item:nth-child(4) { grid-column: 7 / 13; padding-top: 4rem; }
    #work .work-item:nth-child(5) { grid-column: 3 / 11; padding-top: 8rem; }
}

@media (max-width: 768px) {
    #work {
        padding: 6rem 0 8rem;
    }

    .work-exhibition-header {
        padding: 0 1.5rem 3rem;
    }

    #work .gallery-filters { justify-content: flex-start; }

    #work .work-gallery {
        display: flex;
        flex-direction: column;
        gap: 5rem;
        padding: 4rem 1.5rem;
    }

    #work .work-gallery.is-filtered {
        display: flex;
        gap: 4rem;
        padding: 3rem 1.5rem;
    }

    #work .work-item:nth-child(n) {
        padding-top: 0;
        grid-column: unset;
    }

    #work .work-gallery.has-hover .work-item:not(:hover) {
        opacity: 1;
    }
}

/* ========================================
   #ARTISTE — REDESIGN ÉDITORIAL INTIME
======================================== */

#artiste {
    background: #0c0a08;
    color: var(--text-light);
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Texture de fond subtile */
#artiste::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

#artiste > * { position: relative; z-index: 1; }

/* -- Masthead -- */
#artiste .artiste-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 7rem 5rem 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0;
    gap: 3rem;
}

#artiste .artiste-header-left .section-label {
    color: rgba(196,168,130,0.55);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    display: block;
    margin-bottom: var(--title-label-gap);
}

#artiste .artiste-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    overflow: visible;
}

#artiste .artiste-name-line {
    display: block;
    overflow: hidden;
}

#artiste .artiste-header-right {
    text-align: right;
    padding-bottom: 0.4rem;
}

#artiste .artiste-tag {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

#artiste .artiste-tag--light {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.12em;
}

.artiste-masthead-location {
    font-size: 0.65rem;
    color: rgba(196,168,130,0.4);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* -- Body split screen -- */
#artiste .artiste-body {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 0;
    margin-bottom: 0;
    min-height: 80vh;
    align-items: start;
}

/* -- Colonne image -- */
#artiste .artiste-img-col {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem 4rem 5rem;
    border-right: 1px solid rgba(255,255,255,0.05);
}

#artiste .artiste-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    flex-shrink: 0;
}

#artiste .artiste-img-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 1.4s cubic-bezier(0.25, 0, 0.25, 1);
    will-change: transform;
    transform-origin: center bottom;
}

/* Note d'atelier overlay — révélée au hover */
.artiste-studio-note {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,5,3,0.92) 0%, rgba(8,5,3,0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 2rem;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0, 0.25, 1);
}

#artiste .artiste-img-wrap:hover .artiste-studio-note { opacity: 1; }
#artiste .artiste-img-wrap:hover img { transform: scale(1.03); }

.artiste-studio-note-text {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(245,240,235,0.85);
    line-height: 1.55;
    letter-spacing: 0.01em;
}

/* Label photo */
#artiste .artiste-img-label {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(8,5,3,0.55);
    backdrop-filter: blur(6px);
    padding: 0.35rem 0.75rem;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.06);
}

#artiste .artiste-img-label span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* Détails sous portrait */
.artiste-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.artiste-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.artiste-detail-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

.artiste-detail-value {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
}

/* -- Colonne texte -- */
#artiste .artiste-bio-col {
    padding: 6rem 5rem 6rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

/* Statement label */
.artiste-statement-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.artiste-statement-label {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(196,168,130,0.45);
}

#artiste .artiste-bio--lead {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(245,240,235,0.88);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

#artiste .artiste-bio {
    font-size: 0.95rem;
    color: rgba(245,240,235,0.45);
    line-height: 1.9;
    max-width: 520px;
    letter-spacing: 0.01em;
}

/* Note d'atelier */
.artiste-note-atelier {
    border-left: 1px solid rgba(196,168,130,0.22);
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.artiste-note-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(196,168,130,0.5);
    margin-bottom: 0.6rem;
}

.artiste-note-text {
    font-size: 0.82rem;
    color: rgba(245,240,235,0.35);
    font-style: italic;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

/* Actions */
.artiste-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

#artiste .artiste-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid rgba(196,168,130,0.2);
    padding-bottom: 0.35rem;
    transition: gap 0.35s ease, border-color 0.35s ease;
    width: fit-content;
    margin-top: 0;
}

#artiste .artiste-cta:hover {
    gap: 1.25rem;
    border-color: var(--accent);
}

/* Bouton audio */
.artiste-audio-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: none;
    border: 1px solid rgba(196,168,130,0.2);
    color: rgba(255,255,255,0.45);
    padding: 0.55rem 1.1rem 0.55rem 0.75rem;
    border-radius: 100px;
    cursor: none;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}

.artiste-audio-btn:hover {
    border-color: rgba(196,168,130,0.5);
    color: var(--accent);
    background: rgba(196,168,130,0.04);
}

.artiste-audio-btn.playing {
    border-color: var(--accent);
    color: var(--accent);
}

/* Anneau pulsant */
.artiste-audio-pulse {
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    border: 1px solid rgba(196,168,130,0.3);
    animation: artistePulse 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes artistePulse {
    0%   { transform: scale(1);    opacity: 0.5; }
    60%  { transform: scale(1.12); opacity: 0;   }
    100% { transform: scale(1);    opacity: 0;   }
}

.artiste-audio-btn.playing .artiste-audio-pulse {
    border-color: var(--accent);
    animation-duration: 1.4s;
}

.artiste-audio-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.artiste-audio-btn:hover .artiste-audio-icon,
.artiste-audio-btn.playing .artiste-audio-icon {
    background: rgba(196,168,130,0.12);
}

/* -- Citation oversized -- */
#artiste .artiste-quote {
    padding: 8rem 5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    max-width: none;
    margin: 0;
}

#artiste .artiste-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: rgba(245,240,235,0.55);
    letter-spacing: -0.01em;
    max-width: 900px;
    margin: 0 auto;
}

/* Mots animés — injectés par JS */
.artiste-quote-text .aq-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    will-change: opacity, transform;
}

/* -- Stats raffinées -- */
#artiste .artiste-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: none;
    margin-bottom: 0;
}

#artiste .artiste-stat {
    padding: 3.5rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

#artiste .artiste-stat:last-child { border-right: none; }

#artiste .artiste-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196,168,130,0.04);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#artiste .artiste-stat:hover::before { transform: scaleY(1); }

#artiste .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: inline;
    letter-spacing: -0.02em;
}

#artiste .stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 400;
    color: var(--accent);
    opacity: 0.45;
}

#artiste .stat-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    margin-top: 0.8rem;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    #artiste .artiste-body {
        grid-template-columns: 1fr;
    }

    #artiste .artiste-img-col {
        position: relative;
        top: auto;
        height: auto;
        padding: 4rem 3rem 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    #artiste .artiste-bio-col {
        padding: 4rem 3rem;
    }

    #artiste .artiste-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    #artiste .artiste-stat:nth-child(2) { border-right: none; }
    #artiste .artiste-stat:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,0.05);
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    #artiste .artiste-stat:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
}

@media (max-width: 768px) {
    #artiste .artiste-header {
        grid-template-columns: 1fr;
        padding: 5rem 1.5rem 3rem;
        gap: 2rem;
    }

    #artiste .artiste-header-right { text-align: left; }

    #artiste .artiste-img-col { padding: 3rem 1.5rem 2rem; }
    #artiste .artiste-bio-col { padding: 3rem 1.5rem; }

    #artiste .artiste-quote { padding: 5rem 1.5rem; }

    #artiste .artiste-stats { grid-template-columns: repeat(2, 1fr); }

    .artiste-actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

/* ========================================
   GALLERY INTRO — Expérience portes
======================================== */

html.gi-active,
body.gi-active { overflow: hidden; }

#gallery-intro {
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* Masqué par JS si déjà vu (sessionStorage) */
}

/* Toujours thème galerie — indépendant du thème artiste */
body.artist-theme-active #gallery-intro {
    --font-heading: 'Syne', sans-serif;
    --font-body:    'Space Grotesk', sans-serif;
    background-color: transparent;
}

body.artist-theme-active .gi-tagline {
    font-family: 'aw-conqueror-std-stincilla', serif;
}

/* Halo supprimé */
.gi-ambient { display: none; }

/* Panneaux — portes */
.gi-door {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50.2%; /* léger overlap pour éviter le gap au pixel près */
    background-color: rgba(255, 255, 255, 0.963);

    will-change: transform;
}

.gi-door--left {
    left: 0;
    /* Ombre intérieure sur le bord droit — profondeur du battant */
    /* box-shadow:
        inset -60px 0 100px rgba(0,0,0,0.05),
        inset -2px 0 8px rgba(0,0,0,0.06);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
    background-color: #f5f0e8; */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-right: 1px solid rgba(64, 64, 64, 0.125);
}

.gi-door--right {
    right: 0;
    /* box-shadow:
        inset 60px 0 100px rgba(0,0,0,0.05),
        inset 2px 0 8px rgba(0,0,0,0.06);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
    background-color: #f5f0e8; */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-left: 1px solid rgba(64, 64, 64, 0.125);
}

/* Vignette sur les bords extérieurs des portes */
.gi-door--left::before,
.gi-door--right::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 35%;
    pointer-events: none;
}

.gi-door--left::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.035), transparent);
}

.gi-door--right::before {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.035), transparent);
}

/* Jointure centrale — ligne de lumière */
.gi-seam {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.gi-seam-line {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,0.4) 15%,
        rgba(255,255,255,0.75) 50%,
        rgba(255,255,255,0.4) 85%,
        transparent 100%
    );
    animation: giBreath 3.2s ease-in-out infinite;
    box-shadow: 0 0 10px 2px rgba(255,255,255,0.4);
}

@keyframes giBreath {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 6px 1px rgba(255,255,255,0.25);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 18px 4px rgba(255,255,255,0.7);
    }
}

/* Contenu textuel — centré sur les deux portes */
.gi-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 2rem;
    /* Animations d'entrée staggerées via GSAP */
    pointer-events: none; /* ré-activé par GSAP après le fade-in */
}

.gi-gallery-name {
    display: block;
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.38);
    margin-bottom: 2.2rem;
    opacity: 0;
}

.gi-tagline {
    font-family: 'aw-conqueror-std-stincilla', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.42;
    color: #1a1714;
    letter-spacing: -0.015em;
    max-width: 680px;
    margin: 0 0 3rem;
    opacity: 0;
}

.gi-intro-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(26, 23, 20, 0.784);
    text-align: center;
    max-width: 550px;
    margin: 0 0 2.8rem;
    opacity: 0;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 20px;
    padding: 1rem;
}

.gi-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: none;
    border: 1px solid rgba(26,23,20,0.18);
    color: #1a1714;
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    cursor: pointer;
    transition:
        background 0.45s cubic-bezier(0.25, 0, 0.25, 1),
        border-color 0.45s ease,
        color 0.45s ease,
        transform 0.3s ease;
    outline: none;
    margin-bottom: 2.8rem;
    opacity: 0;
    /* cursor custom si disponible */
    cursor: none;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75);
}

.gi-btn::after {
    content: '→';
    font-size: 0.9em;
    opacity: 0.5;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gi-btn:hover {
    background: #1a1714;
    color: #f5f0e8;
    border-color: #1a1714;
    transform: translateY(-1px);
}

.gi-btn:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

.gi-btn:focus-visible {
    outline: 2px solid #1a1714;
    outline-offset: 4px;
}

.gi-expo {
    display: block;
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.22);
    opacity: 0;
}

/* ── État quand l'intro est masquée (skip via sessionStorage) ── */
#gallery-intro.gi-hidden {
    display: none;
}

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
    .gi-seam-line {
        animation: none;
        opacity: 0.6;
    }
    .gi-door {
        transition: none !important;
    }
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .gi-tagline {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    }
    .gi-btn {
        font-size: 0.65rem;
        padding: 1rem 2rem;
        letter-spacing: 0.16em;
    }
}

/* ══════════════════════════════════════════════════════
   SALLE SECRÈTE — expérience portes & pièce intime
══════════════════════════════════════════════════════ */

/* ── Voile atmosphérique ── */
#secret-veil {
    position: fixed;
    inset: 0;
    background: #080503;
    opacity: 0;
    pointer-events: none;
    z-index: 59997;
    transition: opacity 0.1s;
}

/* ── Invitation — deux portes noires ── */
#secret-invite {
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 59998;
    overflow: hidden;
}

/* Panneaux — portes noires (miroir de l'intro, couleur inversée) */
.si-door {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50.2%;
    background-color: #0d0b08;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    will-change: transform;
}

.si-door--l {
    left: 0;
    box-shadow:
        inset -60px 0 110px rgba(0,0,0,0.55),
        inset -2px 0 8px rgba(0,0,0,0.75);
}

.si-door--r {
    right: 0;
    box-shadow:
        inset 60px 0 110px rgba(0,0,0,0.55),
        inset 2px 0 8px rgba(0,0,0,0.75);
}

/* Vignettes extérieures */
.si-door--l::before,
.si-door--r::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28%;
    pointer-events: none;
}

.si-door--l::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.18), transparent);
}

.si-door--r::before {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.18), transparent);
}

/* Jointure ambrée — lumière qui filtre */
.si-seam {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.si-seam-line {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(180, 100, 20, 0.45) 15%,
        rgba(220, 150, 50, 0.9) 50%,
        rgba(180, 100, 20, 0.45) 85%,
        transparent 100%
    );
    animation: siAmberBreath 3.5s ease-in-out infinite;
    box-shadow: 0 0 14px 2px rgba(200, 130, 30, 0.45);
}

@keyframes siAmberBreath {
    0%, 100% { opacity: 0.35; box-shadow: 0 0 8px 1px rgba(200,130,30,0.3); }
    50%       { opacity: 1;   box-shadow: 0 0 28px 5px rgba(220,160,50,0.7); }
}

/* Message textuel — centré sur les deux portes */
.si-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    pointer-events: none;
    width: 90%;
    max-width: 680px;
}

.si-msg-a {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.14em;
    color: rgba(245, 238, 225, 0.4);
    margin: 0;
}

.si-msg-b {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: rgba(245, 238, 225, 0.9);
    margin: 0;
}

.si-enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: none;
    border: 1px solid rgba(196, 168, 112, 0.28);
    color: rgba(245, 238, 225, 0.75);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 1rem 2.8rem;
    cursor: none;
    pointer-events: none;
    transition: border-color 0.45s, color 0.45s, background 0.45s;
    margin-top: 0.8rem;
}

.si-enter-btn::after {
    content: '→';
    opacity: 0.45;
    transition: transform 0.4s, opacity 0.4s;
}

.si-enter-btn:hover {
    border-color: rgba(196, 168, 112, 0.65);
    color: rgba(245, 238, 225, 0.95);
    background: rgba(196, 168, 112, 0.05);
}

.si-enter-btn:hover::after { transform: translateX(5px); opacity: 1; }

/* ── Transition — halo lumineux seulement ── */
#secret-trans {
    position: fixed;
    inset: 0;
    z-index: 59999;
    pointer-events: none;
}

/* .srt-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 60% at 50% 50%,
        rgba(220, 160, 60, 0.9) 0%,
        rgba(180, 100, 20, 0.5) 35%,
        rgba(100, 50, 10, 0.2) 65%,
        transparent 100%);
    opacity: 0;
} */

/* ── Salle secrète ── */
#secret-room {
    position: fixed;
    inset: 0;
    background: #0a0705;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 60000;
}

/* Lumière de plafond ambiante */
.sr-ambient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60vh;
    background: radial-gradient(ellipse 70% 55% at 50% 0%,
        rgba(200, 140, 50, 0.12) 0%,
        rgba(160, 100, 30, 0.06) 50%,
        transparent 100%);
    pointer-events: none;
}

/* Bouton quitter */
.sr-exit {
    position: fixed;
    top: 2.5rem;
    left: 3rem;
    z-index: 60001;
    background: none;
    border: none;
    color: rgba(245, 238, 225, 0.3);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: color 0.4s;
    opacity: 0;
    pointer-events: none;
}

.sr-exit:hover { color: rgba(245, 238, 225, 0.7); }

.sr-exit-arrow {
    transition: transform 0.4s;
}

.sr-exit:hover .sr-exit-arrow { transform: translateX(-4px); }

/* Zone défilable */
.sr-scroll {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8rem 0 6rem;
}

.sr-scroll::-webkit-scrollbar { width: 2px; }
.sr-scroll::-webkit-scrollbar-track { background: transparent; }
.sr-scroll::-webkit-scrollbar-thumb { background: rgba(196,168,112,0.2); }

/* En-tête de la salle */
.sr-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.sr-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(196, 168, 112, 0.45);
    margin-bottom: 1.8rem;
}

.sr-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: rgba(245, 238, 225, 0.9);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.sr-intro {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: rgba(245, 238, 225, 0.4);
    margin-bottom: 4rem;
}

.sr-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(196,168,112,0.3), transparent);
    margin: 0 auto;
}

/* Œuvre principale */
.sr-hero-work {
    max-width: 900px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sr-hero-frame {
    position: relative;
}

.sr-hero-img {
    width: 100%;
    display: block;
    filter: brightness(0.88) contrast(1.05);
}

/* Spot lumineux simulé */
.sr-hero-spot {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 40px;
    background: radial-gradient(ellipse 40% 100% at 50% 0%,
        rgba(200, 150, 60, 0.18) 0%,
        transparent 100%);
    pointer-events: none;
}

.sr-meta-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(196, 168, 112, 0.5);
    margin-bottom: 1.2rem;
}

.sr-meta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: rgba(245, 238, 225, 0.85);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sr-meta-text {
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(245, 238, 225, 0.35);
    max-width: 340px;
}

/* Grille esquisses */
.sr-sketches {
    max-width: 1000px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.sr-sketches-label {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(196, 168, 112, 0.35);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sr-sketches-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(196, 168, 112, 0.1);
}

.sr-sketches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

.sr-sketch-item {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.sr-sketch-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) sepia(0.12) contrast(1.05);
    transition: filter 0.6s ease;
}

.sr-sketch-item:hover img { filter: brightness(0.92) sepia(0.05) contrast(1.05); }

.sr-sketch-item--tall { grid-row: span 2; }
.sr-sketch-item--wide { grid-column: span 2; }

.sr-sketch-item figcaption {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 238, 225, 0.2);
    margin-top: 0.7rem;
    padding: 0 0.2rem;
}

/* Note de l'artiste */
.sr-note {
    max-width: 680px;
    margin: 0 auto 8rem;
    padding: 0 3rem;
    text-align: center;
}

.sr-note-inner {
    position: relative;
    padding: 5rem 3rem;
    border-top: 1px solid rgba(196, 168, 112, 0.1);
    border-bottom: 1px solid rgba(196, 168, 112, 0.1);
}

.sr-note-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(196, 168, 112, 0.4);
    margin-bottom: 2.5rem;
}

.sr-note-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.9;
    color: rgba(245, 238, 225, 0.55);
    margin: 0 0 2.5rem;
    quotes: none;
}

.sr-note-text p { margin: 0 0 1.2rem; }
.sr-note-text p:last-child { margin-bottom: 0; }

.sr-note-author {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(196, 168, 112, 0.35);
    font-style: normal;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .sr-hero-work {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 480px;
    }

    .sr-sketches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sr-sketch-item--tall  { grid-row: auto; }
    .sr-sketch-item--wide  { grid-column: auto; }
}

@media (max-width: 600px) {
    .sr-header { margin-bottom: 5rem; }

    .sr-hero-work,
    .sr-sketches,
    .sr-note { padding: 0 1.5rem; }

    .sr-note-inner { padding: 3rem 1.5rem; }

    .si-msg-b {
        font-size: clamp(0.98rem, 5vw, 1.08rem);
        line-height: 1.55;
        letter-spacing: 0;
    }

    .sr-exit { left: 1.5rem; }
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
    .si-seam-line { animation: none; opacity: 0.6; }
}

/* ═══════════════════════════════════════════════════════════════
   #room3d — Salle d'exposition 3D
═══════════════════════════════════════════════════════════════ */

.room3d-section {
    position: relative;
    background: #0c0a07;
    overflow: hidden;
}

/* Section header */
.room3d-header {
    padding: 100px var(--container-pad, 5vw) 44px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.room3d-header .section-label {
    display: inline-block;
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c49840;
    margin-bottom: var(--title-label-gap);
}

.room3d-title {
    font-family: var(--font-heading, 'Syne', sans-serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #f5f0e8;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.room3d-subtitle {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: #8a8070;
    margin: 0;
}

/* Canvas wrapper */
.room3d-wrap {
    position: relative;
    height: 82vh;
    min-height: 480px;
    overflow: hidden;
}

.room3d-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    cursor: default;
}

.room3d-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* HUD overlay */
.room3d-hud {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 32px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
    background: linear-gradient(to top, rgba(10, 8, 5, 0.55) 0%, transparent 100%);
    z-index: 3;
}

.room3d-hint {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200, 188, 170, 0.7);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.room3d-hint-sep {
    opacity: 0.4;
}

/* Progress bar */
.room3d-progress-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.room3d-progress-label {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(180, 168, 148, 0.55);
}

.room3d-progress-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.room3d-progress-fill {
    height: 100%;
    width: 0%;
    background: #c49840;
    border-radius: 2px;
    transition: width 0.15s linear;
}

/* WebGL fallback */
.room3d-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: #0c0a07;
    padding: 3rem;
    z-index: 5;
}

.room3d-fallback p {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.9rem;
    line-height: 1.75;
    color: #8a8070;
    text-align: center;
    max-width: 38ch;
}

.room3d-loading {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #0c0a07;
    color: rgba(245, 238, 225, 0.72);
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    pointer-events: none;
}

.room3d-loading strong {
    color: #c49840;
    font-family: var(--font-heading, 'Syne', sans-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

/* ── Artwork detail overlay ── */
#artwork-overlay {
    position: fixed;
    inset: 0;
    z-index: 80000;
    background: #08060300;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#artwork-overlay[aria-hidden="false"] {
    pointer-events: auto;
    background: #080603;
}

.ao-close {
    position: absolute;
    top: 32px;
    left: 36px;
    z-index: 2;
    background: none;
    border: none;
    color: rgba(200, 188, 165, 0.7);
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 8px 0;
    transition: color 0.25s;
}

.ao-close:hover { color: #f0e8d8; }

.ao-close-arrow {
    font-size: 1.1em;
    line-height: 1;
}

.ao-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 80px max(5vw, 40px);
    gap: clamp(3rem, 6vw, 7rem);
}

.ao-image-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.ao-image-wrap {
    max-height: 78vh;
    display: flex;
    align-items: center;
}

.ao-image {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
}

.ao-info-col {
    flex: 0 0 clamp(260px, 28vw, 400px);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ao-gallery-label {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c49840;
}

.ao-title {
    font-family: var(--font-heading, 'Syne', sans-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #f2ede5;
    margin: 0;
    line-height: 1.1;
}

.ao-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.ao-year,
.ao-medium {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.82rem;
    color: #9a9080;
    letter-spacing: 0.04em;
}

.ao-sep { color: #4a4640; font-size: 0.7rem; }

.ao-desc {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.92rem;
    line-height: 1.8;
    color: #b8ae9e;
    margin: 0;
    max-width: 38ch;
}

.ao-collection {
    display: block;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.78rem;
    color: #c49840;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.ao-nav-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.ao-nav {
    background: none;
    border: 1px solid rgba(196, 152, 64, 0.35);
    color: #c49840;
    font-size: 1.1rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    line-height: 1;
}

.ao-nav:hover {
    background: rgba(196, 152, 64, 0.12);
    border-color: #c49840;
}

.ao-counter {
    font-family: var(--font-body, 'Space Grotesk', sans-serif);
    font-size: 0.78rem;
    color: #7a7168;
    letter-spacing: 0.05em;
    min-width: 3.5rem;
    text-align: center;
}

/* Thin amber divider above info */
.ao-info-col::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #c49840;
}

/* ── Canvas inside #secret-room (fullscreen fixed overlay) ── */
.sr-3d-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sr-3d-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* HUD above canvas, below exit button */
.sr-3d-hud {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

#secret-room .room3d-fallback { z-index: 6; }

/* ── room3d responsive ── */
@media (max-width: 768px) {
    .room3d-header { padding: 72px 24px 32px; }

    .room3d-wrap { height: 70vh; }

    .room3d-hud { padding: 16px 20px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }

    .room3d-progress-wrap { align-self: stretch; }
    .room3d-progress-bar  { width: 100%; flex: 1; }

    .ao-content {
        flex-direction: column;
        padding: 72px 24px 32px;
        gap: 2rem;
        overflow-y: auto;
    }

    .ao-image-col { width: 100%; justify-content: center; flex: none; }
    .ao-image-wrap { max-height: 45vw; }
    .ao-image { max-height: 45vw; }

    .ao-info-col { flex: none; width: 100%; }

    .ao-close { top: 24px; left: 24px; }
}

/* ========================================
   THEME SYSTEM
======================================== */

/* ── Veil overlay (used during transition) ── */
#theme-veil {
    position: fixed;
    inset: 0;
    background: #0a0806;
    z-index: 400000;
    pointer-events: none;
    opacity: 0;
}

/* ── Texture overlay (artist mode ambiance) ── */
#theme-texture {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: var(--th-texture, none);
    opacity: 0;
    transition: opacity 0.9s ease;
}

body.artist-theme-active #theme-texture {
    opacity: 1;
}

/* ── Theme toggle dot (icône dans .side-btn) ── */
.theme-toggle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* État artiste actif */
body.artist-theme-active #theme-toggle {
    border-color: rgba(180, 106, 77, 0.55);
}

body.artist-theme-active #theme-toggle:hover {
    border-color: rgba(180, 106, 77, 0.9);
    background: rgba(180, 106, 77, 0.1);
}

body.artist-theme-active .theme-toggle-dot {
    background: #b46a4d;
    box-shadow: 0 0 8px rgba(180, 106, 77, 0.7);
}

/* ── Artist theme specific overrides ── */

/* Sections that use hardcoded white backgrounds */
body.artist-theme-active .work-number-bg,
body.artist-theme-active .cta-number {
    background: var(--th-text-inv);
    color: var(--th-bg-dark);
}

/* Nav footer border in artist mode */
body.artist-theme-active .nav-footer {
    border-top-color: rgba(244, 239, 232, 0.1);
}

/* Gradient text in artist mode (uses accent as stop) */
body.artist-theme-active .hero-gradient-text,
body.artist-theme-active .section-title-gradient {
    background-image: linear-gradient(
        135deg,
        var(--th-text) 0%,
        var(--th-accent) 60%,
        var(--th-text) 100%
    );
}

/* ── Section Exposition — artist theme ──────────────────────────
   Force le recalcul des gradients texte et des couleurs fixes
   qui ne répondent pas automatiquement aux CSS vars.          */

/* Fond et texte de base de la section */
body.artist-theme-active .services,
body.artist-theme-active .marquee-section {
    background-color: var(--bg);
    color: var(--text);
}

/* Titres des cartes — re-déclare le gradient avec les valeurs artiste */
body.artist-theme-active .service-title {
    background: linear-gradient(90deg, var(--text) 0%, var(--accent) 50%, var(--text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: 100% center;
}

/* Textes et liens des cartes */
body.artist-theme-active .service-number,
body.artist-theme-active .service-text {
    color: var(--gray);
}

body.artist-theme-active .service-link {
    color: var(--text);
}

/* Titre et label de section */
body.artist-theme-active .services .section-title {
    background: linear-gradient(90deg, var(--text) 0%, var(--accent) 50%, var(--text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.artist-theme-active .services .section-label {
    color: var(--gray);
}

/* Bordures du marquee — rgba(0,0,0) invisible sur fond sombre */
body.artist-theme-active .marquee-section {
    border-top-color: rgba(244, 239, 232, 0.1);
    border-bottom-color: rgba(244, 239, 232, 0.1);
}

/* ================================================================
   À PROPOS DE LA GALERIE
================================================================ */

.about-galerie {
    background: #0e0c09;
    padding: clamp(5rem, 10vw, 9rem) 0;
    color: #f4efe8;
}

.ag-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.ag-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(244, 239, 232, 0.08);
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ag-header .section-label {
    color: #c4a882;
    margin-bottom: var(--title-label-gap);
}

.ag-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.5rem, 4vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: #f4efe8;
    margin: 0;
}

.ag-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.ag-intro-col {
    max-width: 680px;
}

.ag-lead {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.55;
    color: #f4efe8;
    margin: 0 0 2.2rem;
}

.ag-body-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.93rem;
    line-height: 1.95;
    color: rgba(244, 239, 232, 0.5);
    margin: 0 0 1.2rem;
}

.ag-body-text--em {
    color: rgba(244, 239, 232, 0.8);
    font-style: italic;
    border-left: 2px solid #c4a882;
    padding-left: 1.4rem;
    margin-top: 2.2rem;
    margin-bottom: 0;
}

.ag-messages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(244, 239, 232, 0.08);
}

.ag-message-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c4a882;
    margin: 0 0 1.2rem;
}

.ag-message-rule {
    width: 24px;
    height: 1px;
    background: rgba(196, 168, 130, 0.5);
    margin-bottom: 1.8rem;
}

.ag-message-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(244, 239, 232, 0.45);
    margin: 0 0 1rem;
}

.ag-closing {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(244, 239, 232, 0.55);
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(244, 239, 232, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.ag-signature {
    display: block;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c4a882;
}

.ag-work-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #c4a882;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
}

.ag-work-link:hover {
    color: #f4efe8;
}

@media (max-width: 768px) {
    .ag-messages {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ========================================
   RESPONSIVE TITLES PASS
======================================== */
.hero-title,
.hero-subtitle,
.section-title,
.vg-header-title,
.vg-intro-name,
#work .section-title,
#artiste .artiste-name,
.cta-title,
.ag-title,
.sr-title,
.sr-meta-title,
.ao-title,
.service-title,
.work-title,
#work .work-title,
.showcase-name,
.vg-cap-title,
.ag-message-title {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 5.25rem;
        line-height: 0.95;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 2.35rem;
        line-height: 1.15;
        letter-spacing: 0.12em;
    }

    .section-title,
    #work .section-title,
    .vg-header-title,
    .cta-title,
    .ag-title,
    .sr-title {
        font-size: 3.15rem;
        line-height: 1.05;
        letter-spacing: 0;
    }

    #artiste .artiste-name,
    .vg-intro-name {
        font-size: 3rem;
        line-height: 1;
        letter-spacing: 0;
    }
}

@media (max-width: 768px) {
    body {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .logo,
    .footer-logo {
        font-size: 0.95rem;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .section-label,
    #artiste .artiste-header-left .section-label,
    .ag-header .section-label,
    .vg-header .section-label {
        max-width: 100%;
        font-size: 0.68rem;
        line-height: 1.45;
        letter-spacing: 0.12em;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .hero-title {
        font-size: 2.55rem;
        line-height: 1;
        letter-spacing: 0;
    }

    .hero-line {
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.2;
        letter-spacing: 0.1em;
    }

    .section-title,
    #work .section-title,
    .vg-header-title,
    .cta-title,
    .ag-title,
    .sr-title {
        font-size: 2.35rem;
        line-height: 1.08;
        letter-spacing: 0;
    }

    #artiste .artiste-name,
    .vg-intro-name {
        font-size: 2.45rem;
        line-height: 1;
        letter-spacing: 0;
    }

    #artiste .artiste-quote-text {
        font-size: 1.45rem;
        line-height: 1.5;
    }

    .sr-meta-title,
    .ao-title {
        font-size: 1.85rem;
        line-height: 1.12;
        letter-spacing: 0;
    }

    .service-title,
    .work-title,
    #work .work-title,
    .showcase-name,
    .vg-cap-title,
    .ag-message-title {
        font-size: 1rem;
        line-height: 1.35;
        letter-spacing: 0;
    }
}

@media (max-width: 420px) {
    .header {
        padding-inline: 1rem;
    }

    .logo,
    .footer-logo {
        font-size: 0.82rem;
        letter-spacing: 0.035em;
    }

    .menu-toggle {
        gap: 0.55rem;
    }

    .menu-text {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .section-label,
    #artiste .artiste-header-left .section-label,
    .ag-header .section-label,
    .vg-header .section-label {
        font-size: 0.62rem;
        letter-spacing: 0.09em;
    }

    .hero-title {
        font-size: 2.12rem;
        line-height: 1.02;
    }

    .hero-subtitle {
        font-size: 1.02rem;
        letter-spacing: 0.08em;
    }

    .section-title,
    #work .section-title,
    .vg-header-title,
    .cta-title,
    .ag-title,
    .sr-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    #artiste .artiste-name,
    .vg-intro-name {
        font-size: 2.1rem;
        line-height: 1.02;
    }

    .sr-meta-title,
    .ao-title {
        font-size: 1.6rem;
    }
}
