
/* ══════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink:    #070604;
  --ink2:   #0f0d09;
  --warm:   #f0e6d2;
  --warm60: rgba(240,230,210,.6);
  --warm20: rgba(240,230,210,.2);
  --warm08: rgba(240,230,210,.08);
  --gold:   #c09040;
  --gold40: rgba(192,144,64,.4);
  --gold10: rgba(192,144,64,.1);
  --rust:   #7a2e1a;

  --serif: 'Playfair Display', Georgia, serif;
  --body:  'Cormorant Garamond', Georgia, serif;
  --mono:  'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--warm);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ══════════════════════════════════════
   CURSOR
══════════════════════════════════════ */
#cur {
  position: fixed; z-index: 9999;
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
#cur-ring {
  position: fixed; z-index: 9998;
  width: 34px; height: 34px;
  border: 1px solid var(--gold40); border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  max-width: 100vw;
}
body.hovering #cur      { width: 48px; height: 48px; background: transparent; border: 1px solid var(--gold); }
body.hovering #cur-ring { transform: translate(-50%, -50%) scale(0); opacity: 0; }

/* ══════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════ */
#progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 1px; background: var(--gold);
  transform-origin: left; transform: scaleX(0);
  transition: transform .1s;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 56px;
  background: linear-gradient(180deg, rgba(7,6,4,.85) 0%, transparent 100%);
  backdrop-filter: blur(0px);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 13px; font-style: italic;
  color: var(--warm60); letter-spacing: .04em;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,230,210,.35); text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-date {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .14em; color: rgba(192,144,64,.5);
  text-transform: uppercase;
  display: none;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  height: 100vh; min-height: 680px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 56px 72px; position: relative; z-index: 2;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  opacity: 0; animation: fadeU .8s .3s forwards;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold40); flex-shrink: 0; }

h1.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 900; line-height: .86; letter-spacing: -.03em;
  margin-bottom: 40px;
  opacity: 0; animation: fadeU .9s .5s forwards;
}
h1.hero-title .l1 { display: block; font-style: italic; color: var(--warm); }
h1.hero-title .l2 { display: block; color: var(--warm60); padding-left: 2vw; }

.hero-bottom {
  display: flex; flex-direction: column; gap: 28px;
  opacity: 0; animation: fadeU .8s .8s forwards;
}
.hero-desc { font-size: 15px; font-style: italic; color: var(--warm60); max-width: 300px; line-height: 1.9; }
.hero-scroll {
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(240,230,210,.25); display: flex; align-items: center; gap: 12px;
}
.hero-scroll::before { content: ''; width: 32px; height: 1px; background: var(--warm20); }

.hero-right {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: #0c0a06; overflow: hidden;
}
.hero-right-bg { position: absolute; inset: 0; }
.hero-right-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.1) saturate(.5) blur(3px); transform: scale(1.08);
}

.hero-painting {
  position: relative; z-index: 2; width: 92%; max-width: 800px;
  opacity: 0; animation: heroFrame 1.2s .7s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero-painting-frame {
  padding: 12px;
  background: linear-gradient(145deg, #7a5810, #c8921c, #6e500e, #d4a01e, #7a5810);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.9),
    0 40px 100px rgba(0,0,0,.85),
    0 8px 30px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(220,170,40,.3),
    inset 0 -1px 0 rgba(0,0,0,.5);
  position: relative;
}
.hero-painting-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,200,60,.12) 0%, transparent 35%, transparent 65%, rgba(255,200,60,.06) 100%);
}
.hero-painting-frame img { width: 100%; display: block; position: relative; z-index: 0; }

.hero-painting-label {
  position: absolute; bottom: -36px; right: 0;
  font-family: var(--mono); font-size: 8.5px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(240,230,210,.28);
  display: flex; gap: 14px;
}
.hero-painting-label span { color: var(--gold40); }

.hero-divider {
  position: absolute; top: 12%; bottom: 12%; left: 50%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(192,144,64,.18), transparent);
  pointer-events: none; z-index: 5;
}

@keyframes heroFrame {
  from { opacity: 0; transform: translateY(24px) rotate(-1deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes fadeU {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
  border-top: 1px solid var(--warm08);
  border-bottom: 1px solid var(--warm08);
  overflow: hidden; padding: 16px 0;
  background: rgba(240,230,210,.02);
}
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-item {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(240,230,210,.22); padding: 0 48px; white-space: nowrap;
}
.marquee-item em { color: var(--gold); font-style: normal; margin-right: 10px; }
#bijouterie {
  background: #050403;
  border-top: 1px solid var(--warm08);
  border-bottom: 1px solid var(--warm08);
  padding: 100px 0;
}
.bij-inner { max-width: 1320px; margin: 0 auto; padding: 0 56px; }

.bij-header {
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: start; margin-bottom: 72px;
}
.bij-num {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(64px, 9vw, 140px);
  color: rgba(192,144,64,.06); line-height: 1;
  letter-spacing: -.04em; user-select: none; padding-top: 8px;
}
.bij-eyebrow {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.bij-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold40); flex-shrink: 0; }
.bij-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 24px;
}
.bij-title em { font-style: italic; color: var(--gold); }
.bij-desc { font-size: 15px; line-height: 1.9; color: var(--warm60); max-width: 560px; }

.bij-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.bij-card--wide { grid-column: span 2; }

.bij-card { position: relative; overflow: hidden; cursor: none; }

.bij-img-wrap {
  display: flex; align-items: center; justify-content: center;
  background: #0a0907; padding: 8% 12%; aspect-ratio: 4/3;
  transition: background .4s;
}
.bij-card--wide .bij-img-wrap { aspect-ratio: 16/7; padding: 6% 18%; }
.bij-card:hover .bij-img-wrap { background: #100e0a; }

.bij-img-wrap img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block;
  filter: brightness(.9) contrast(1.05);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .8s;
}
.bij-card:hover .bij-img-wrap img { transform: scale(1.08); filter: brightness(1.05) contrast(1.08); }

.bij-card-label {
  padding: 14px 20px 18px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--warm08);
}
.bij-card-num {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.bij-card-type { font-family: var(--body); font-size: 13px; font-style: italic; color: var(--warm60); }

.bij-footer { margin-top: 48px; display: flex; align-items: center; gap: 24px; }
.bij-footer-line { flex: 1; height: 1px; background: var(--warm08); }
.bij-footer-note {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,230,210,.2); white-space: nowrap;
  white-space: normal;
  word-break: break-word;
}
/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1320px; margin: 0 auto;
  padding: 120px 56px;
  align-items: start;
}
.about-left {}
.about-num {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(72px, 10vw, 160px);
  color: var(--gold10); line-height: 1; letter-spacing: -.04em;
  margin-bottom: -20px; user-select: none;
}
.about-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400; line-height: 1.2;
  margin-bottom: 28px; letter-spacing: -.01em;
}
.about-title em { font-style: italic; color: var(--gold); }
.about-body {
  font-size: 16px; line-height: 1.95;
  color: var(--warm60); margin-bottom: 20px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold40);
  padding: 5px 12px;
}

/* featured image */
.about-img {
  position: sticky; top: 120px;
}
.about-img-frame {
  position: relative; overflow: hidden;
  border: 1px solid var(--warm08);
}
.about-img-frame img {
  width: 100%; display: block;
  filter: brightness(.9) saturate(.95);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .8s;
}
.about-img-frame:hover img { transform: scale(1.04); filter: brightness(1) saturate(1.1); }
.about-img-caption {
  margin-top: 12px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .16em; color: rgba(240,230,210,.3);
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#gallery { padding: 60px 0 100px; }

.gallery-header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 56px 40px;
  border-bottom: 1px solid var(--warm08);
  margin-bottom: 2px;
}
.gallery-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; letter-spacing: -.02em;
}
.gallery-sub {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .2em; color: rgba(240,230,210,.3);
  text-transform: uppercase;
}

/* mosaic layout */
.mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 2px;
}
.tile {
  position: relative; overflow: hidden;
  background: var(--ink2); cursor: none;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .9s;
  filter: brightness(.88) saturate(.9);
}
.tile:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }

/* specific tile sizings */
.tile-a { grid-row: span 2; aspect-ratio: unset; min-height: 500px; }
.tile-b, .tile-c { height: 300px; }
.tile-d, .tile-e, .tile-f { height: 260px; }

.tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,6,4,.92) 0%, transparent 45%);
  opacity: 0; transition: opacity .5s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.tile:hover .tile-overlay { opacity: 1; }
.tile-year {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .22em; color: var(--gold); text-transform: uppercase;
  margin-bottom: 4px;
}
.tile-name {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--warm); line-height: 1.3;
}
.tile-med {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .15em; color: var(--warm60); text-transform: uppercase;
  margin-top: 4px;
}

/* horizontal strip below mosaic */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 2px;
}
.strip-tile { height: 220px; position: relative; overflow: hidden; cursor: none; }
.strip-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .9s; filter: brightness(.85) saturate(.85); }
.strip-tile:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }
.strip-tile .tile-overlay { background: linear-gradient(0deg, rgba(7,6,4,.95) 0%, transparent 55%); }
.strip-tile:hover .tile-overlay { opacity: 1; }

/* ══════════════════════════════════════
   QUOTE
══════════════════════════════════════ */
#quote {
  padding: 100px 56px;
  text-align: center; position: relative;
  border-top: 1px solid var(--warm08);
  border-bottom: 1px solid var(--warm08);
}
.quote-mark {
  font-family: var(--serif); font-size: 100px;
  color: var(--gold10); line-height: .4; user-select: none;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(20px, 3.2vw, 42px);
  font-style: italic; font-weight: 300; line-height: 1.4;
  color: rgba(240,230,210,.8);
  max-width: 900px; margin: 20px auto 36px;
  letter-spacing: -.01em;
}
.quote-attr {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(240,230,210,.28);
}
.quote-attr::before { content: '— '; color: var(--gold); }

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
#timeline { padding: 80px 56px 120px; }
.tl-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400; letter-spacing: -.02em;
  margin-bottom: 72px;
}

.tl { position: relative; }
.tl::before {
  content: '';
  position: absolute; left: 140px; top: 0; bottom: 0;
  width: 1px; background: var(--warm08);
}
.tl-row {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 48px; margin-bottom: 52px; position: relative;
}
.tl-row::before {
  content: '';
  position: absolute; left: 137px; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(192,144,64,.12);
}
.tl-year {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: var(--gold40); line-height: 1; padding-top: 2px;
  text-align: right; padding-right: 0;
}
.tl-body {}
.tl-event {
  font-family: var(--serif); font-size: 18px; font-style: italic;
  color: var(--warm); margin-bottom: 4px; line-height: 1.3;
}
.tl-place {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,230,210,.3);
}

/* ══════════════════════════════════════
   FULL-BLEED PAINTING INTERLUDE
══════════════════════════════════════ */
.interlude {
  position: relative; height: 70vh; overflow: hidden;
}
.interlude img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.7) saturate(.9);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.interlude:hover img { transform: scale(1); }
.interlude-label {
  position: absolute; bottom: 40px; left: 56px;
  font-family: var(--serif); font-size: clamp(28px, 4vw, 52px);
  font-style: italic; font-weight: 400;
  color: var(--warm); line-height: 1.1;
  text-shadow: 0 2px 40px rgba(7,6,4,.8);
}
.interlude-label small {
  display: block;
  font-family: var(--mono); font-size: 9px;
  font-style: normal; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.interlude-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(7,6,4,.7) 0%, transparent 50%),
    linear-gradient(90deg, rgba(7,6,4,.3) 0%, transparent 60%);
}
/* ══════════════════════════════════════
   CUBISME
══════════════════════════════════════ */
#cubisme {
  border-top: 1px solid var(--warm08);
  border-bottom: 1px solid var(--warm08);
  padding: 100px 0;
  background: linear-gradient(180deg, var(--ink2) 0%, var(--ink) 100%);
}
.cub-inner { max-width: 1320px; margin: 0 auto; padding: 0 56px; }

.cub-header {
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: start; margin-bottom: 64px;
}
.cub-num {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(64px, 9vw, 140px);
  color: var(--gold10); line-height: 1;
  letter-spacing: -.04em; user-select: none; padding-top: 8px;
}
.cub-eyebrow {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.cub-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold40); flex-shrink: 0; }
.cub-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 24px;
}
.cub-title em { font-style: italic; color: var(--gold); }
.cub-desc {
  font-size: 16px; line-height: 1.9;
  color: var(--warm60); max-width: 580px;
}

/* Grille : grande carte à gauche, 4 petites à droite */
.cub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.cub-card--large {
  grid-row: span 2;
}

.cub-card { position: relative; overflow: hidden; cursor: none; }

.cub-img {
  width: 100%; overflow: hidden;
  aspect-ratio: 4/3;
}
.cub-card--large .cub-img { aspect-ratio: unset; height: 100%; }

.cub-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.88) saturate(.95);
  transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .9s;
}
.cub-card:hover .cub-img img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

.cub-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(0deg, rgba(7,6,4,.9) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 3px;
  opacity: 0; transition: opacity .4s;
}
.cub-card:hover .cub-card-label { opacity: 1; }
.cub-card-year {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .2em; color: var(--gold); text-transform: uppercase;
}
.cub-card-title {
  font-family: var(--serif); font-size: 17px;
  font-style: italic; color: var(--warm);
}
.cub-card-med {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .15em; color: var(--warm60); text-transform: uppercase;
}

/* Footer */
.cub-footer {
  margin-top: 48px;
  display: flex; align-items: center; gap: 24px;
}
.cub-footer-line { flex: 1; height: 1px; background: var(--warm08); }
.cub-footer-link {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; white-space: nowrap;
  transition: color .3s;
}
.cub-footer-link:hover { color: var(--warm); }

@media (max-width: 900px) {
  .cub-inner { padding: 0 24px; }
  .cub-header { grid-template-columns: 1fr; gap: 24px; }
  .cub-grid { grid-template-columns: 1fr 1fr; }
  .cub-card--large { grid-row: span 1; }
}

/* ══════════════════════════════════════
   NUS
══════════════════════════════════════ */
#nus {
  border-bottom: 1px solid var(--warm08);
  padding: 100px 0;
}
.nus-inner { max-width: 1320px; margin: 0 auto; padding: 0 56px; }

.nus-header { margin-bottom: 56px; }
.nus-eyebrow {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.nus-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold40); flex-shrink: 0; }
.nus-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.nus-title em { font-style: italic; color: var(--gold); }
.nus-desc {
  font-size: 16px; line-height: 1.9;
  color: var(--warm60); max-width: 640px;
}

/* Grille */
.nus-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2px;
  align-items: start;
}
.nus-col { display: flex; flex-direction: column; gap: 2px; }

.nus-card { position: relative; overflow: hidden; cursor: none; }
.nus-card--tall .nus-img { aspect-ratio: 3/4; }
.nus-img { overflow: hidden; aspect-ratio: 4/3; }
.nus-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.88) saturate(.95);
  transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .9s;
}
.nus-card:hover .nus-img img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.05);
}

.nus-label {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--warm08);
  display: flex; justify-content: space-between; align-items: baseline;
  background: var(--ink2);
}
.nus-year {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .14em; color: var(--gold); flex-shrink: 0;
}
.nus-name {
  font-family: var(--body); font-size: 13px;
  font-style: italic; color: var(--warm60);
}

@media (max-width: 900px) {
  .nus-inner { padding: 0 24px; }
  .nus-grid { grid-template-columns: 1fr; }
  .nus-card--tall .nus-img { aspect-ratio: 4/3; }
}

/* ══════════════════════════════════════
   VISIONS
══════════════════════════════════════ */
#visions {
  border-bottom: 1px solid var(--warm08);
  padding: 100px 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink2) 100%);
}
.vis-inner { max-width: 1320px; margin: 0 auto; padding: 0 56px; }

.vis-header { margin-bottom: 56px; }
.vis-eyebrow {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.vis-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold40); flex-shrink: 0; }
.vis-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.vis-title em { font-style: italic; color: var(--gold); }
.vis-desc {
  font-size: 16px; line-height: 1.9;
  color: var(--warm60); max-width: 640px;
}

/* Grille 2x2, les deux du haut plus larges */
.vis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.vis-card--wide { /* les deux du haut prennent toute la largeur colonne */ }

.vis-card { position: relative; overflow: hidden; cursor: none; }
.vis-img { overflow: hidden; aspect-ratio: 16/9; }
.vis-card:not(.vis-card--wide) .vis-img { aspect-ratio: 4/3; }

.vis-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.85) saturate(.9);
  transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .9s;
}
.vis-card:hover .vis-img img {
  transform: scale(1.04);
  filter: brightness(.95) saturate(1.05);
}

.vis-label {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--warm08);
  background: var(--ink2);
  display: flex; align-items: baseline;
  gap: 14px;
}
.vis-year {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .14em; color: var(--gold); flex-shrink: 0;
}
.vis-name {
  font-family: var(--serif); font-size: 15px;
  font-style: italic; color: var(--warm); flex: 1;
}
.vis-med {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(240,230,210,.28); flex-shrink: 0;
}

@media (max-width: 900px) {
  .vis-inner { padding: 0 24px; }
  .vis-grid { grid-template-columns: 1fr; }
  .vis-img { aspect-ratio: 4/3 !important; }
}
/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--warm08);
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--warm60);
}
.footer-copy {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(240,230,210,.2);
}
.footer-cta {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold40);
  padding: 12px 24px; text-decoration: none;
  transition: background .3s, color .3s;
}
.footer-cta:hover { background: var(--gold); color: var(--ink); }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.25,.46,.45,.94),
              transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes fadeU {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  #hero { padding: 0 24px 48px; }
  #about { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .about-img { position: static; }
  .gallery-header { padding: 0 24px 32px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .tile-a { grid-column: span 2; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  #quote, #timeline, footer { padding-left: 24px; padding-right: 24px; }
  .tl::before { left: 80px; }
  .tl-row { grid-template-columns: 80px 1fr; gap: 24px; }
  .tl-row::before { left: 77px; }
  .interlude-label { left: 24px; }
}/* ── Burger ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
  position: relative;
}

.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-date {
    display: none;
  }

  .nav-links {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    background: var(--ink);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 80px 24px 40px;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-links.open li {
    width: 100%;
    text-align: center;
  }

  .nav-links.open a {
    font-family: var(--serif);
    font-size: clamp(22px, 5vw, 36px);
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--warm60);
    text-decoration: none;
    display: block;
    padding: 8px 24px;
  }

  .nav-links.open a:hover {
    color: var(--gold);
  }
}