/* ============================================================
   NARAYANAN AKKITHAM — GALERIE AB
   Design system éditorial haut de gamme
   Inspiration : clicknland (rythme, espacements, révélation au scroll)
   Palette : ivoire chaud, encre profonde, terracotta/ocre indien
   ============================================================ */

:root {
    --ivory: #f5f1ea;
    --ivory-deep: #ece6db;
    --ink: #191714;
    --ink-soft: #3d3934;
    --ink-mute: #7a746b;
    --line: rgba(25, 23, 20, 0.14);
    --accent: #96421c;        /* terracotta profond (WCAG AA conforme > 4.5:1 sur ivoire) */
    --accent-deep: #783315;
    --gold: #8c6f37;
    --paper: #fffdf8;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--sans);
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--ivory); }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: clamp(24px, 5vw, 56px);
    padding-right: clamp(24px, 5vw, 56px);
    box-sizing: border-box;
}
.container--wide {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding-left: clamp(24px, 5vw, 56px);
    padding-right: clamp(24px, 5vw, 56px);
    box-sizing: border-box;
}

/* Responsive utility grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 50px); }
/* Empilement mobile : évite le débordement horizontal et le texte mot à mot */
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Typographie éditoriale ---------- */
.kicker {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}
h1.display {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3.2rem, 10vw, 8.2rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}
h2.section-title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.lede {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--ink-soft);
    max-width: 58ch;
    line-height: 1.75;
}
.body-text p + p { margin-top: 1em; }
.serif-italic { font-family: var(--serif); font-style: italic; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 90;
    padding: 22px 0;
    box-sizing: border-box;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
    background: rgba(245, 241, 234, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding: 14px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
}
.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
}
.brand-logo-img {
    height: 38px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    display: block;
    transition: transform .25s var(--ease), opacity .25s ease;
}
.brand:hover .brand-logo-img {
    transform: scale(1.02);
}
.brand-logo-img.logo-white { display: none; }
.brand-logo-img.logo-dark { display: block; }

.brand-subtitle-wrap {
    display: inline-flex;
    flex-direction: column;
    border-left: 1px solid var(--line);
    padding-left: 12px;
    line-height: 1.15;
}
.brand-subtitle {
    font-family: var(--serif);
    font-size: 13.5px;
    letter-spacing: 0.03em;
    color: var(--ink);
    font-weight: 400;
    display: block;
    transition: color .25s ease;
}
.brand-sub-kicker {
    font-family: var(--sans);
    font-size: 8.5px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 2px;
    display: block;
    transition: color .25s ease;
}
.main-nav { display: flex; gap: clamp(14px, 2.4vw, 34px); align-items: center; }
.main-nav a {
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 1px; width: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.lang-switch { display: flex; gap: 8px; font-size: 11px; letter-spacing: 0.1em; }
.lang-switch a.active { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* --- Navigation Dropdown (Artistes si plusieurs) --- */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 0;
    color: inherit;
    position: relative;
}
.nav-caret {
    font-size: 9px;
    transition: transform .3s var(--ease);
    display: inline-block;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown.open .nav-caret {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(25, 23, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 198, 116, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    padding: 10px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s var(--ease);
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
    display: block;
    padding: 9px 20px;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--ivory) !important;
    font-family: var(--sans);
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-dropdown-menu li a:hover {
    background: rgba(240, 198, 116, 0.12);
    color: #f0c674 !important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 90;
    padding: 18px 0;
    box-sizing: border-box;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(12, 10, 8, 0.90) 0%, rgba(12, 10, 8, 0.65) 60%, rgba(12, 10, 8, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--ivory);
}
.site-header.scrolled {
    background: rgba(253, 251, 247, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--line), 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    color: var(--ink);
}

/* Header sur fond hero non-scrollé (toujours logo blanc haute lisibilité avec losange rouge) */
.site-header:not(.scrolled) .brand-logo-img.logo-dark { display: none !important; }
.site-header:not(.scrolled) .brand-logo-img.logo-white { display: block !important; }
.site-header:not(.scrolled) .brand-subtitle-wrap { border-left-color: rgba(240, 198, 116, 0.35) !important; }
.site-header:not(.scrolled) .brand-subtitle { color: #ffffff !important; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
.site-header:not(.scrolled) .brand-sub-kicker { color: #f0c674 !important; }
.site-header:not(.scrolled) .burger span { background: #ffffff !important; box-shadow: 0 1px 4px rgba(0,0,0,0.8); }

@media (min-width: 901px) {
    .site-header:not(.scrolled) .main-nav a { color: var(--ivory) !important; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
    .site-header:not(.scrolled) .main-nav a::after { background: #f0c674; }
    .site-header:not(.scrolled) .lang-switch a { color: rgba(255, 255, 255, 0.75); }
    .site-header:not(.scrolled) .lang-switch a.active { color: #f0c674 !important; font-weight: 700; }
}

/* Header scrollé (sur fond de page clair) */
.site-header.scrolled .brand-logo-img.logo-dark { display: block !important; }
.site-header.scrolled .brand-logo-img.logo-white { display: none !important; }
.site-header.scrolled .brand-subtitle-wrap { border-left-color: var(--line) !important; }
.site-header.scrolled .brand-subtitle { color: var(--ink) !important; text-shadow: none; }
.site-header.scrolled .brand-sub-kicker { color: var(--ink-mute) !important; }
.site-header.scrolled .main-nav a { color: var(--ink) !important; text-shadow: none; }
.site-header.scrolled .main-nav a::after { background: var(--accent); }
.site-header.scrolled .lang-switch a { color: var(--ink-mute); }
.site-header.scrolled .lang-switch a.active { color: var(--accent) !important; }
.site-header.scrolled .burger span { background: var(--ink) !important; box-shadow: none; }

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
    z-index: 100;
    flex-shrink: 0;
}
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: all .3s var(--ease); }

@media (max-width: 900px) {
    body.nav-open {
        overflow: hidden !important;
    }
    body.nav-open .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #fcfbf9 !important;
        color: #191714 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 22px !important;
        font-size: 1.3rem !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1), visibility .35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 95 !important;
        padding: 70px 24px 40px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav a,
    .site-header:not(.scrolled) .main-nav a,
    .site-header.scrolled .main-nav a {
        color: #191714 !important;
        font-family: var(--serif) !important;
        font-size: clamp(1.45rem, 6vw, 2rem) !important;
        text-transform: none !important;
        letter-spacing: 0.02em !important;
        text-shadow: none !important;
        font-weight: 400 !important;
    }
    .main-nav a[aria-current="page"],
    .site-header:not(.scrolled) .main-nav a[aria-current="page"] {
        color: var(--accent) !important;
        font-style: italic;
    }
    .main-nav .lang-switch,
    .site-header:not(.scrolled) .main-nav .lang-switch {
        margin-top: 16px;
        font-size: 13px;
        gap: 20px;
        padding-top: 16px;
        border-top: 1px solid rgba(25, 23, 20, 0.12);
        width: 160px;
        justify-content: center;
    }
    .main-nav .lang-switch a,
    .site-header:not(.scrolled) .main-nav .lang-switch a {
        color: #555048 !important;
        font-family: var(--sans) !important;
        font-size: 13px !important;
        text-shadow: none !important;
        font-weight: 500 !important;
        letter-spacing: 0.08em !important;
    }
    .main-nav .lang-switch a.active,
    .site-header:not(.scrolled) .main-nav .lang-switch a.active {
        color: var(--accent) !important;
        font-weight: 700 !important;
        border-bottom: 2px solid var(--accent);
    }
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .nav-dropdown-trigger,
    .site-header:not(.scrolled) .nav-dropdown-trigger {
        font-family: var(--serif);
        font-size: clamp(1.45rem, 6vw, 2rem);
        text-transform: none;
        letter-spacing: 0.02em;
        color: #191714 !important;
        text-shadow: none !important;
        padding: 4px 0;
    }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 6px 0 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        min-width: auto;
    }
    .nav-dropdown-menu li a,
    .site-header:not(.scrolled) .nav-dropdown-menu li a {
        padding: 4px 10px;
        font-size: 1.15rem;
        color: #555048 !important;
        text-shadow: none !important;
        font-family: var(--serif);
    }
    .main-nav.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    .burger {
        display: block !important;
        z-index: 100 !important;
        position: relative !important;
    }
    body.nav-open .burger span {
        background: #191714 !important;
        box-shadow: none !important;
    }
    body.nav-open .burger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    body.nav-open .burger span:nth-child(2) {
        opacity: 0;
    }
    body.nav-open .burger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .brand-logo-img {
        height: 30px;
        max-width: 135px;
    }
    .brand-subtitle-wrap {
        display: none;
    }
}

/* ---------- Hero monumental (Mise en page spatiale magistrale) ---------- */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #1c1815;
    padding: 110px 0 85px;
    box-sizing: border-box;
    color: #ffffff;
}
.hero-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.hero-slide.active {
    opacity: 0.85;
    filter: brightness(1.08) contrast(1.02);
    animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Navigation du slider : traits élégants */
.hero-slider-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    z-index: 30;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px;
    pointer-events: auto;
}
.hero-nav-line {
    position: relative;
    width: 32px; height: 4px;
    background: rgba(245, 241, 234, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 2px;
    pointer-events: auto;
    z-index: 31;
    transition: background .3s var(--ease), width .35s var(--ease);
}
.hero-nav-line::before {
    content: '';
    position: absolute;
    inset: -12px -5px;
    cursor: pointer;
}
.hero-nav-line.active { background: #f0c674; width: 48px; }
.hero-nav-line:hover { background: rgba(245, 241, 234, 0.85); }
@media (max-width: 700px) {
    .hero-nav-line { width: 26px; height: 4px; }
    .hero-nav-line.active { width: 36px; }
}

/* Scrim de fond directionnel subtil : protège la lisibilité du texte tout en magnifiant les toiles et le portrait */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(14, 12, 10, 0.88) 0%, rgba(14, 12, 10, 0.40) 40%, rgba(14, 12, 10, 0.0) 70%),
        linear-gradient(to right, rgba(14, 12, 10, 0.80) 0%, rgba(14, 12, 10, 0.45) 45%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(1240px, 92vw);
    margin: 0 auto;
    pointer-events: none;
}
.hero-content > * {
    pointer-events: auto;
}
.hero-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 620px;
    margin-left: 0;
    padding-left: 0;
}

.hero-kicker-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 2vh;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
    animation: luxuryHeroFadeIn 2.2s cubic-bezier(0.19, 1, 0.22, 1) 0.15s both;
}
.hero .kicker {
    color: #f0c674;
    font-weight: 600;
    letter-spacing: 0.28em;
    font-size: 11px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}
.hero-kicker-row .rule {
    height: 1px;
    width: clamp(35px, 5vw, 80px);
    background: linear-gradient(90deg, #f0c674 0%, rgba(240, 198, 116, 0.3) 100%);
    opacity: 0.85;
    transform-origin: left center;
    animation: ruleExpand 2.4s cubic-bezier(0.19, 1, 0.22, 1) 0.35s both;
}
@keyframes ruleExpand {
    0% { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(1); opacity: 0.85; }
}
.hero-mini {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.hero h1.hero-title,
.hero h1.display,
.page-hero h1.display {
    position: relative;
    display: inline-block;
    margin-bottom: 1.8vh;
    color: #ffffff;
    font-family: var(--serif);
    font-size: clamp(3.2rem, 5.8vw, 5.8rem);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.90);
    animation: luxuryTitleReveal 2.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both;
}

.hero-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    color: rgba(245, 241, 234, 0.92);
    line-height: 1.35;
    margin-bottom: 3.2vh;
    max-width: 44ch;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
    animation: luxuryHeroFadeIn 2.4s cubic-bezier(0.19, 1, 0.22, 1) 0.45s both;
}

.hero-meta-bar {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 14px 22px;
    background: rgba(14, 12, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(240, 198, 116, 0.32);
    border-left: 3px solid var(--gold);
    border-radius: 2px;
    margin-bottom: 3.2vh;
    max-width: 580px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.40);
    animation: luxuryHeroFadeIn 2.4s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both;
}
.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-meta-label {
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.hero-meta-val {
    font-family: var(--sans);
    font-size: 13.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
}
.hero-meta-divider {
    width: 1px;
    background: rgba(240, 198, 116, 0.25);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: luxuryHeroFadeIn 2.4s cubic-bezier(0.19, 1, 0.22, 1) 0.75s both;
}
.hero-btn {
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 0.14em;
}
.hero-btn-sub {
    padding: 14px 24px;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--ivory);
    border-color: rgba(255, 255, 255, 0.4);
}
.hero-btn-sub:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-scroll-hint {
    position: absolute;
    right: 4vw; bottom: 5vh;
    z-index: 4;
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* --- Incrustation Découpée Portrait Artiste sur le Slider Hero --- */
.hero-artist-cutout-wrap {
    position: absolute;
    right: clamp(16px, 6vw, 100px);
    bottom: 0;
    height: 86vh;
    max-height: 880px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}
.hero-artist-cutout {
    height: 100%;
    width: auto;
    max-width: clamp(280px, 42vw, 620px);
    object-fit: contain;
    object-position: bottom right;
    display: block;
    animation: heroArtistReveal 2.4s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both;
}
@keyframes heroArtistReveal {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .hero {
        padding: 95px 0 75px;
    }
    .hero-body {
        max-width: 56%;
    }
    .hero h1.hero-title,
    .hero h1.display {
        font-size: clamp(2.8rem, 5.2vw, 4.4rem);
    }
    .hero-artist-cutout-wrap {
        right: 12px;
        height: 75vh;
        max-height: 720px;
    }
    .hero-artist-cutout {
        max-width: 44vw;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding: clamp(110px, 15vh, 135px) 0 clamp(40px, 6vh, 55px);
        display: flex;
        align-items: center;
        position: relative;
    }
    .hero-content {
        width: min(1240px, 92vw);
        margin: 0 auto;
        padding-top: clamp(12px, 3vh, 28px);
    }
    .hero-body {
        max-width: 60%;
    }
    .hero-kicker-row {
        gap: 8px;
        margin-bottom: 1vh;
    }
    .hero-kicker-row .rule {
        width: 24px;
    }
    .hero .kicker {
        font-size: 8.5px;
        letter-spacing: 0.18em;
    }
    .hero-mini {
        font-size: 8.5px;
    }
    .hero h1.hero-title,
    .hero h1.display {
        font-size: clamp(1.95rem, 7.5vw, 2.75rem);
        line-height: 0.98;
        margin-bottom: 1vh;
    }
    .hero-tagline {
        font-size: 11.5px;
        margin-bottom: 1.5vh;
        max-width: 24ch;
        line-height: 1.3;
    }
    .hero-meta-bar {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-left: 2px solid var(--gold);
        padding: 2px 0 2px 8px;
        margin-bottom: 1.8vh;
        max-width: 100%;
        box-shadow: none;
        flex-direction: column;
        gap: 6px;
    }
    .hero-meta-label {
        font-size: 8px;
        letter-spacing: 0.16em;
    }
    .hero-meta-val {
        font-size: 10.5px;
        letter-spacing: 0.04em;
        line-height: 1.25;
    }
    .hero-meta-divider {
        display: none;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 6px;
        max-width: 100%;
    }
    .hero-btn {
        width: auto;
        max-width: 100%;
        display: inline-flex;
        padding: 9px 12px;
        font-size: 10px;
        letter-spacing: 0.08em;
        justify-content: center;
    }
    .hero-btn-sub {
        display: none;
    }
    .hero-artist-cutout-wrap {
        position: absolute;
        right: 0;
        bottom: 35px;
        height: 60vh;
        max-height: 520px;
        z-index: 2;
        opacity: 1;
        pointer-events: none;
        justify-content: flex-end;
    }
    .hero-artist-cutout {
        height: 100%;
        width: auto;
        max-width: 48vw;
        object-fit: contain;
        object-position: bottom right;
        display: block;
    }
    .has-ticker .hero-artist-cutout-wrap {
        bottom: 38px;
    }
}

/* Animations cinématiques & Reflets mystérieux adoucis */
@keyframes luxuryTitleReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(12px) scale(0.992);
        letter-spacing: 0.012em;
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
        letter-spacing: inherit;
    }
}
@keyframes luxuryHeroFadeIn {
    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}
@keyframes goldLusterSheen {
    0%, 20% {
        background-position: 180% 0;
    }
    45%, 100% {
        background-position: -80% 0;
    }
}

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 12vh, 150px) 0; }

/* ---------- Hero de page intérieure (image de fond + parallaxe, configurable admin) ---------- */
.page-hero {
    position: relative;
    color: #ffffff;
    padding: clamp(116px, 15vh, 150px) 0 clamp(24px, 3.5vh, 40px);
    background-color: #0f0d0b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;   /* parallaxe (desktop) */
    overflow: hidden;
}
.page-hero::before {   /* scrim adouci : l'image respire, le texte reste lisible */
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(15, 13, 11, 0.42) 0%, rgba(15, 13, 11, 0.60) 100%),
                linear-gradient(to bottom, rgba(15, 13, 11, 0.50) 0%, rgba(15, 13, 11, 0.34) 50%, rgba(15, 13, 11, 0.62) 100%);
    z-index: 1;
    pointer-events: none;
}
/* Aura mystérieuse en arrière-plan (Clair-obscur vivant & discret) */
.hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    inset: -15%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        ellipse 65% 55% at 52% 42%,
        rgba(240, 198, 116, 0.14) 0%,
        rgba(150, 66, 28, 0.08) 38%,
        rgba(15, 13, 11, 0) 75%
    );
    mix-blend-mode: screen;
    animation: mysticAuraDrift 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
    opacity: 0.85;
}
@keyframes mysticAuraDrift {
    0% {
        transform: translate3d(-3%, -2%, 0) scale(0.96);
        opacity: 0.55;
    }
    50% {
        transform: translate3d(4%, 3%, 0) scale(1.08);
        opacity: 0.90;
    }
    100% {
        transform: translate3d(-2%, 4%, 0) scale(1.01);
        opacity: 0.65;
    }
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .kicker {
    color: #f0c674;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
    margin-bottom: 3px;
    animation: luxuryHeroFadeIn 2.2s cubic-bezier(0.19, 1, 0.22, 1) 0.15s both;
}
.page-hero h1.display {
    margin: 4px 0 8px;
    font-size: clamp(2.2rem, 5.2vw, 4.2rem);
    line-height: 1.05;
}
.page-hero .lede {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
    max-width: 58ch;
    line-height: 1.5;
    font-size: clamp(0.95rem, 1.25vw, 1.15rem);
    margin-top: 6px;
    animation: luxuryHeroFadeIn 2.4s cubic-bezier(0.19, 1, 0.22, 1) 0.65s both;
}
.page-hero .expert-role {
    color: #f0c674;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
    margin-top: 4px;
    animation: luxuryHeroFadeIn 2.4s cubic-bezier(0.19, 1, 0.22, 1) 0.65s both;
}
/* Parallaxe désactivée sur mobile/tactile (background-attachment:fixed non supporté) */
@media (max-width: 800px), (hover: none) {
    .page-hero {
        background-attachment: scroll;
        background-position: center 30%;
        padding: 112px 0 22px;
    }
    .page-hero h1.display {
        font-size: clamp(1.9rem, 6.5vw, 3rem);
        margin: 3px 0 6px;
    }
    .page-hero .kicker {
        font-size: 10px;
        margin-bottom: 2px;
    }
    .page-hero .lede {
        font-size: 0.92rem;
        margin-top: 4px;
        line-height: 1.45;
    }
}
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 320px) 1fr;
    gap: clamp(24px, 5vw, 80px);
    align-items: start;
    margin-bottom: clamp(40px, 7vh, 90px);
}
@media (max-width: 900px) {
    .section-head { grid-template-columns: 1fr; }
}

/* ---------- Grille œuvres éditoriale (pas de grille banale) ---------- */
.works-flow {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(18px, 3vw, 44px) clamp(14px, 2.4vw, 36px);
}
.work-card { cursor: pointer; position: relative; }
.work-card:nth-child(6n+1) { grid-column: 1 / span 7; }
.work-card:nth-child(6n+2) { grid-column: 9 / span 4; margin-top: clamp(60px, 10vw, 140px); }
.work-card:nth-child(6n+3) { grid-column: 2 / span 5; margin-top: clamp(-30px, -3vw, -60px); }
.work-card:nth-child(6n+4) { grid-column: 8 / span 5; margin-top: clamp(50px, 8vw, 110px); }
.work-card:nth-child(6n+5) { grid-column: 1 / span 5; }
.work-card:nth-child(6n)   { grid-column: 7 / span 6; margin-top: clamp(40px, 7vw, 100px); }
@media (max-width: 900px) {
    .works-flow {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }
    .works-flow > * {
        grid-column: auto !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}
.work-frame {
    position: relative;
    background: #ede6d8;
    background-image: linear-gradient(
        120deg,
        #ede6d8 0%,
        #f7f4ed 20%,
        rgba(240, 198, 116, 0.35) 45%,
        rgba(255, 255, 255, 0.90) 50%,
        rgba(240, 198, 116, 0.35) 55%,
        #f7f4ed 80%,
        #ede6d8 100%
    );
    background-size: 280% 100%;
    animation: galleryLinenShimmer 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    border: 1px solid rgba(140, 111, 55, 0.16);
    border-radius: 2px;
    box-shadow: 0 18px 48px -20px rgba(25, 23, 20, 0.22);
    overflow: hidden;
    display: block;
    min-height: 180px;
}
.work-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 32px;
    height: 32px;
    border: 1px solid rgba(140, 111, 55, 0.35);
    background: radial-gradient(circle, rgba(139, 58, 43, 0.08) 0%, transparent 70%);
    box-shadow: 0 0 16px rgba(240, 198, 116, 0.20);
    pointer-events: none;
    z-index: 1;
    animation: emblemBreathe 2.4s ease-in-out infinite alternate;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.work-frame::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(139, 58, 43, 0.20);
    border: 1px solid rgba(240, 198, 116, 0.45);
    pointer-events: none;
    z-index: 1;
    animation: emblemInnerPulse 2.4s ease-in-out infinite alternate;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.work-frame.is-loaded {
    background: var(--paper);
    background-image: none;
    animation: none;
    min-height: auto;
}
.work-frame.is-loaded::before,
.work-frame.is-loaded::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0.4);
    pointer-events: none;
}
@keyframes galleryLinenShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -80% 0; }
}
@keyframes emblemBreathe {
    0% { transform: translate(-50%, -50%) rotate(45deg) scale(0.92); opacity: 0.55; }
    100% { transform: translate(-50%, -50%) rotate(45deg) scale(1.1); opacity: 0.95; }
}
@keyframes emblemInnerPulse {
    0% { transform: translate(-50%, -50%) rotate(45deg) scale(0.85); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) rotate(45deg) scale(1.15); opacity: 1; }
}

.work-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    color: transparent;
    filter: blur(10px);
    transform: scale(1.03);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    will-change: opacity, filter, transform;
}
.work-frame img.is-loaded {
    opacity: 1;
    color: inherit;
    filter: blur(0);
    transform: scale(1.001);
}
.work-card:hover .work-frame img.is-loaded {
    transform: scale(1.045);
}
.work-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    margin-top: 14px;
}
.work-title {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 500;
}
.work-sub {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    white-space: nowrap;
}
/* Les légendes sous image (figcaption) doivent pouvoir passer à la ligne sur mobile */
figcaption.work-sub {
    white-space: normal;
    line-height: 1.55;
}
.work-num {
    position: absolute;
    top: 14px; left: 16px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    color: rgba(245, 241, 234, 0.85);
    background: rgba(25, 23, 20, 0.42);
    padding: 3px 9px;
    backdrop-filter: blur(4px);
}

/* ---------- Visionneuse plein écran ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 13, 11, 0.96);
    display: none;
}
.lightbox.open { display: grid; grid-template-rows: auto 1fr auto; color: var(--ivory); }
.lb-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px clamp(18px, 3vw, 40px);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.7);
}
.lb-close {
    background: none; border: 1px solid rgba(245, 241, 234, 0.3);
    color: var(--ivory); cursor: pointer;
    padding: 9px 16px; font-size: 11px; letter-spacing: 0.2em;
    transition: all .25s ease;
}
.lb-close:hover { background: var(--ivory); color: var(--ink); }
.lb-stage {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 0 clamp(14px, 3vw, 48px);
    touch-action: pan-y;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}
.lb-stage img {
    max-width: 100%;
    max-height: calc(100svh - 190px);
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transform-origin: 0 0;
    will-change: transform;
    transition: transform .35s var(--ease);
    backface-visibility: hidden;
}
.lb-stage img.dragging { transition: none; cursor: grabbing; }
.lb-stage.zoomed { cursor: zoom-out; }
.lb-stage.grabbing { cursor: grabbing; }
.lb-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px clamp(18px, 3vw, 40px) 26px;
}
.lb-title { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.lb-facts { font-size: 12.5px; color: rgba(245, 241, 234, 0.72); letter-spacing: 0.06em; }
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(245, 241, 234, 0.25);
    color: var(--ivory);
    font-size: 22px;
    width: 54px; height: 54px;
    cursor: pointer;
    transition: all .25s ease;
    display: grid; place-items: center;
}
.lb-arrow:hover { background: var(--ivory); color: var(--ink); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* --- Zoom des images individuelles (hors grille) --- */
img.zoomable { cursor: zoom-in; }
img.zoomable:hover { opacity: 0.96; }

/* --- Contrôles de zoom --- */
.lb-zoom {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 13, 11, 0.7);
    border: 1px solid rgba(245, 241, 234, 0.25);
    padding: 6px;
    backdrop-filter: blur(4px);
    z-index: 3;
}
.lb-zoom button {
    width: 34px; height: 34px;
    border: none;
    background: none;
    color: var(--ivory);
    font-size: 18px;
    cursor: pointer;
    transition: background .2s;
    display: grid; place-items: center;
    line-height: 1;
}
.lb-zoom button:hover { background: rgba(245, 241, 234, 0.15); }
.lb-zoom .lb-zoom-val {
    min-width: 44px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(245, 241, 234, 0.75);
    font-variant-numeric: tabular-nums;
}

/* ---------- Section artiste éditoriale ---------- */
.artist-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 80px);
    align-items: start;
    position: relative;
}
.ae-text { min-width: 0; }
.ae-figure-sticky,
.ae-figure {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    align-self: start;
    will-change: transform;
    margin: 0;
}
.ae-quote {
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.3;
    color: var(--ink);
    padding: clamp(30px, 5vh, 60px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
    .artist-editorial {
        display: flex;
        flex-direction: column;
        gap: 34px;
    }
    .artist-editorial > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .ae-figure-sticky,
    .ae-figure {
        position: static !important;
        width: 100% !important;
        margin: 10px 0;
    }
    .ae-quote {
        width: 100% !important;
        padding: 24px 0 !important;
        font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
    }
}

.timeline { list-style: none; }
.timeline li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
}
.timeline time { font-family: var(--serif); font-size: 1.25rem; color: var(--accent); }
@media (max-width: 580px) {
    .timeline li { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; }
}

.partner-link {
    transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.partner-link:hover {
    color: var(--accent) !important;
}
.partner-link span:last-child {
    transition: transform 0.25s var(--ease);
    display: inline-block;
}
.partner-link:hover span:last-child {
    transform: translate(3px, -3px);
}

/* ---------- Bandeau expo ---------- */
.expo-banner {
    background: var(--ink);
    color: var(--ivory);
    padding: clamp(70px, 12vh, 130px) 0;
}
.expo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 5vw, 90px);
    align-items: start;
}
@media (max-width: 900px) {
    .expo-grid { display: flex; flex-direction: column; gap: 36px; }
}
.expo-facts {
    list-style: none;
    border-top: 1px solid rgba(245, 241, 234, 0.2);
}
.expo-facts li {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(245, 241, 234, 0.14);
    font-size: 14.5px;
}
.expo-facts dt { color: rgba(245, 241, 234, 0.55); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; align-self: center; }
@media (max-width: 580px) {
    .expo-facts li { grid-template-columns: 1fr !important; gap: 4px !important; }
}
.vernissage-callout {
    border: 1px solid var(--gold);
    padding: clamp(22px, 3vw, 38px);
    margin-bottom: 34px;
    position: relative;
}
.vernissage-callout::before {
    content: 'Vernissage';
    position: absolute;
    top: -10px; left: 22px;
    background: var(--ink);
    padding: 0 12px;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---------- Carte experte / Agnès ---------- */
.expert-section { background: var(--ivory-deep); }
.expert-card {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    gap: clamp(28px, 4.5vw, 74px);
    align-items: start;
}
@media (max-width: 820px) { .expert-card { grid-template-columns: 1fr; } }
.expert-name { font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; }
.expert-role { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-top: 8px; }
.credentials { list-style: none; margin-top: 18px; font-size: 13px; color: var(--ink-soft); }
.credentials li { padding: 9px 0; border-bottom: 1px solid var(--line); display: flex; gap: 10px; }
.credentials li::before { content: '—'; color: var(--gold); }

/* ---------- CTA & boutons ---------- */
.btn-solid, .btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 500;
    padding: 16px 30px;
    border: 1px solid var(--ink);
    line-height: 1.25;
    transition: all .3s var(--ease);
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
}
.btn-solid {
    background: var(--ink);
    color: var(--ivory);
}
.btn-solid:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.btn-line {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-line:hover {
    background: var(--ink);
    color: var(--ivory);
}
/* Lien « Fiche détaillée » dans la visionneuse plein écran (fond sombre) :
   .btn-line force color: var(--ink) → texte invisible sur le fond sombre */
.lightbox .btn-line {
    color: var(--ivory);
}
.lightbox .btn-line:hover {
    background: var(--ivory);
    color: var(--ink);
}

.cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 600px) {
    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .cta-group .btn-solid,
    .cta-group .btn-line {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        margin: 0 !important;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(245, 241, 234, 0.78);
    padding: clamp(60px, 9vh, 110px) 0 40px;
    font-size: 13.5px;
    position: relative;
    overflow: hidden;
}

/* --- CTA experte : lien voyant vers la page Agnès Aittouares ---
   Pas de bordures pleine largeur : le bandeau s'intègre comme le reste du footer,
   aligné sur le même conteneur que les autres sections. */
.footer-cta {
    margin-top: clamp(44px, 7vh, 76px);
    padding-top: clamp(24px, 4vh, 40px);
    padding-bottom: clamp(24px, 4vh, 40px);
    /* padding-left/right hérités du .container : alignement parfait avec le reste */
}
.footer-cta a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    text-decoration: none;
}
.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    flex-shrink: 0;
}
.footer-cta .kicker {
    color: var(--gold);
    font-size: 10.5px;
}
.footer-cta-name {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.5rem, 3.4vw, 2.4rem);
    line-height: 1.1;
    color: #fff;
    letter-spacing: 0.01em;
    transition: color .3s ease;
    white-space: nowrap;
}
/* Ligne fine qui relie le nom à la flèche : comble l'espace avec élégance */
.footer-cta-line {
    flex: 1 1 auto;
    height: 1px;
    margin: 0 clamp(18px, 3.5vw, 46px);
    background: linear-gradient(to right, rgba(245, 241, 234, 0.28), rgba(245, 241, 234, 0.05));
}
/* Flèche longue & délicate, sans cercle — luxe éditorial */
.footer-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 241, 234, 0.85);
    flex-shrink: 0;
    transition: color .3s ease, transform .35s var(--ease);
}
.footer-cta a:hover .footer-cta-name { color: var(--gold); }
.footer-cta a:hover .footer-cta-arrow {
    color: var(--gold);
    transform: translateX(6px);
}
@media (max-width: 600px) {
    .footer-cta { padding-top: 22px; padding-bottom: 22px; }
    .footer-cta-name { white-space: normal; }
    .footer-cta-line { margin: 0 14px; }
}
/* Shimmer / Flash subtil qui traverse le footer de gauche à droite puis de droite à gauche */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(240, 198, 116, 0.02) 25%,
        rgba(245, 241, 234, 0.07) 50%,
        rgba(240, 198, 116, 0.02) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg) translateX(-220%);
    pointer-events: none;
    z-index: 1;
    animation: footerSweep 16s ease-in-out infinite;
}
.site-footer .container {
    position: relative;
    z-index: 2;
}

@keyframes footerSweep {
    0% {
        transform: skewX(-25deg) translateX(-220%);
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    14% {
        transform: skewX(-25deg) translateX(320%);
        opacity: 1;
    }
    15% {
        opacity: 0;
        transform: skewX(-25deg) translateX(320%);
    }
    /* Pause à droite */
    48% {
        transform: skewX(25deg) translateX(320%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    62% {
        transform: skewX(25deg) translateX(-220%);
        opacity: 1;
    }
    63% {
        opacity: 0;
        transform: skewX(25deg) translateX(-220%);
    }
    /* Pause à gauche */
    100% {
        transform: skewX(-25deg) translateX(-220%);
        opacity: 0;
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(245, 241, 234, 0.14);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.5);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-grid a:hover { color: var(--ivory); }
.footer-brand {
    display: block;
    margin-bottom: 12px;
}
.footer-logo {
    height: 42px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 26px;
    font-size: 11.5px;
    color: rgba(245, 241, 234, 0.42);
    flex-wrap: wrap;
}

/* --- Références Locales, Annuaires d'Art & Presse --- */
.footer-partners {
    padding-top: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(245, 241, 234, 0.12);
}
.footer-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.footer-partner-col h5 {
    font-size: 9.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px 0;
    font-weight: 600;
}
.footer-partner-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer-partner-links a {
    font-size: 11.5px;
    color: rgba(245, 241, 234, 0.62);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s ease, transform .2s ease;
}
.footer-partner-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}
.footer-partner-links a span.ext {
    font-size: 9px;
    opacity: 0.6;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE AMÉLIORÉ — TABLETTES & MOBILE
   ============================================================ */

/* --- Hero mobile --- */
@media (max-width: 700px) {
    .hero-content { padding-bottom: 6vh; }
    /* Ligne kicker sur UNE ligne dès 320px : nowrap + tailles resserrées */
    .hero-kicker-row { gap: 8px; margin-bottom: 2vh; white-space: nowrap; }
    .hero-kicker-row .kicker { font-size: 10.5px; letter-spacing: 0.14em; white-space: nowrap; }
    .hero-kicker-row .rule { width: 14px; flex-shrink: 0; }
    .hero-kicker-row .hero-mini { font-size: 10px; letter-spacing: 0.12em; white-space: nowrap; }
    .hero-dates { gap: 8px 18px; font-size: 0.8rem; }
    .hero-scroll-hint { display: none; }
}

/* --- Sections mobile --- */
@media (max-width: 600px) {
    .section { padding: clamp(48px, 8vh, 90px) 0; }
    .section-head { gap: 16px; margin-bottom: clamp(28px, 5vh, 50px); }
}

/* --- Contact form responsive --- */
@media (max-width: 600px) {
    .contact-row-2 { grid-template-columns: 1fr !important; }
}

/* --- Timeline & Expo facts mobile --- */
@media (max-width: 600px) {
    .timeline li {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
        font-size: 13.5px;
    }
    .timeline time { font-size: 1.1rem; }
    .expo-facts li {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
        font-size: 13.5px;
    }
}

/* --- Citation mobile --- */
@media (max-width: 700px) {
    .ae-quote {
        width: 100% !important;
        font-size: clamp(1.15rem, 4vw, 1.5rem);
        padding: clamp(20px, 4vh, 36px) 0;
    }
}

/* --- Lightbox mobile --- */
@media (max-width: 700px) {
    .lb-arrow { width: 40px; height: 40px; font-size: 18px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-infos { padding: 14px 16px 20px; gap: 6px 20px; }
    .lb-title { font-size: 1.15rem; }
    .lb-facts { font-size: 11px; }
    .lb-close { padding: 7px 12px; font-size: 10px; }
}

/* --- Expert card mobile --- */
@media (max-width: 600px) {
    .expert-name { font-size: 1.6rem; }
    .credentials { font-size: 12px; }
}

/* --- Vernissage callout mobile --- */
@media (max-width: 600px) {
    .vernissage-callout { padding: 18px 16px; }
    .vernissage-callout strong { font-size: 1.1rem !important; }
}

/* --- Footer mobile --- */
@media (max-width: 768px) {
    .site-footer { padding: 48px 0 36px; }
    .footer-partners-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { font-size: 1.4rem; }
    .footer-partners { padding-top: 28px; padding-bottom: 22px; }
    .footer-bottom { flex-direction: column; gap: 10px; padding-top: 20px; }
}


/* --- Fil d'ariane / Breadcrumbs --- */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding-top: 92px;
    padding-bottom: 8px;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.breadcrumbs a {
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}
.breadcrumbs a:hover {
    color: var(--accent);
}
.breadcrumbs .bc-sep {
    margin: 0 4px;
    opacity: 0.5;
}
.breadcrumbs [aria-current="page"] {
    color: var(--ink);
    font-weight: 600;
}

/* Breadcrumbs when sitting above .page-hero */
body.has-page-hero .breadcrumbs {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    z-index: 20;
    font-size: 11px;
}
body.has-page-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}
body.has-page-hero .breadcrumbs a:hover {
    color: #f0c674;
}
body.has-page-hero .breadcrumbs .bc-sep {
    color: rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}
body.has-page-hero .breadcrumbs [aria-current="page"] {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95);
    font-weight: 600;
}
@media (max-width: 800px) {
    body.has-page-hero .breadcrumbs { top: 78px; }
}

/* --- Oeuvre meta grid responsive --- */
.oeuvre-page {
    padding: clamp(110px, 15vh, 150px) 0 clamp(48px, 7vh, 60px);
}
@media (max-width: 760px) {
    .oeuvre-page { padding: 40px 0 48px; }
}
.oeuvre-meta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 80px);
    align-items: start;
}
@media (max-width: 760px) {
    .oeuvre-meta-grid { grid-template-columns: 1fr; }
}

/* --- Navigation & Actions fiche œuvre pleine largeur --- */
.oeuvre-actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.oeuvre-nav-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.oeuvre-nav-row.single {
    grid-template-columns: 1fr;
}
.oeuvre-actions .btn-line,
.oeuvre-actions .btn-solid {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 18px;
    box-sizing: border-box;
}
@media (max-width: 480px) {
    .oeuvre-nav-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* --- Contact form row responsive --- */
.contact-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .contact-row-2 { grid-template-columns: 1fr !important; gap: 12px !important; }
}

/* --- Focus visible & Accessibilité --- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 999;
    background: var(--accent);
    color: var(--ivory);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: top .25s var(--ease);
}
.skip-link:focus { top: 20px; }

/* Labels visuellement masqués mais conservés pour les lecteurs d'écran (formulaire compact) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Bandeau info bas de page (ticker — accueil uniquement) ----------
   Style inspiré du bandeau « // NOW AT THE GALLERY // » (galerie Pascal Cuisinier)
   Encre profonde + séparateurs terracotta + annonce forte en or. */
.home-ticker {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    display: block;
    overflow: hidden;
    background: var(--ink);
    border-top: 1px solid rgba(179, 89, 46, 0.6);
    color: rgba(245, 241, 234, 0.92);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    padding: 15px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}
.home-ticker-track {
    display: inline-flex;
    align-items: center;
    animation: homeTicker 38s linear infinite;
    will-change: transform;
}
.home-ticker:hover .home-ticker-track { animation-play-state: paused; }
.home-ticker:focus-visible { outline-offset: -3px; }
.home-ticker-group { display: inline-flex; align-items: center; white-space: nowrap; }
.ticker-sep { color: var(--accent); margin: 0 1.2em; }
.home-ticker strong { font-weight: 800; color: var(--gold); }

@keyframes homeTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Réduction de mouvement : texte statique, une seule copie */
@media (prefers-reduced-motion: reduce) {
    .home-ticker-track { animation: none; }
    .home-ticker-group:nth-child(2) { display: none; }
}

/* Le bandeau fixe ne masque ni le bas du footer ni la nav du slider hero */
.has-ticker .site-footer { padding-bottom: 96px; }
.has-ticker .hero-slider-nav { bottom: calc(22px + 46px); }
.has-ticker .hero-scroll-hint { bottom: calc(5vh + 46px); }
/* Le contenu du hero remonte : la nav garde un espace libre (aucun chevauchement texte/traits) */
.has-ticker .hero-content { padding-bottom: calc(9vh + 64px); }

@media (max-width: 900px) {
    .home-ticker { font-size: 11px; letter-spacing: 0.15em; padding: 11px 0; }
    .ticker-sep { margin: 0 0.9em; }
    .has-ticker .site-footer { padding-bottom: 84px; }
}

@media (max-width: 700px) {
    .has-ticker .hero-content { padding-bottom: calc(6vh + 64px); }
    .has-ticker .hero-slider-nav { bottom: calc(22px + 30px); }
}

/* ---------- Flèche retour en haut (discrète & intelligente) ---------- */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 80;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(245, 241, 234, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--ink);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(25, 23, 20, 0.12);
    transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.to-top:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--ivory);
}
/* Sur l'accueil : au-dessus du bandeau ticker, jamais dessous */
body.has-ticker .to-top { bottom: 70px; }
@media (max-width: 700px) {
    .to-top { right: 14px; bottom: 20px; width: 38px; height: 38px; }
    body.has-ticker .to-top { bottom: 56px; }
}
@media (prefers-reduced-motion: reduce) {
    .to-top { transition: none; }
}

/* ============================================================
   CAPTCHA SLIDE HUMAIN HAUT DE GAMME
   ============================================================ */
.slide-captcha-container {
    user-select: none;
    -webkit-user-select: none;
    margin: 22px 0 16px 0;
    max-width: 100%;
}
.slide-captcha-track {
    position: relative;
    height: 52px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 6px rgba(25, 23, 20, 0.05);
    cursor: pointer;
    touch-action: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.slide-captcha-track:hover {
    border-color: rgba(25, 23, 20, 0.28);
}
.slide-captcha-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(140, 111, 55, 0.16) 0%, rgba(140, 111, 55, 0.34) 100%);
    border-radius: 26px 0 0 26px;
    pointer-events: none;
}
.slide-captcha-track.verified .slide-captcha-fill {
    background: linear-gradient(90deg, #2e7d32 0%, #388e3c 100%);
    border-radius: 26px;
    width: 100% !important;
}
.slide-captcha-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.03em;
    pointer-events: none;
    padding: 0 54px;
    text-align: center;
    z-index: 2;
    transition: color .3s ease;
}
.slide-text-shimmer {
    background: linear-gradient(90deg, var(--ink-mute) 0%, var(--ink) 45%, var(--ink-mute) 90%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s infinite linear;
}
@keyframes textShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.slide-captcha-track.verified .slide-captcha-label {
    color: #ffffff;
    font-weight: 600;
}
.slide-captcha-track.verified .slide-text-shimmer {
    background: none;
    -webkit-text-fill-color: #ffffff;
    animation: none;
}
.slide-captcha-knob {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: grab;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(25, 23, 20, 0.28);
    transition: transform 0.15s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    touch-action: none;
}
.slide-captcha-knob:active,
.slide-captcha-track.dragging .slide-captcha-knob {
    cursor: grabbing;
    transform: scale(1.06);
}
.slide-captcha-track.verified .slide-captcha-knob {
    background: #2e7d32;
    color: #ffffff;
    cursor: default;
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.38);
}
.slide-captcha-knob .knob-icon {
    transition: transform 0.3s ease;
    display: inline-block;
    font-weight: 700;
}
.slide-captcha-track.verified .knob-icon {
    transform: scale(1.15);
}

/* Animation de secousse si tentative de soumission sans validation */
@keyframes captchaShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

/* ============================================================
   FORMULAIRE DE CONTACT HAUTE JOAILLERIE & BOUTON PLEINE LARGEUR
   ============================================================ */

/* Carte récapitulative de l'œuvre sélectionnée */
.contact-artwork-card {
    background: var(--paper);
    border: 1px solid rgba(240, 198, 116, 0.45);
    border-left: 3px solid var(--accent);
    padding: 14px 18px;
    margin-bottom: 22px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(25, 23, 20, 0.04);
}
.cac-thumb-link {
    flex-shrink: 0;
    display: block;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.25s var(--ease);
}
.cac-thumb-link:hover {
    transform: scale(1.05);
}
.cac-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    display: block;
}
.cac-info {
    flex: 1;
    min-width: 160px;
}
.cac-kicker {
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9c6c1d;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
.cac-title {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}
.cac-meta {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-mute);
    display: block;
    margin-top: 3px;
}
.cac-btn {
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
}

/* Bouton envoyer pleine largeur et design prestige */
.contact-submit-wrap {
    margin-top: 24px;
    width: 100%;
}
.contact-submit-btn,
#contactSubmitBtn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    padding: 17px 32px !important;
    background: #191714 !important;
    color: #ffffff !important;
    border: 1px solid #191714 !important;
    border-radius: 2px !important;
    font-family: var(--sans) !important;
    font-size: 13px !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    cursor: not-allowed !important;
    opacity: 0.60;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.contact-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 198, 116, 0.14) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.contact-submit-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
    font-size: 16px;
    line-height: 1;
}
.contact-submit-btn.unlocked,
#contactSubmitBtn.unlocked {
    opacity: 1 !important;
    cursor: pointer !important;
    background: #191714 !important;
    border-color: rgba(240, 198, 116, 0.55) !important;
    box-shadow: 0 6px 24px rgba(25, 23, 20, 0.18), 0 0 0 1px rgba(240, 198, 116, 0.20) !important;
}
.contact-submit-btn.unlocked::before {
    opacity: 1;
}
.contact-submit-btn.unlocked:hover,
#contactSubmitBtn.unlocked:hover {
    background: var(--accent) !important;
    border-color: var(--gold) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(139, 58, 43, 0.35), 0 0 0 1px rgba(240, 198, 116, 0.35) !important;
}
.contact-submit-btn.unlocked:hover .btn-arrow,
#contactSubmitBtn.unlocked:hover .btn-arrow {
    transform: translateX(6px);
}
.contact-submit-btn:active,
#contactSubmitBtn:active {
    transform: translateY(0) !important;
}

.contact-disclaimer {
    margin-top: 12px;
    text-align: center;
    font-size: 11.5px;
    color: var(--ink-mute);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .contact-artwork-card {
        padding: 12px 14px;
        gap: 12px;
        flex-wrap: wrap;
    }
    .cac-thumb {
        width: 48px;
        height: 48px;
    }
    .cac-info {
        flex: 1 1 calc(100% - 66px);
        min-width: 0;
    }
    .cac-title {
        font-size: 15px;
    }
    .cac-meta {
        font-size: 11.5px;
    }
    .cac-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 8px 12px;
        font-size: 11px;
        margin-top: 4px;
        border: 1px solid var(--line);
        background: rgba(25, 23, 20, 0.03);
    }
}


