/* 
       DESIGN TOKENS
     */
:root {
    --bg: #080806;
    --bg-alt: #0e0e0b;
    --surface: #131310;
    --surface-2: #1a1a16;
    --border: rgba(212, 175, 55, 0.12);
    --border-hover: rgba(212, 175, 55, 0.4);
    --gold: #d4af37;
    --gold-pale: #e8d07a;
    --gold-dim: rgba(212, 175, 55, 0.35);
    --gold-glow: rgba(212, 175, 55, 0.08);
    --text: #e8e4d8;
    --text-2: #c8c0a8;
    --text-3: #a09888;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Josefin Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 
       RESET & BASE
     */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-weight: 400;
    line-height: 1.75;
    overflow-x: hidden;
    cursor: default;
}

/* Custom cursor */
body {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s var(--ease-silk), height 0.3s var(--ease-silk), opacity 0.3s;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-silk), width 0.4s var(--ease-silk), height 0.4s var(--ease-silk), opacity 0.3s;
}

body:hover .cursor,
body:hover .cursor-ring {
    opacity: 1;
}

a:hover~.cursor,
button:hover~.cursor {
    width: 14px;
    height: 14px;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

/* 
       SCROLLBAR
     */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 2px;
}

/* 
       HEADER
     */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: rgba(8, 8, 6, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-sep {
    width: 1px;
    height: 28px;
    background: var(--border);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.brand-sub {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-3);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-acquire {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #080806;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    border: none;
    cursor: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-acquire:hover {
    background: var(--gold-pale);
    transform: translateY(-1px);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.35rem 0.8rem;
    color: var(--text-2);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: none;
    transition: border-color 0.3s, color 0.3s;
}

.lang-btn:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}

.lang-active {
    color: var(--gold);
}

/* 
       EXCLUSIVE TICKER
     */
.ticker {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 499;
    height: 28px;
    overflow: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    animation: ticker 80s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 0 3rem;
}

.ticker-item span {
    color: var(--gold);
    margin: 0 0.5rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 
       SECTION NAV
     */
.section-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    z-index: 498;
    height: 44px;
    display: flex;
    align-items: center;
    background: rgba(8, 8, 6, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
    display: none;
}

.section-nav-inner {
    display: flex;
    align-items: center;
    min-width: max-content;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-nav a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1rem;
    height: 44px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}

.section-nav a:hover {
    color: var(--gold);
}

.section-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.section-nav a i {
    font-size: 0.75rem;
}

/* 
       HERO
     */
.hero {
    position: relative;
    height: auto;           /* plus de hauteur fixe 100vh */
    min-height: unset;
    overflow: visible;      /* le contenu texte peut déborder en bas */
    display: flex;
    flex-direction: column; /* ← clé : colonne au lieu de flex-end */
    align-items: stretch;
    padding-bottom: 0;
}

.hero-panels {
    position: relative;     /* ← plus absolute */
    inset: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 3%;
    padding-top: 132px;
    height: 80vh;           /* hauteur explicite pour les images */
    min-height: 500px;
}

.hero-panel {
    position: relative;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(40px);
    animation: panelReveal 1.2s var(--ease-snap) forwards;
}

.hero-panel:nth-child(1) {
    width: 28%;
    animation-delay: 0.2s;
}

.hero-panel:nth-child(2) {
    width: 34%;
    height: 100%;
    animation-delay: 0.4s;
}

.hero-panel:nth-child(3) {
    width: 28%;
    animation-delay: 0.6s;
}

@keyframes panelReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.92) sepia(0.06);
    transition: filter 0.6s;
}

.hero-panel:hover img {
    filter: brightness(1) sepia(0);
}

.hero-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold-dim);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(8, 8, 6, 0.5) 100%);
    pointer-events: none;
}

.hero-vignette-bottom {
    display: none;
}

.hero-content {
    position: relative;     /* ← plus z-index flottant */
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 2.5rem 1rem 4rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-silk) 1s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold-dim);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.5);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212,175,55,0.4), 0 2px 20px rgba(0,0,0,0.9), 0 0 60px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 2rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--gold-dim);
    padding: 0.4rem 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-badge i {
    font-size: 0.65rem;
}

.hero-urgency {
    display: inline-block;
    margin-left: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-3);
    border-left: 1px solid var(--border);
    padding-left: 1.5rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-urgency strong {
    color: var(--gold);
}

/* 
       SECTIONS
     */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-surface {
    background-color: var(--surface);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-kicker {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-kicker::before,
.section-kicker::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-dim);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-desc {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* 
       INTRO / SAVOIR-FAIRE
     */
.savoir-faire {
    text-align: center;
    padding: 5rem 0 4rem;
}

.sf-quote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    padding: 0 3rem;
}

.sf-quote::before,
.sf-quote::after {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-dim);
    position: absolute;
    line-height: 1;
}

.sf-quote::before {
    content: '\201C';
    top: -1rem;
    left: 0;
}

.sf-quote::after {
    content: '\201D';
    bottom: -2rem;
    right: 0;
}

/* 
       GENESIS
     */
.genesis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 3rem;
}

.genesis-fact {
    background: var(--surface);
    padding: 2.2rem;
    transition: background 0.3s;
}

.genesis-fact:hover {
    background: var(--surface-2);
}

.genesis-fact-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.genesis-fact h6 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.genesis-fact p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
}

.bubbles-logo {
    display: block;
    max-width: 160px;
    margin: 2rem auto 0;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.bubbles-logo:hover {
    opacity: 1;
}

.sarihazo-logo {
    display: block;
    max-width: 180px;
    margin: 3.5rem auto 0;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.sarihazo-logo:hover {
    opacity: 1;
}

/* 
SPECS BAR
     */
.specs-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--border);
    background: var(--border);
    gap: 1px;
    margin: 0 0 4rem;
}

.spec-item {
    background: var(--surface);
    padding: 1.4rem 1rem;
    text-align: center;
}

.spec-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 400;
}

/* 
       TRIPTYCH TABS
     */
.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 1rem 1.8rem;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
    cursor: none;
    white-space: nowrap;
    transition: color 0.25s, border-color 0.25s;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFade 0.4s var(--ease-silk);
}

@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Artwork layout */
.artwork-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.artwork-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: none;
}

.artwork-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s var(--ease-silk), filter 0.4s;
    filter: brightness(0.85);
}

.artwork-img-wrap:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 6, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.artwork-img-wrap:hover .img-overlay {
    background: rgba(8, 8, 6, 0.15);
}

.img-zoom-hint {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 0.4rem 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.artwork-img-wrap:hover .img-zoom-hint {
    opacity: 1;
}

.artwork-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.artwork-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1.1;
}

.artwork-roman {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    color: var(--text-3);
    display: block;
    margin-bottom: 0.3rem;
}

/* Ref code */
.ref-code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-3);
    border: 1px solid var(--border);
    display: inline-block;
    padding: 0.3rem 0.7rem;
}

/* Info grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.info-cell {
    background: var(--surface);
    padding: 1rem;
    text-align: center;
}

.info-cell-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.info-cell-icon {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.info-cell-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
}

/* Craftsmen */
.craftsmen-row {
    display: flex;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.craftsman {
    background: var(--surface);
    padding: 1rem 1.2rem;
    flex: 1;
}

.craftsman-role {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.craftsman-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text);
}

/* Hours + Woods lower section */
.artwork-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tl-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}

.tl-item:last-child {
    border-bottom: none;
}

.tl-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
}

.tl-item:hover .tl-icon {
    border-color: var(--gold-dim);
    background: var(--gold-glow);
}

.tl-label {
    font-size: 0.85rem;
    color: var(--text-2);
    flex: 1;
}

.tl-hours {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 400;
}

.tl-total {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.8rem;
    gap: 0.5rem;
    align-items: baseline;
}

.tl-total-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
}

.tl-total-val {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* Wood tiles */
.woods-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-content: flex-start;
}

.wood-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    border: 1px solid var(--border);
    padding: 0.5rem 0.7rem;
    background: var(--surface);
    transition: border-color 0.25s, background 0.25s;
    min-width: 90px;
}

.wood-chip:hover {
    border-color: var(--gold-dim);
    background: var(--surface-2);
}

.wood-chip-name {
    font-size: 0.85rem;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
}

.wood-chip-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #080806;
    background: var(--gold);
    padding: 0.1rem 0.4rem;
}

/* 
       CUMULATIVE HOURS
     */
.cumul-grid {
    max-width: 700px;
    margin: 0 auto;
}

.cumul-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem 1.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1px;
    background: var(--surface);
    transition: background 0.3s, border-color 0.3s;
}

.cumul-row:hover {
    background: var(--surface-2);
    border-color: var(--border-hover);
}

.cumul-row.total {
    background: var(--gold-glow);
    border-color: var(--gold-dim);
    margin-top: 1px;
}

.cumul-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.cumul-label {
    font-size: 0.95rem;
    color: var(--text-2);
    flex: 1;
}

.cumul-row.total .cumul-label {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
}

.cumul-hours {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 400;
}

.cumul-row.total .cumul-hours {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
}

/* 
       PORTRAITS / VIDEOS
     */
.portraits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portrait-card {}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.video-wrap:hover {
    border-color: var(--gold-dim);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.portrait-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold);
    margin-top: 0.8rem;
    font-style: italic;
}

/* 
       GUARANTEE
     */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.guarantee-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}

.guarantee-card:hover {
    background: var(--surface-2);
}

.guarantee-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.guarantee-card h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.guarantee-card p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.75;
}

.guarantee-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 0.2rem;
    transition: color 0.25s, border-color 0.25s;
}

.guarantee-cta:hover {
    color: var(--gold-pale);
    border-color: var(--gold);
}

/* 
       VISION
     */
.vision-pull {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-2);
    line-height: 1.7;
    border-left: 2px solid var(--gold);
    padding: 1rem 0 1rem 2.5rem;
    margin-bottom: 2rem;
}

.vision-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.85;
}

/* 
       ALL WOODS SECTION
     */
.all-woods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

/* 
       PHILANTHROPY
     */
.philanthropy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 66%;
    margin: 0 auto;
}

.philanthropy-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.3s;
}

.philanthropy-card:hover {
    background: var(--surface-2);
}

.philanthropy-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    margin: 0 auto 1.2rem;
}

.philanthropy-card h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.philanthropy-card p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* 
       PRICE / CONTACT
     */
.contact-block {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.price-mention {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.price-note {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 2.5rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: #080806;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: none;
    cursor: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-pale);
    color: #080806;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--gold-dim);
    cursor: none;
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-pale);
    transform: translateY(-2px);
}

.social-proof {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proof-item i {
    color: var(--gold);
}

/* 
       VIDEO (large)
     */
.video-large {
    max-width: 820px;
    margin: 0 auto;
}

/* 
       FOOTER
     */
footer {
    background: #050503;
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    opacity: 0.95;
    height: 125px;
    width: auto;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--text-3);
    text-transform: uppercase;
}

.footer-license {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--text-3);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* 
       LIGHTBOX
     */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 3, 0.96);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border: 1px solid var(--border);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--text-2);
    cursor: none;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    transition: border-color 0.3s, color 0.3s;
}

.lightbox-close:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}

/* 
       SCROLL ANIMATIONS
     */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-silk), transform 0.7s var(--ease-silk);
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* 
       RESPONSIVE
     */
@media (max-width: 900px) {
    .artwork-grid {
        grid-template-columns: 1fr;
    }

    .artwork-img-wrap {
        aspect-ratio: 4/3;
        max-height: 380px;
    }

    .genesis-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .philanthropy-grid {
        grid-template-columns: 1fr;
    }

    .portraits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .specs-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .artwork-lower {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 0 1rem;
    }

    .brand-name {
        font-size: 0.85rem;
    }

    .section {
        padding: 4rem 0;
    }

    .portraits-grid {
        grid-template-columns: 1fr;
    }

    .specs-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .craftsmen-row {
        flex-direction: column;
        gap: 1px;
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-block {
        padding: 2.5rem 1.5rem;
    }

    .hero-panels {
        gap: 2px;
    }

    .btn-acquire {
        display: none;
    }

    .hero-urgency {
        display: none;
    }
}

/* 
       MOBILE OPTIMISATIONS
    */

/* ── Curseur : désactiver cursor:none sur mobile/tactile ── */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    .cursor,
    .cursor-ring {
        display: none !important;
    }
    a, button, [onclick],
    .btn-primary, .btn-secondary, .btn-acquire, .lang-btn,
    .tab-btn, .artwork-img-wrap, .lightbox-close {
        cursor: pointer;
    }
}

/* ── HERO MOBILE : supprimer l'espace vide entre les photos et le titre ── */
@media (max-width: 640px) {
    .hero {
        height: auto !important;
        min-height: unset !important;
        padding-bottom: 0 !important;
    }

    .hero-panels {
        height: auto !important;
        min-height: unset !important;
        padding-bottom: 0 !important;
    }

    .hero-panel img {
        max-height: 38vh !important;
    }

    .hero-content {
        padding-top: 1.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* ── HERO : supprimer la bande noire ── */
@media (max-width: 900px) {
    /* La hauteur des 3 barres fixes :
       header 60px + ticker 28px + section-nav 44px = 132px
       On recalcule hero-panels pour occuper tout l'espace sous ces barres */
    .hero {
        height: 100svh; /* safe-area-aware sur iOS */
        min-height: 500px;
    }

    .hero-panels {
        height: auto;
        min-height: unset;
        padding-top: 132px;
        align-items: flex-start;
        padding-bottom: 0;
    }

    .hero-panel {
        height: auto;
    }

    .hero-panel:nth-child(2) {
        height: auto;
    }

.hero-panel img {
        height: auto;
        max-height: 55vh;
    }

    .hero {
        padding-bottom: 5vh;
    }
}

@media (max-width: 640px) {
/* ── ONGLETS TRIPTYQUE : indicateur de scroll + boutons pleine largeur ── */
@media (max-width: 900px) {
    .tab-nav {
        /* Masque partiel du 3e onglet pour indiquer qu'il faut scroller */
        position: relative;
        /* Gradient "fade" sur le bord droit */
        -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
        mask-image: linear-gradient(to right, black 75%, transparent 100%);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px; /* évite que la bordure active soit coupée */
    }

    .tab-btn {
        scroll-snap-align: start;
        flex: 0 0 auto;
        min-width: 44%; /* ~2,2 onglets visibles → on voit le 3e à moitié */
        text-align: center;
        justify-content: center;
        padding: 0.9rem 1rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 640px) {
    .tab-nav {
        /* Sur petit écran : ~1,7 onglets visibles → appel clair à scroller */
        -webkit-mask-image: linear-gradient(to right, black 60%, transparent 98%);
        mask-image: linear-gradient(to right, black 60%, transparent 98%);
    }

    .tab-btn {
        min-width: 58%; /* ~1,7 onglets visibles */
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        padding: 0.85rem 0.8rem;
    }

    /* Pastille indicateur de position sous les onglets */
    .tab-nav::after {
        content: '';
        display: block;
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: transparent;
        pointer-events: none;
    }
}

/* ── HEADER : compacter sur mobile ── */
@media (max-width: 640px) {
    .site-header {
        padding: 0 0.8rem;
        height: 56px;
    }

    /* Recalculer les barres fixes si header rétrécit à 56px */
    .ticker {
        top: 56px;
    }

    .section-nav {
        top: 84px; /* 56 + 28 */
    }

    html {
        scroll-padding-top: 100px; /* 56 + 28 + 44 - 28 */
    }

    .hero-panels {
        height: auto;
        min-height: unset;
        padding-top: 128px;
    }

    .hero-panel,
    .hero-panel:nth-child(2) {
        height: auto;
        padding-top: 2rem;
    }

    .hero-panel img {
        height: auto;
        max-height: 52vh;
    }

    .brand-name {
        font-size: 0.78rem;
        letter-spacing: 0.04em;
    }

    .brand-sub {
        font-size: 0.65rem;
    }
}

/* ── SECTION NAV : améliorer la lisibilité sur petit écran ── */
@media (max-width: 640px) {
    .section-nav {
        height: 40px;
        /* Recalcul: top = 56(header)+28(ticker) = 84px */
    }

    .section-nav a {
        font-size: 0.7rem;
        padding: 0 0.7rem;
        letter-spacing: 0.12em;
        height: 40px;
    }

    .section-nav a i {
        display: none; /* masquer les icônes pour gagner de la place */
    }

    /* Recalculer hero-panels en tenant compte de la section-nav réduite */
    .hero-panels {
        padding-top: 124px;
    }

    .hero-panel,
    .hero-panel:nth-child(2) {
        height: auto;
    }

    .hero-panel img {
        height: auto;
        max-height: 40vh;
    }
}

/* ── GRILLES : ajustements complémentaires ── */
@media (max-width: 640px) {
    .artwork-grid {
        grid-template-columns: 1fr;
    }

    .artwork-img-wrap {
        aspect-ratio: 3/4;
        max-height: none;
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
    }

    .artwork-lower {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .specs-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    /* La 5e spec tombe seule sur une ligne : la centrer */
    .spec-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .craftsmen-row {
        flex-direction: column;
        gap: 1px;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    .contact-block {
        padding: 2rem 1rem;
    }

    /* SF quote : réduire les guillemets décoratifs */
    .sf-quote {
        padding: 0 2rem;
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .sf-quote::before,
    .sf-quote::after {
        font-size: 2.5rem;
    }

    /* Boutons : cible tactile min 44px */
    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.5rem;
        min-height: 44px;
    }

    .lang-btn {
        padding: 0.5rem 0.7rem;
        min-height: 36px;
    }

    /* Philanthropie : 1 colonne déjà gérée à 900px */

    /* Portrait grid */
    .portraits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Guarantee grid */
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    /* Cumul rows */
    .cumul-row {
        font-size: 0.85rem;
    }
}

/* ── TOUCH : zone de tap confortable sur les panels héro ── */
@media (hover: none) {
    .artwork-img-wrap .img-overlay {
        background: rgba(8, 8, 6, 0.1);
    }

    .artwork-img-wrap .img-zoom-hint {
        display: none;
    }

    /* Désactiver les effets hover sur mobile qui ne servent à rien */
    .hero-panel::after {
        display: none;
    }
}

/* ── LIGHTBOX : adaptée au mobile ── */
@media (max-width: 640px) {
    .lightbox img {
        max-width: 96vw;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.5rem 0.9rem;
        font-size: 0.7rem;
    }
}

/* ─────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────── */
.contact-form {
    max-width: 640px;
    margin: 3rem auto 0;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    padding: 2.6rem 2.6rem 2.4rem;
    text-align: left;
    position: relative;
    transition: border-color 0.4s;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 1px;
    background: var(--gold);
    opacity: 0.8;
}

.cf-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.65rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.cf-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-dim);
    margin: 0.9rem auto 2rem;
}

.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
}

.cf-row {
    min-width: 0;
}

.cf-row.cf-full {
    grid-column: 1 / -1;
}

.cf-row label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.55rem;
}

.cf-optional {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-style: italic;
    color: var(--text-3);
    margin-left: 0.4rem;
    text-transform: none;
    letter-spacing: 0.04em;
}

.cf-row input,
.cf-row textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.85rem 1.05rem;
    border-radius: 0;
    outline: none;
    cursor: text;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.cf-row textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.cf-row input:hover,
.cf-row textarea:hover {
    border-color: var(--border-hover);
}

.cf-row input:focus,
.cf-row textarea:focus {
    border-color: var(--gold);
    background: var(--surface-2);
    box-shadow: 0 0 0 1px var(--gold-dim), 0 0 24px var(--gold-glow);
}

.cf-row input::placeholder,
.cf-row textarea::placeholder {
    color: var(--text-3);
}

.cf-row input:invalid:not(:placeholder-shown),
.cf-row textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(217, 141, 141, 0.55);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
    pointer-events: none;
}

.cf-notice {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 0.9rem 1.1rem;
    margin: 0.2rem 0 1.2rem;
    border: 1px solid;
}

.cf-notice.ok {
    color: #9fc38f;
    border-color: rgba(159, 195, 143, 0.35);
    background: rgba(159, 195, 143, 0.07);
}

.cf-notice.err {
    color: #d98d8d;
    border-color: rgba(217, 141, 141, 0.35);
    background: rgba(217, 141, 141, 0.07);
}

.cf-submit {
    width: 100%;
    justify-content: center;
    cursor: none;
    letter-spacing: 0.26em;
}

.cf-submit:disabled {
    opacity: 0.55;
    cursor: default;
    transform: none;
}

@media (max-width: 640px) {
    .contact-form {
        margin-top: 2.2rem;
        padding: 2rem 1.2rem 1.8rem;
    }

    .cf-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cf-title {
        font-size: 1.4rem;
    }

    .cf-row input,
    .cf-row textarea {
        font-size: 0.92rem;
        padding: 0.8rem 0.95rem;
    }
}