@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&family=Golos+Text:wght@400;500;600;700&display=swap");

:root {
    --ink: #050505;
    --ink-soft: #0d0d0d;
    --paper: #f1eee7;
    --white: #fff;
    --muted: #a7a39b;
    --gold: #d2a253;
    --acid: #d9f025;
    --coral: #ff4b2f;
    --line: rgba(255, 255, 255, .16);
    --radius: 28px;
    --font-display: "Cal Sans", "Arial Black", sans-serif;
    --font-body: "Golos Text", Arial, sans-serif;
    --page-gutter: clamp(20px, 4vw, 74px);
    --header-height: 104px;
}

* { box-sizing: border-box; }

html {
    background: var(--ink);
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--acid); color: var(--ink); }

.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 10000;
    background: var(--acid);
    color: var(--ink);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.skip-link:focus { top: 18px; }

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--ink);
    pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
}

.preloader.is-hidden { opacity: 0; visibility: hidden; }

.preloader__name {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(38px, 7vw, 104px);
    letter-spacing: -.04em;
    text-transform: uppercase;
    mix-blend-mode: difference;
}

.preloader__bars {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.preloader__bars i {
    background: var(--paper);
    border-right: 1px solid rgba(0, 0, 0, .12);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: loader-bar .9s cubic-bezier(.77, 0, .18, 1) forwards;
}

.preloader__bars i:nth-child(2) { animation-delay: .06s; }
.preloader__bars i:nth-child(3) { animation-delay: .12s; }
.preloader__bars i:nth-child(4) { animation-delay: .18s; }
.preloader__bars i:nth-child(5) { animation-delay: .24s; }
.preloader__bars i:nth-child(6) { animation-delay: .30s; }
.preloader__bars i:nth-child(7) { animation-delay: .36s; }
.preloader__bars i:nth-child(8) { animation-delay: .42s; }

@keyframes loader-bar {
    0% { transform: scaleY(0); }
    55% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: top; }
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 var(--page-gutter);
    transition: background .35s ease, height .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    height: 82px;
    background: rgba(5, 5, 5, .88);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 30px;
}

.brand { display: inline-flex; flex-direction: column; width: max-content; line-height: .9; }
.brand strong { font-family: var(--font-display); font-size: 26px; letter-spacing: -.03em; }
.brand span { margin-top: 7px; color: var(--gold); font-size: 8px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; }

.site-nav { justify-self: center; }
.site-nav ul { display: flex; align-items: center; gap: clamp(12px, 1.4vw, 24px); margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; font-size: 13px; font-weight: 600; white-space: nowrap; }
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--gold);
    transition: right .28s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

.site-header__actions { justify-self: end; display: flex; align-items: center; gap: 12px; }

.pill,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.pill--gold,
.button--gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.pill:hover,
.button:hover { background: var(--white); border-color: var(--white); color: var(--ink); transform: translateY(-2px); }
.button--acid { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.button--dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button__arrow { font-size: 20px; line-height: 1; transition: transform .2s ease; }
.button:hover .button__arrow { transform: translateX(4px); }

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 990;
    display: grid;
    align-content: center;
    padding: calc(var(--header-height) + 40px) var(--page-gutter) 50px;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: .35s ease;
}
.mobile-panel.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-panel nav ul { margin: 0; padding: 0; list-style: none; }
.mobile-panel nav a { display: block; padding: 10px 0; font-family: var(--font-display); font-size: clamp(34px, 8vw, 62px); line-height: 1.05; }
.mobile-panel nav a[aria-current="page"] { color: var(--gold); }
.mobile-panel__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: end;
    padding: calc(var(--header-height) + 80px) var(--page-gutter) 64px;
    background: #030303;
}

.hero__ambient {
    position: absolute;
    inset: -8%;
    background: url("../img/ottiene/hero-heritages.webp") center/cover no-repeat;
    filter: blur(36px) saturate(1.1);
    opacity: .28;
    transform: scale(1.08);
}

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .78) 32%, rgba(0, 0, 0, .12) 70%, rgba(0, 0, 0, .35) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .78) 0%, transparent 34%);
}

.hero__art-wrap {
    position: absolute;
    inset: 5% 2% 0 34%;
    display: grid;
    place-items: center;
}

.hero__art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    filter: saturate(1.03) contrast(1.02);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(980px, 88vw);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1,
.page-hero h1,
.display {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .88;
    text-wrap: balance;
}

.hero h1 { max-width: 640px; font-size: clamp(35px, 4.45vw, 76px); text-transform: uppercase; }
.hero h1 span { display: block; color: var(--gold); }
.hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-top: 38px; }
.hero__intro { max-width: 520px; margin: 0; color: rgba(255, 255, 255, .75); font-size: clamp(15px, 1.5vw, 20px); }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .68); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue i { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.chapter { position: relative; padding: clamp(92px, 11vw, 180px) var(--page-gutter); }
.chapter--paper { background: var(--paper); color: var(--ink); }
.chapter--soft { background: var(--ink-soft); }
.chapter--tight { padding-top: clamp(70px, 8vw, 120px); padding-bottom: clamp(70px, 8vw, 120px); }
.chapter__number { position: absolute; top: 42px; right: var(--page-gutter); color: rgba(255, 255, 255, .32); font-size: 11px; letter-spacing: .18em; }
.chapter--paper .chapter__number { color: rgba(0, 0, 0, .34); }

.shell { width: min(100%, 1480px); margin-inline: auto; }
.shell--narrow { width: min(100%, 1180px); margin-inline: auto; }
.display { font-size: clamp(26px, 3.5vw, 56px); }
.display--medium { font-size: clamp(25px, 2.7vw, 44px); }
.display em { color: var(--gold); font-style: normal; }
.lead { max-width: 770px; font-size: clamp(18px, 2.2vw, 30px); line-height: 1.4; letter-spacing: -.02em; }
.muted { color: var(--muted); }
.chapter--paper .muted { color: #68645d; }

.heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: clamp(48px, 7vw, 96px); }
.heading-row .display { max-width: 1050px; }

.works-showcase { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.work-card {
    position: relative;
    grid-column: span 4;
    overflow: hidden;
    min-height: 520px;
    background: #111;
    border-radius: var(--radius);
    isolation: isolate;
}
.work-card--wide { grid-column: span 7; }
.work-card--tall { grid-column: span 5; min-height: 720px; }
.work-card--small { min-height: 430px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .5s ease; }
.work-card[data-fit="contain"] img { object-fit: contain; padding: 34px; }
.work-card::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .88), transparent 48%); }
.work-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.work-card__button { position: absolute; inset: 0; z-index: 2; width: 100%; border: 0; background: transparent; cursor: zoom-in; text-align: left; }
.work-card__meta { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; pointer-events: none; }
.work-card__meta h3 { margin: 0; font-family: var(--font-display); font-size: clamp(27px, 2.4vw, 42px); font-weight: 400; line-height: 1; }
.work-card__meta p { margin: 9px 0 0; color: rgba(255, 255, 255, .65); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.work-card__index { font-size: 11px; }

.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr); gap: clamp(48px, 8vw, 130px); align-items: center; }
.manifesto-copy blockquote { margin: 0 0 38px; font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 39px); line-height: 1.04; letter-spacing: -.035em; }
.manifesto-copy blockquote span { color: var(--coral); }
.manifesto-copy p { max-width: 660px; color: #605d57; font-size: 18px; }
.portrait-frame { position: relative; overflow: hidden; min-height: 720px; border-radius: var(--radius); background: #ddd; }
.portrait-frame img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center top; }
.portrait-frame.portrait-frame--original { min-height: 0; aspect-ratio: 1050 / 1280; align-self: center; }
.portrait-frame--original img { object-position: center; }
.portrait-frame__label { position: absolute; z-index: 1; left: 22px; bottom: 22px; padding: 11px 16px; border-radius: 999px; background: rgba(0, 0, 0, .72); color: var(--white); font-size: 11px; backdrop-filter: blur(12px); }

.technique-stage { position: relative; min-height: min(82svh, 900px); overflow: hidden; display: grid; align-items: end; padding: clamp(34px, 6vw, 82px); border-radius: var(--radius); }
.technique-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.technique-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .2)), linear-gradient(0deg, rgba(0, 0, 0, .8), transparent 58%); }
.technique-stage__copy { position: relative; z-index: 1; max-width: 800px; }
.technique-stage__copy p { max-width: 610px; color: rgba(255, 255, 255, .72); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; background: var(--line); }
.principle { padding: 34px; background: var(--ink); }
.principle small { color: var(--gold); font-weight: 700; }
.principle h3 { margin: 25px 0 10px; font-family: var(--font-display); font-size: 32px; font-weight: 400; }
.principle p { margin: 0; color: var(--muted); font-size: 14px; }

.expo-collage { display: grid; grid-template-columns: 1.1fr .7fr .9fr; grid-template-rows: 280px 360px; gap: 18px; }
.expo-collage figure { position: relative; overflow: hidden; margin: 0; border-radius: 22px; }
.expo-collage figure:first-child { grid-row: span 2; }
.expo-collage figure:last-child { grid-column: span 2; }
.expo-collage img { width: 100%; height: 100%; object-fit: cover; }
.expo-collage figcaption { position: absolute; inset: auto 14px 14px; width: max-content; max-width: calc(100% - 28px); padding: 9px 13px; background: rgba(0, 0, 0, .75); border: 1px solid var(--line); border-radius: 999px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }

.cta-stage { min-height: 76svh; display: grid; place-items: center; text-align: center; overflow: hidden; background: var(--gold); color: var(--ink); }
.cta-stage__inner { width: min(1200px, 100%); }
.cta-stage .display { margin-bottom: 36px; }
.cta-stage p { max-width: 650px; margin: 0 auto 36px; font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.page-hero { position: relative; min-height: 76svh; overflow: hidden; display: flex; align-items: flex-end; padding: calc(var(--header-height) + 120px) var(--page-gutter) 76px; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .18)), linear-gradient(0deg, rgba(0, 0, 0, .9), transparent 55%); }
.page-hero__content { position: relative; z-index: 1; width: min(1400px, 100%); margin-inline: auto; }
.page-hero h1 { max-width: 720px; font-size: clamp(36px, 4.35vw, 72px); text-transform: uppercase; }
.page-hero__intro { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: clamp(17px, 1.7vw, 23px); }
.page-hero--short { min-height: 62svh; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 44px 0 56px; }
.filter-button { min-height: 44px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 12px; cursor: pointer; }
.filter-button:hover,
.filter-button.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.gallery-grid .work-card { grid-column: span 4; min-height: 570px; transition: opacity .25s ease, transform .25s ease; }
.gallery-grid .work-card:nth-child(5n + 1),
.gallery-grid .work-card:nth-child(5n + 4) { grid-column: span 7; }
.gallery-grid .work-card:nth-child(5n + 2),
.gallery-grid .work-card:nth-child(5n + 3) { grid-column: span 5; }
.gallery-grid .work-card.is-filtered { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 31vw); background: rgba(0, 0, 0, .97); opacity: 0; visibility: hidden; transition: .3s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { min-width: 0; min-height: 0; display: grid; place-items: center; padding: 54px; background: #020202; }
.lightbox__figure img { max-width: 100%; max-height: calc(100svh - 108px); object-fit: contain; }
.lightbox__panel { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 84px 48px 48px; background: var(--paper); color: var(--ink); }
.lightbox__close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(0, 0, 0, .25); border-radius: 50%; background: transparent; color: var(--ink); font-size: 26px; cursor: pointer; }
.lightbox__panel .eyebrow { margin-bottom: 20px; }
.lightbox__title { margin: 0 0 22px; font-family: var(--font-display); font-size: clamp(29px, 3vw, 47px); font-weight: 400; line-height: 1; }
.lightbox__specs { margin: 0 0 10px; color: #625f59; }
.lightbox__note { margin: 28px 0; padding-top: 24px; border-top: 1px solid rgba(0,0,0,.15); }
.lightbox__nav { display: flex; gap: 10px; margin-top: 24px; }
.lightbox__nav button { width: 48px; height: 48px; border: 1px solid rgba(0,0,0,.25); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }

[data-media-lightbox-trigger] { cursor: zoom-in; }
.story__image.has-media-lightbox { position: relative; }
.media-zoom {
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: rgba(0,0,0,.58);
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    cursor: zoom-in;
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}
.media-zoom:hover { background: var(--gold); color: var(--ink); transform: scale(1.06); }
.hero__art-wrap .media-zoom,
.page-hero__media .media-zoom { top: calc(var(--header-height) + 24px); right: var(--page-gutter); }
.page-hero__media::after,
.hero__shade,
.hero__ambient { pointer-events: none; }

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: clamp(24px, 4vw, 64px);
    background: rgba(0,0,0,.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}
.media-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.media-lightbox__stage { width: min(1420px, 100%); height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; gap: 18px; }
.media-lightbox__image { max-width: 100%; max-height: calc(100svh - 150px); object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.48); }
.media-lightbox__caption { max-width: 880px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; text-align: center; }
.media-lightbox__close,
.media-lightbox__nav {
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .2s ease, color .2s ease;
}
.media-lightbox__close:hover,
.media-lightbox__nav:hover { background: var(--gold); color: var(--ink); }
.media-lightbox__close { top: 22px; right: 22px; font-size: 26px; }
.media-lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 22px; }
.media-lightbox__nav--prev { left: 22px; }
.media-lightbox__nav--next { right: 22px; }

.bio-grid { display: grid; grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
.bio-sticky { position: sticky; top: 110px; }
.bio-sticky img { width: 100%; border-radius: var(--radius); }
.bio-copy h2 { margin: 0 0 38px; font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 48px); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.bio-copy p { margin: 0 0 24px; color: #5d5a54; font-size: 18px; }
.bio-copy .lead { color: var(--ink); font-size: clamp(21px, 2.3vw, 32px); }

.quote-band { padding: clamp(90px, 12vw, 190px) var(--page-gutter); background: var(--acid); color: var(--ink); }
.quote-band blockquote { max-width: 1040px; margin: 0 auto; font-family: var(--font-display); font-size: clamp(28px, 3.45vw, 58px); line-height: 1; letter-spacing: -.04em; }
.quote-band cite { display: block; margin-top: 34px; font-family: var(--font-body); font-size: 11px; font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.timeline { border-top: 1px solid var(--line); }
.timeline__item { display: grid; grid-template-columns: 180px 1fr 1.4fr; gap: 36px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.timeline__item small { color: var(--gold); font-weight: 700; }
.timeline__item h3 { margin: 0; font-family: var(--font-display); font-size: clamp(28px, 3vw, 46px); font-weight: 400; }
.timeline__item p { margin: 0; color: var(--muted); }

.material-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 62px; }
.material-card { min-height: 420px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.material-card span { display: inline-grid; place-items: center; width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 12px; }
.material-card h3 { margin: 84px 0 18px; font-family: var(--font-display); font-size: clamp(36px, 4vw, 62px); font-weight: 400; line-height: 1; }
.material-card p { max-width: 520px; margin: 0; color: var(--muted); }

.knife-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.knife-grid figure { position: relative; overflow: hidden; min-height: 600px; margin: 0; border-radius: var(--radius); }
.knife-grid figure:last-child { min-height: 460px; align-self: end; }
.knife-grid img { width: 100%; height: 100%; object-fit: cover; position: absolute; }

.stories { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.story { grid-column: span 4; overflow: hidden; background: var(--paper); color: var(--ink); border-radius: var(--radius); }
.story--wide { grid-column: span 8; }
.story__image { aspect-ratio: 16/11; overflow: hidden; background: #111; }
.story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.story:hover .story__image img { transform: scale(1.04); }
.story__body { padding: 28px; }
.story__meta { color: #78736b; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.story h2 { margin: 20px 0 16px; font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 58px); font-weight: 400; line-height: 1; }
.story p { color: #625f59; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 150px); }
.contact-details h2 { margin: 0 0 32px; font-family: var(--font-display); font-size: clamp(26px, 2.7vw, 46px); font-weight: 400; line-height: 1; }
.contact-list { margin: 54px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-list li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; color: var(--gold); margin-bottom: 6px; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-list a { font-size: 18px; }

.contact-form { padding: clamp(28px, 4vw, 58px); border-radius: var(--radius); background: var(--paper); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 22px; }
.field label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 700; }
.field input,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.25);
    border-radius: 0;
    padding: 13px 0;
    background: transparent;
    color: var(--ink);
    outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--ink); }
.form-note { margin: 20px 0 0; color: #706c65; font-size: 12px; }
.form-status { min-height: 24px; margin-top: 14px; color: #3a6600; font-size: 13px; }

.site-footer { position: relative; overflow: hidden; padding: 90px var(--page-gutter) 26px; background: #090909; border-top: 1px solid var(--line); }
.site-footer__top { width: min(1480px, 100%); margin: 0 auto 88px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; }
.site-footer h2 { margin: 0; font-family: var(--font-display); font-size: clamp(26px, 3vw, 46px); font-weight: 400; line-height: 1; }
.site-footer__col h3 { margin: 0 0 18px; color: var(--gold); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.site-footer__col a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.7); font-size: 14px; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__word { font-family: var(--font-display); font-size: clamp(56px, 12.6vw, 198px); line-height: .78; letter-spacing: -.06em; text-transform: uppercase; color: rgba(255,255,255,.045); white-space: nowrap; text-align: center; pointer-events: none; }
.site-footer__bottom { width: min(1480px, 100%); margin: 45px auto 0; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #777; font-size: 11px; }

/* Collection privée — une scénographie plus rare et éditoriale */
.private-page { background: #090806; color: #f5f0e7; }
.private-page .site-header { background: linear-gradient(180deg, rgba(9,8,6,.96), rgba(9,8,6,.72)); }
.private-page .preloader { background: #090806; }
.private-page .preloader__bars i:nth-child(odd) { background: #d8ad63; }

.private-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(380px, .78fr) minmax(560px, 1.22fr);
    gap: clamp(44px, 6vw, 110px);
    align-items: center;
    padding: calc(var(--header-height) + 56px) var(--page-gutter) 64px;
    background:
        radial-gradient(circle at 73% 35%, rgba(178,130,60,.16), transparent 34%),
        linear-gradient(115deg, #090806 0 48%, #12100c 100%);
}
.private-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.035) 80px);
}
.private-hero__copy { position: relative; z-index: 2; max-width: 600px; }
.private-kicker { display: flex; justify-content: space-between; gap: 22px; margin-bottom: clamp(64px, 9vh, 112px); padding-bottom: 14px; border-bottom: 1px solid rgba(216,173,99,.38); color: rgba(255,255,255,.52); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.private-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(42px, 4.5vw, 70px); font-weight: 400; line-height: .94; letter-spacing: -.045em; }
.private-hero h1 em { color: #d8ad63; font-style: normal; }
.private-hero__copy > p { max-width: 540px; margin: 30px 0 0; color: rgba(255,255,255,.62); font-size: clamp(16px, 1.35vw, 20px); }
.private-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 42px; }
.button--private { border-color: #d8ad63; background: #d8ad63; color: #090806; }
.private-text-link { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; }
.private-text-link span { margin-left: 8px; color: #d8ad63; }

.private-hero__visuals { position: relative; z-index: 1; min-height: min(78svh, 860px); }
.private-hero__master { position: absolute; inset: 1% 15% 8% 3%; overflow: hidden; margin: 0; background: #17130d; box-shadow: 0 42px 100px rgba(0,0,0,.52); }
.private-hero__master::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.private-hero__master img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.private-hero__master figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; gap: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.48); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.private-hero__master figcaption small { color: rgba(255,255,255,.65); font-size: inherit; }
.private-hero__inset { position: absolute; z-index: 3; right: 0; bottom: 0; width: 38%; height: 43%; overflow: hidden; margin: 0; border: 8px solid #090806; background: #e7e2d8; box-shadow: 0 24px 70px rgba(0,0,0,.58); }
.private-hero__inset img { width: 100%; height: 100%; object-fit: cover; }
.private-hero__inset figcaption { position: absolute; right: 12px; bottom: 10px; padding: 8px 11px; background: rgba(9,8,6,.78); color: white; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.private-hero__seal { position: absolute; z-index: 4; top: 0; right: 1%; width: 110px; height: 110px; display: grid; grid-template-columns: auto auto; place-content: center; gap: 8px; border: 1px solid rgba(216,173,99,.6); border-radius: 50%; background: rgba(9,8,6,.7); color: #d8ad63; backdrop-filter: blur(12px); }
.private-hero__seal strong { font-family: var(--font-display); font-size: 34px; font-weight: 400; line-height: 1; }
.private-hero__seal span { font-size: 8px; font-weight: 700; line-height: 1.2; letter-spacing: .1em; text-transform: uppercase; }

.private-statement { padding: clamp(110px, 14vw, 210px) var(--page-gutter); background: #eee9df; color: #15120d; }
.private-statement__grid { display: grid; grid-template-columns: 150px minmax(0, 1.1fr) minmax(300px, .72fr); gap: clamp(36px, 6vw, 100px); align-items: end; }
.private-section-number { align-self: start; color: #8d7853; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.private-statement h2,
.private-selection__head h2,
.private-motion h2 { margin: 0; font-family: var(--font-display); font-size: clamp(32px, 3.4vw, 52px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.private-statement p { margin: 0; color: #605a50; font-size: clamp(16px, 1.45vw, 21px); }

.private-selection { padding: clamp(110px, 13vw, 200px) var(--page-gutter); background: #090806; }
.private-selection__head { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: clamp(80px, 10vw, 150px); }
.private-selection__head > p { max-width: 490px; margin: 0; color: rgba(255,255,255,.52); }
.private-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: row dense; column-gap: clamp(20px, 3vw, 46px); row-gap: clamp(80px, 10vw, 150px); align-items: start; }
.private-piece { grid-column: span 6; margin: 0; }
.private-piece--02,
.private-piece--04,
.private-piece--06,
.private-piece--08,
.private-piece--10 { margin-top: clamp(56px, 7vw, 110px); }
.private-piece__image { position: relative; overflow: hidden; background: #15120d; }
.private-piece__image::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.private-piece img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; transition: transform 1s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.private-piece:hover img { transform: scale(1.018); filter: saturate(1.04); }
.private-piece--01 img,
.private-piece--02 img { aspect-ratio: .84; }
.private-piece--05 img,
.private-piece--06 img,
.private-piece--08 img,
.private-piece--09 img { aspect-ratio: 1; }
.private-piece__image--room { background: #e6e3dd; }
.private-piece__image--room img { object-fit: contain; }
.private-piece figcaption { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(216,173,99,.34); color: #d8ad63; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.private-piece figcaption small { color: rgba(255,255,255,.45); font-size: 9px; }

.private-quote { position: relative; overflow: hidden; padding: clamp(110px, 14vw, 210px) var(--page-gutter); background: #d8ad63; color: #100d09; text-align: center; }
.private-quote__line { width: min(180px, 25vw); height: 1px; margin: 0 auto 52px; background: rgba(0,0,0,.35); }
.private-quote blockquote { max-width: 1180px; margin: 0 auto; font-family: var(--font-display); font-size: clamp(30px, 4vw, 60px); line-height: 1.02; letter-spacing: -.04em; }
.private-quote blockquote em { font-style: normal; color: #fff9ec; }
.private-quote > span { display: block; margin-top: 40px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.private-motion { padding: clamp(110px, 13vw, 190px) var(--page-gutter); background: #11100d; }
.private-motion__head { display: grid; grid-template-columns: 150px minmax(0, 1fr) minmax(300px, .68fr); gap: clamp(36px, 6vw, 100px); align-items: end; margin-bottom: clamp(70px, 9vw, 130px); }
.private-motion__head > p { margin: 0; color: rgba(255,255,255,.5); }
.private-films { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 320px 320px; gap: 22px; }
.private-film { position: relative; overflow: hidden; margin: 0; background: #050505; }
.private-film--large { grid-row: span 2; }
.private-film video { width: 100%; height: 100%; object-fit: cover; }
.private-film::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 38%); }
.private-film__toggle { position: absolute; z-index: 3; top: 18px; right: 18px; width: 46px; height: 46px; display: grid; place-items: center; padding-left: 3px; border: 1px solid rgba(255,255,255,.46); border-radius: 50%; background: rgba(0,0,0,.48); color: white; font-size: 13px; cursor: pointer; backdrop-filter: blur(10px); transition: background .2s ease, color .2s ease; }
.private-film__toggle:hover { background: #d8ad63; color: #090806; }
.private-film.is-playing .private-film__toggle { opacity: .52; }
.private-film figcaption { position: absolute; z-index: 2; left: 18px; bottom: 16px; color: rgba(255,255,255,.78); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.private-invitation { position: relative; min-height: 78svh; overflow: hidden; display: grid; place-items: center; padding: 100px var(--page-gutter); background: #eee9df; color: #15120d; text-align: center; }
.private-invitation::before { content: ""; position: absolute; width: min(72vw, 980px); aspect-ratio: 1; border: 1px solid rgba(141,120,83,.22); border-radius: 50%; }
.private-invitation__ornament { position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(141,120,83,.28); border-radius: 50%; color: rgba(141,120,83,.18); font-family: var(--font-display); font-size: 52px; transform: translate(-50%,-50%); }
.private-invitation__inner { position: relative; z-index: 1; max-width: 840px; }
.private-invitation h2 { margin: 24px 0 30px; font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 68px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.private-invitation h2 em { color: #a77d3a; font-style: normal; }
.private-invitation p { max-width: 650px; margin: 0 auto; color: #655f55; font-size: 17px; }
.private-invitation__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; margin-top: 42px; }
.private-phone { padding-bottom: 4px; border-bottom: 1px solid rgba(0,0,0,.3); font-size: 13px; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }

@media (max-width: 1240px) {
    :root { --header-height: 88px; }
    .site-header__inner { grid-template-columns: 180px 1fr 160px; }
    .site-nav ul { gap: 14px; }
    .site-nav a { font-size: 11px; }
    .site-header .pill { padding-inline: 16px; }
    .private-hero { grid-template-columns: minmax(340px, .8fr) minmax(500px, 1.2fr); gap: 42px; }
    .private-hero__seal { width: 92px; height: 92px; }
}

@media (max-width: 1040px) {
    .site-header__inner { grid-template-columns: 1fr auto; }
    .site-nav,
    .site-header .pill { display: none; }
    .menu-toggle { display: block; }
    .hero__art-wrap { left: 22%; }
    .works-showcase .work-card { grid-column: span 6; }
    .work-card--tall { min-height: 620px; }
    .manifesto-grid,
    .bio-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .portrait-frame { min-height: 760px; }
    .bio-sticky { position: relative; top: auto; max-width: 620px; }
    .gallery-grid .work-card,
    .gallery-grid .work-card:nth-child(n) { grid-column: span 6; }
    .lightbox { grid-template-columns: 1fr; overflow-y: auto; }
    .lightbox__figure { min-height: 64svh; padding: 28px; }
    .lightbox__figure img { max-height: 58svh; }
    .lightbox__panel { padding: 46px 28px; }
    .lightbox__close { position: fixed; z-index: 2; background: rgba(0,0,0,.65); color: white; border-color: var(--line); }
    .timeline__item { grid-template-columns: 120px 1fr; }
    .timeline__item p { grid-column: 2; }
    .stories .story,
    .stories .story--wide { grid-column: span 6; }
    .private-hero { min-height: auto; grid-template-columns: 1fr; padding-top: 150px; }
    .private-hero__copy { max-width: 700px; }
    .private-kicker { margin-bottom: 60px; }
    .private-hero__visuals { min-height: 760px; }
    .private-statement__grid,
    .private-motion__head { grid-template-columns: 110px 1fr; }
    .private-statement__grid > p,
    .private-motion__head > p { grid-column: 2; }
}

@media (max-width: 760px) {
    :root { --radius: 20px; }
    .site-header { height: 76px; padding-inline: 18px; }
    .site-header.is-scrolled { height: 68px; }
    .brand strong { font-size: 22px; }
    .menu-toggle { width: 46px; height: 46px; }
    .hero { padding: 120px 20px 34px; min-height: 100svh; }
    .hero__ambient { opacity: .18; }
    .hero__shade { background: linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.28) 100%); }
    .hero__art-wrap { inset: 5% 0 28%; }
    .hero__art { object-position: center top; }
    .hero__content { width: 100%; }
    .hero h1 { max-width: 420px; font-size: clamp(34px, 10.5vw, 48px); }
    .hero__bottom { align-items: flex-start; flex-direction: column; margin-top: 24px; }
    .scroll-cue { display: none; }
    .chapter { padding-inline: 20px; }
    .heading-row { align-items: flex-start; flex-direction: column; }
    .works-showcase,
    .gallery-grid { display: block; }
    .works-showcase .work-card,
    .gallery-grid .work-card { min-height: 560px; margin-bottom: 16px; }
    .works-showcase .work-card--wide { min-height: 420px; }
    .work-card[data-fit="contain"] img { padding: 18px; }
    .manifesto-grid { gap: 44px; }
    .portrait-frame { min-height: 560px; }
    .technique-stage { min-height: 760px; padding: 28px; }
    .technique-stage > img { object-position: 60% center; }
    .principles { grid-template-columns: 1fr; }
    .expo-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 220px 280px; }
    .expo-collage figure:first-child { grid-column: span 2; grid-row: auto; }
    .expo-collage figure:last-child { grid-column: span 2; }
    .page-hero { min-height: 72svh; padding: 130px 20px 42px; }
    .page-hero h1 { font-size: clamp(34px, 9.5vw, 46px); }
    .media-zoom { top: 12px; right: 12px; width: 40px; height: 40px; }
    .hero__art-wrap .media-zoom,
    .page-hero__media .media-zoom { top: 88px; right: 18px; }
    .media-lightbox { padding: 72px 16px 28px; }
    .media-lightbox__image { max-height: calc(100svh - 150px); }
    .media-lightbox__caption { font-size: 11px; }
    .media-lightbox__close { top: 14px; right: 14px; }
    .media-lightbox__nav { top: auto; bottom: 18px; transform: none; }
    .media-lightbox__nav--prev { left: 16px; }
    .media-lightbox__nav--next { right: 16px; }
    .material-grid,
    .knife-grid { grid-template-columns: 1fr; }
    .material-card { min-height: 350px; }
    .knife-grid figure,
    .knife-grid figure:last-child { min-height: 440px; }
    .timeline__item { grid-template-columns: 1fr; gap: 12px; }
    .timeline__item p { grid-column: 1; }
    .stories { display: block; }
    .story { margin-bottom: 18px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .site-footer { padding-inline: 20px; }
    .site-footer__top { grid-template-columns: 1fr; gap: 38px; margin-bottom: 56px; }
    .site-footer__bottom { flex-direction: column; }
    .private-hero { gap: 58px; padding: 118px 20px 50px; }
    .private-kicker { margin-bottom: 46px; }
    .private-hero h1 { font-size: clamp(38px, 13vw, 52px); }
    .private-hero__actions { align-items: flex-start; flex-direction: column; }
    .private-hero__visuals { min-height: 590px; }
    .private-hero__master { inset: 0 8% 13% 0; }
    .private-hero__inset { width: 47%; height: 34%; border-width: 5px; }
    .private-hero__seal { top: -26px; right: 0; width: 78px; height: 78px; }
    .private-hero__seal strong { font-size: 26px; }
    .private-hero__seal span { font-size: 6px; }
    .private-statement,
    .private-selection,
    .private-motion { padding: 100px 20px; }
    .private-statement__grid,
    .private-motion__head { grid-template-columns: 1fr; gap: 32px; }
    .private-statement__grid > p,
    .private-motion__head > p { grid-column: 1; }
    .private-selection__head { align-items: flex-start; flex-direction: column; gap: 32px; margin-bottom: 70px; }
    .private-gallery { display: block; }
    .private-piece,
    .private-piece:nth-child(n) { margin: 0 0 76px; }
    .private-piece img { aspect-ratio: auto; }
    .private-quote { padding: 110px 20px; }
    .private-films { display: block; }
    .private-film,
    .private-film--large { min-height: 480px; margin-bottom: 18px; }
    .private-invitation { min-height: 720px; padding: 100px 20px; }
    .private-invitation h2 { font-size: clamp(34px, 11vw, 48px); }
    .private-invitation__actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
