:root {
  --ink: #111010;
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --accent-1: #ff4d2e;
  --accent-2: #f7c948;
  --accent-3: #2d5bff;
  --accent-4: #ff7ab8;
  --accent-5: #1b6d4a;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --display: "Syne", "Archivo", sans-serif;
  --edge: 1px solid rgba(17,16,16,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    mix-blend-mode 0.2s ease;
}
.cursor.grow {
  width: 88px; height: 88px;
  mix-blend-mode: normal;
}
.cursor.grow.c-hero    { background: var(--accent-2); }
.cursor.grow.c-oeuvres { background: var(--accent-1); }
.cursor.grow.c-series  { background: var(--accent-4); }
.cursor.grow.c-histoire{ background: var(--accent-5); }
.cursor.grow.c-contact { background: var(--accent-3); }
.cursor.grow.c-ink     { background: var(--ink); }
.cursor.grow.c-paper   { background: var(--paper); }
.cursor.grow:not([class*="c-"]) { background: var(--accent-1); }

/* ---------- LOADER ---------- */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
}
.loader__inner {
  font-size: clamp(40px, 8vw, 120px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.03em;
  overflow: hidden;
}
.loader__inner span { display: inline-block; }

/* ---------- LOGO ---------- */
.logo-svg {
  display: block;
  height: 24px;
  width: auto;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.logo-svg path,
.logo-svg rect { fill: currentColor; }

.logo-img {
  display: block;
  height: 65px;
  width: auto;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.logo-img--light { display: none; }
nav.is-scrolled .logo-img--dark  { display: none; }
nav.is-scrolled .logo-img--light { display: block; }
nav.is-scrolled .logo-img        { height: 65px; }

.loader__logo {
  width: clamp(220px, 38vw, 460px);
  max-width: 80vw;
  height: auto;
  display: block;
}

.foot-logo-img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 40px;
  color: var(--ink);
  transition:
    background 0.55s cubic-bezier(0.77, 0, 0.175, 1),
    color 0.55s cubic-bezier(0.77, 0, 0.175, 1),
    padding 0.55s cubic-bezier(0.77, 0, 0.175, 1),
    border-color 0.55s ease;
  border-bottom: 1px solid transparent;
}
.nav__left, .nav__right { display: flex; gap: 32px; }
.nav__left { justify-content: flex-start; }
.nav__right { justify-content: flex-end; }
.nav__center { display: flex; justify-content: center; align-items: center; }

nav a.nav__link {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
nav a.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
nav a.nav__link:hover::after { width: 100%; }
nav a.nav__link.is-active::after { width: 100%; }

nav.is-scrolled {
  background: #0b0a0a;
  color: var(--paper);
  padding: 14px 40px;
  border-bottom-color: rgba(244,239,230,0.08);
  backdrop-filter: blur(8px);
}
nav.is-scrolled .logo-svg { height: 28px; }

/* Solid nav variant for inner pages (no hero).
   On utilise :not(.is-scrolled) pour que la barre noire scrollée
   conserve ses propres styles (fond noir + texte clair) sans être
   réécrasée par cette règle. */
nav.is-solid:not(.is-scrolled) {
  background: var(--paper);
  border-bottom-color: rgba(17,16,16,0.08);
}

/* ---------- BURGER + MOBILE MENU ---------- */
.nav__burger {
  display: none;             /* visible uniquement < 900px (cf. media query) */
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 10px 9px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 102;
  color: inherit;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1), opacity 0.25s ease;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0b0a0a;
  color: var(--paper);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 30px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}
.mobile-menu a {
  color: var(--paper);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 9vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  padding: 6px 0;
}
.mobile-menu a em { font-style: italic; color: var(--accent-2); }
body.menu-open { overflow: hidden; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__fluid {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(0,0,0,0.55), 0 0 2px rgba(0,0,0,0.4);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 14vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--paper);
  text-shadow: 0 2px 28px rgba(0,0,0,0.45), 0 0 4px rgba(0,0,0,0.3);
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero__title .word span { display: inline-block; }
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-2);
}
.hero__title .stroke {
  -webkit-text-stroke: 1.5px var(--paper);
  color: transparent;
  text-shadow: none;
}
.hero__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 80px;
  gap: 40px;
  flex-wrap: wrap;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(0,0,0,0.55), 0 0 2px rgba(0,0,0,0.4);
}
.hero__intro {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.55;
}
.hero__intro::first-letter {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--accent-2);
  padding-right: 4px;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__scroll .line {
  width: 60px; height: 1px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero__scroll .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-2);
  animation: sweep 2.4s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes sweep {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: var(--edge);
  border-bottom: var(--edge);
  padding: 22px 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: slide 30s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: -0.02em;
}
.marquee__track span { display: flex; align-items: center; gap: 60px; }
.marquee__track .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-2);
  display: inline-block; flex-shrink: 0;
}
.marquee__track .dot.b { background: var(--accent-1); }
.marquee__track .dot.c { background: var(--accent-4); }
.marquee__track .dot.d { background: var(--accent-3); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- SECTIONS ---------- */
.sections {
  position: relative;
  z-index: 2;
  background: var(--paper);
  padding: 140px 40px;
}
.sections__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 100px;
  align-items: end;
}
.sections__kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 20px;
}
.sections__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.sections__title em { font-style: italic; color: var(--accent-3); }
.sections__lead {
  font-size: 15px;
  line-height: 1.6;
  max-width: 380px;
  justify-self: end;
  color: rgba(17,16,16,0.75);
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  overflow: hidden;
  padding: 40px 32px;
  min-height: 380px;
  border: var(--edge);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper-2);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover { transform: translateY(-4px); }
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}
.card__top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 60px;
}
.card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.card__title em { font-style: italic; }
.card__desc {
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
  opacity: 0.75;
  margin-bottom: 28px;
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
}
.card__cta .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.card:hover .card__cta .arrow { transform: translateX(8px); }

.card--oeuvres { grid-column: span 7; background: var(--accent-1); color: var(--paper); min-height: 460px; }
.card--series { grid-column: span 5; background: var(--ink); color: var(--paper); }
.card--histoire { grid-column: span 5; background: var(--accent-2); }
.card--contact { grid-column: span 7; background: var(--accent-3); color: var(--paper); }

.card__glyph {
  position: absolute;
  right: -20px; bottom: -60px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 360px;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

/* ---------- FEATURED WORKS ---------- */
.strip {
  position: relative;
  z-index: 2;
  padding: 120px 40px;
  background: var(--paper-2);
  border-top: var(--edge);
}
.strip__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.strip__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
}
.strip__title em { font-style: italic; color: var(--accent-1); }
.strip__count {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.5;
}
.works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: var(--edge);
  cursor: none;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper-2);
}
.work:hover { transform: scale(1.015); }
.work svg { width: 100%; height: 100%; display: block; }
.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work__caption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--ink);
  background: rgba(244, 239, 230, 0.9);
  padding: 4px 10px;
}
.work__tag {
  position: absolute;
  right: 12px; top: 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 8px;
}
.work__tag.sold { background: var(--accent-1); }
.work__tag.reserved { background: var(--accent-3); }

/* ---------- FOOTER ---------- */
footer {
  position: relative;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  padding: 120px 40px 40px;
  border-top: var(--edge);
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  margin-bottom: 40px;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.5;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.foot-col a:hover { color: var(--accent-1); }

.foot-logo-wrap {
  text-align: center;
  padding: 20px 0 40px;
}
.foot-logo {
  display: block;
  width: 100%;
  max-width: 1500px;
  height: auto;
  margin: 0 auto;
}
.foot-logo path,
.foot-logo rect { fill: var(--ink); }

.foot-flourish {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 40px;
}
.foot-flourish .dash { width: 40px; height: 1px; background: currentColor; }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 12px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 16px;
  border-top: var(--edge);
}

/* ===================================================
   INNER PAGES — shared
   =================================================== */
.page {
  padding: 160px 40px 80px;
  min-height: 60vh;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.page__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: var(--edge);
}
.page__kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 18px;
}
.page__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.page__title em { font-style: italic; color: var(--accent-1); }
.page__lead {
  font-size: 15px;
  line-height: 1.65;
  max-width: 420px;
  color: rgba(17,16,16,0.78);
  justify-self: end;
}
.page__lead::first-letter {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--accent-1);
  padding-right: 4px;
}

.crumbs {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--accent-1); }
.crumbs .sep { opacity: 0.5; }

/* ---------- OEUVRES GRID ---------- */
.oeuvres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.oeuvres-grid .work { aspect-ratio: 3/4; }

.filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filters a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(17,16,16,0.18);
  border-radius: 30px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.filters a:hover { border-color: var(--ink); }
.filters a.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.empty-state {
  padding: 80px 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  opacity: 0.6;
}

/* ---------- SERIES GRID ---------- */
.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.serie-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper-2);
  border: var(--edge);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  aspect-ratio: 16/10;
}
.serie-card:hover { transform: translateY(-4px); }
.serie-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.serie-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,16,16,0.05) 0%, rgba(17,16,16,0.75) 100%);
  z-index: 1;
}
.serie-card__inner {
  position: relative;
  z-index: 2;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
}
.serie-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.serie-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.serie-card__title em { font-style: italic; color: var(--accent-2); }
.serie-card__count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}

/* ---------- OEUVRE DETAIL ---------- */
.oeuvre {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.oeuvre__gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.oeuvre__hero {
  width: 100%;
  border: var(--edge);
  background: var(--paper-2);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.oeuvre__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.oeuvre__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.oeuvre__thumbs button {
  aspect-ratio: 1;
  background: var(--paper-2);
  border: 1px solid rgba(17,16,16,0.15);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.oeuvre__thumbs button.is-active { border-color: var(--ink); }
.oeuvre__thumbs img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.oeuvre__info { position: sticky; top: 120px; }
.oeuvre__serie {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 18px;
}
.oeuvre__serie a { color: inherit; text-decoration: none; }
.oeuvre__serie a:hover { color: var(--accent-1); }
.oeuvre__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.oeuvre__title em { font-style: italic; color: var(--accent-1); }
.oeuvre__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: var(--edge);
  color: rgba(17,16,16,0.75);
}
.oeuvre__meta strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 4px;
  color: var(--ink);
}
.oeuvre__desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: rgba(17,16,16,0.85);
  white-space: pre-line;
}
.oeuvre__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.oeuvre__price-amount {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 42px;
  letter-spacing: -0.02em;
}
.oeuvre__price-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.4s ease, color 0.4s ease;
  font-family: var(--sans);
}
.btn:hover { background: var(--accent-1); border-color: var(--accent-1); color: var(--paper); }
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17,16,16,0.2);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn[disabled] {
  background: rgba(17,16,16,0.25);
  border-color: transparent;
  cursor: not-allowed;
  color: var(--paper);
}
.btn[disabled]:hover { background: rgba(17,16,16,0.25); }

.status-pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 30px;
  background: var(--accent-5);
  color: var(--paper);
  margin-bottom: 24px;
}
.status-pill.sold { background: var(--accent-1); }
.status-pill.reserved { background: var(--accent-3); }

/* ---------- SERIE DETAIL ---------- */
.serie-hero {
  position: relative;
  min-height: 60vh;
  padding: 200px 40px 80px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.serie-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}
.serie-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17,16,16,0.35) 0%, rgba(17,16,16,0.85) 100%);
}
.serie-hero__inner { max-width: 1200px; }
.serie-hero__kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 24px;
}
.serie-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.serie-hero__title em { font-style: italic; color: var(--accent-2); }
.serie-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  opacity: 0.92;
}

/* ---------- CONTACT ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 22px;
  line-height: 1.1;
}
.contact__info p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(17,16,16,0.78);
}
.contact__info a { color: var(--accent-1); text-decoration: none; }
.contact__info a:hover { text-decoration: underline; }
.contact__details {
  margin-top: 30px;
  padding-top: 24px;
  border-top: var(--edge);
}
.contact__details strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 4px;
  margin-top: 16px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
form.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
form.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.7;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper-2);
  border: 1px solid rgba(17,16,16,0.15);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
form.contact-form textarea { min-height: 160px; resize: vertical; }

.flash {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-left: 3px solid var(--accent-5);
  background: rgba(27,109,74,0.08);
  font-size: 14px;
}
.flash.error {
  border-color: var(--accent-1);
  background: rgba(255,77,46,0.08);
}

/* ---------- HISTOIRE ---------- */
.histoire {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.histoire__side {
  position: sticky;
  top: 120px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  line-height: 1.8;
}
.histoire__body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(17,16,16,0.85);
}
.histoire__body h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 50px 0 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.histoire__body h3:first-child { margin-top: 0; }
.histoire__body p { margin-bottom: 20px; }
.histoire__body .pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  color: var(--accent-1);
  margin: 40px 0;
  padding-left: 30px;
  border-left: 3px solid var(--accent-1);
}

/* ---------- SUCCESS / CANCEL ---------- */
.message-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.message-page__inner {
  max-width: 600px;
  text-align: center;
}
.message-page__kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin-bottom: 24px;
}
.message-page__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.message-page__title em { font-style: italic; color: var(--accent-1); }
.message-page__lead {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: rgba(17,16,16,0.78);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  html, body { cursor: auto; }
  .cursor { display: none; }

  /* Nav mobile : padding figé pour ne pas avoir de saut visuel au scroll.
     Le seul changement entre les deux états est le fond / la couleur. */
  nav {
    padding: 12px 18px;
    grid-template-columns: 1fr;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  }
  nav.is-scrolled { padding: 12px 18px; }
  .nav__left, .nav__right { display: none; }
  .nav__center { justify-content: center; }

  /* Logo plus raisonnable sur mobile */
  .logo-img { height: 44px; }
  nav.is-scrolled .logo-img { height: 44px; }

  .nav__burger { display: flex; }
  .hero { padding: 120px 20px 60px; }
  .sections { padding: 80px 20px; }
  .sections__head { grid-template-columns: 1fr; }
  .sections__lead { justify-self: start; }
  .cards { grid-template-columns: 1fr; }
  .card--oeuvres, .card--series, .card--histoire, .card--contact {
    grid-column: span 1;
    min-height: 340px;
  }
  .strip { padding: 80px 20px; }
  .works { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; padding-bottom: 30px; }
  footer { padding: 80px 20px 30px; }
  .card__glyph { font-size: 240px; bottom: -40px; }

  .page { padding: 110px 20px 60px; }
  .page__head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .page__lead { justify-self: start; }
  .oeuvres-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .series-grid { grid-template-columns: 1fr; }
  .oeuvre { grid-template-columns: 1fr; gap: 40px; }
  .oeuvre__info { position: static; }
  .contact { grid-template-columns: 1fr; gap: 50px; }
  .histoire { grid-template-columns: 1fr; gap: 30px; }
  .histoire__side { position: static; }
  .serie-hero { padding: 130px 20px 50px; min-height: 50vh; }
}
