:root {
  /* Gallimard Collection Blanche palette */
  --paper: #f3ead4;      /* iconic cream / ivory */
  --paper-elev: #f8f1de;
  --paper-soft: #efe6cd;
  --ink: #14110b;
  --ink-soft: #3a342a;
  --ink-mute: #76695200;
  --ink-mute-solid: #807358;
  --rule: #1a1611;
  --red: #b41e2a;        /* Gallimard red */
  --red-deep: #8e1620;
  --red-soft: #d0414c;

  --display: 'Playfair Display', 'GFS Didot', 'Bodoni 72', 'Didot', 'Apple Garamond', Georgia, serif;
  --serif: 'EB Garamond', 'Iowan Old Style', 'Apple Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --maxw: 1240px;
  --shadow-book: 0 30px 70px rgba(30,16,4,.22), 0 8px 22px rgba(30,16,4,.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt";
  line-height: 1.6;
  font-size: 17px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }

::selection { background: var(--red); color: var(--paper); }

em { font-style: italic; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--red);
  color: #f5ead0;
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.topbar-text { white-space: nowrap; }

/* ---------- Nav ---------- */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(0px);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.brand-mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--red);
  background: var(--paper);
}
.brand-name { line-height: 1; }
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding-bottom: 2px;
  transition: color .2s ease;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover:after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .14s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red);
  color: #f5ead0;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 14px 8px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
}
.btn-link:hover { color: var(--red); border-bottom-color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 32px 110px;
  text-align: center;
  position: relative;
}
.hero:before, .hero:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 56px;
  background: var(--rule);
  transform: translateX(-50%);
}
.hero:before { top: 0; }
.hero:after  { bottom: 0; }

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero-frame {
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  position: relative;
  padding: 0;
  margin: 0 auto 48px;
}
.hero-frame:before, .hero-frame:after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--red);
}
.hero-frame:before { top: 6px; }
.hero-frame:after  { bottom: 6px; }

.hero-frame-inner {
  padding: 56px 24px 64px;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  margin: 6px 0;
}

.hero-author {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--ink);
}

.hero-rule {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.hero-rule span {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--rule);
  position: relative;
}
.hero-rule span:before, .hero-rule span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}
.hero-rule span:before { left: -10px; }
.hero-rule span:after  { right: -10px; }

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 14px 0;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
}

.hero-kind {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  margin: 22px 0 0;
  letter-spacing: 0.04em;
}

.hero-monogram {
  margin: 36px auto 0;
  width: 64px;
  height: 64px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-monogram:before, .hero-monogram:after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--rule);
}
.hero-monogram-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--red);
}

.hero-lede {
  max-width: 56ch;
  margin: 0 auto 36px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Sections ---------- */
.section { padding: 120px 32px; position: relative; }
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.overline {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--red);
  margin: 0 0 28px;
}
.overline-light { color: var(--red-soft); }

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.012em;
  margin: 0 0 36px;
  color: var(--ink);
}
.h2 em { font-style: italic; }
.h2-center { text-align: center; }

/* ---------- Le roman ---------- */
.section-roman {
  background: var(--paper-elev);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.roman-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 88px;
  align-items: start;
}
.cover-figure {
  margin: 0;
  position: sticky;
  top: 110px;
}
.cover-img {
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-book);
}
.cover-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  max-width: 420px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute-solid);
}
.cover-label { color: var(--red); }

.prose-lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 30ch;
}
.prose-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 48ch;
}
.prose-body em { color: var(--ink); font-style: italic; }

.data {
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  max-width: 560px;
}
.data > div { display: flex; flex-direction: column; gap: 4px; }
.data dt {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.data dd {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.005em;
}

/* ---------- L'autrice ---------- */
.section-author {
  background: var(--paper);
  text-align: left;
}
.autrice-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.autrice-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.autrice-body {
  max-width: 60ch;
}
.autrice-lead {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 32px;
}
.autrice-para {
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.autrice-para em { color: var(--ink); font-style: italic; }
.autrice-body .pullquote {
  margin: 48px 0 0;
  max-width: 28ch;
}

.autrice-side {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: sticky;
  top: 110px;
}
.autrice-side-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.autrice-side-title {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--rule);
}
.autrice-timeline {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.autrice-timeline > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.autrice-timeline > div:last-child { border-bottom: 0; }
.autrice-timeline dt {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--red);
  letter-spacing: 0.005em;
  line-height: 1;
}
.autrice-timeline dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.autrice-timeline dd em { color: var(--ink); font-style: italic; }

.author-contact-compact { max-width: none; }
.author-contact-compact .author-line {
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 14px 4px;
}
.author-contact-compact .author-line-handle {
  font-size: 16px;
}
.author-contact-compact .author-line-arrow {
  font-size: 16px;
}
.author-contact-compact .author-line:hover {
  padding-left: 10px;
  padding-right: 10px;
}

/* legacy classes kept for backward-compatibility (now unused but harmless) */
.author-grid {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 80px;
  align-items: start;
}
.author-side .overline { margin-top: 8px; }
.pullquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 48px;
  max-width: 22ch;
  position: relative;
}
.quote-mark {
  font-style: normal;
  color: var(--red);
  font-size: 1.1em;
  font-family: var(--display);
  margin: 0 6px;
  vertical-align: -0.05em;
}
.author-bio {
  font-family: var(--serif);
  font-size: 18.5px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 56ch;
}
.author-bio em { color: var(--ink); }
.author-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  max-width: 540px;
}
.author-contact li { border-bottom: 1px solid var(--rule); }
.author-line {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 22px 4px;
  transition: padding .25s ease, background .25s ease, color .25s ease;
}
.author-line:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: rgba(180, 30, 42, 0.04);
}
.author-line-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.author-line-handle {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.005em;
  word-break: break-word;
}
.author-line-arrow {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink-soft);
  transition: transform .25s ease, color .25s ease;
}
.author-line:hover .author-line-handle { color: var(--red); }
.author-line:hover .author-line-arrow { color: var(--red); transform: translateX(8px); }

/* ---------- Entrevues & presse ---------- */
.section-presse {
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.presse-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.presse-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.presse-card {
  background: var(--paper);
  transition: background .25s ease;
  display: flex;
  margin: 0 0 56px;
}
.presse-card:hover { background: var(--paper-elev); }

/* ---------- Archive list (year-grouped press & events) ---------- */
.archive {
  border-top: 1px solid var(--rule);
}
.archive-year {
  padding: 36px 4px 18px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.archive-year-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: var(--red);
  letter-spacing: 0.005em;
}
.archive-year:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  margin-bottom: 6px;
}
.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-list > li { border-bottom: 1px solid var(--rule); }
.archive-item,
.archive-item-static {
  display: grid;
  grid-template-columns: 70px 150px 1fr 36px;
  align-items: baseline;
  gap: 28px;
  padding: 22px 8px;
  transition: padding .25s ease, background .25s ease;
}
.archive-item { color: var(--ink); }
.archive-item:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: rgba(180, 30, 42, 0.04);
}
.archive-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.archive-day {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.archive-month {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--ink-mute-solid);
  margin-top: 4px;
}
.archive-kind {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  align-self: center;
}
.archive-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: center;
}
.archive-title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.archive-title em { font-style: italic; }
.archive-source {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.archive-arrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-soft);
  align-self: center;
  justify-self: end;
  transition: transform .25s ease, color .25s ease;
}
.archive-item:hover .archive-arrow {
  transform: translateX(6px);
  color: var(--red);
}
.archive-item:hover .archive-title { color: var(--red); }

.archive-item-static {
  cursor: default;
  color: var(--ink);
}
.archive-item-static .archive-arrow { display: none; }

/* Events section reuses archive components */
.section-evenements {
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.presse-card-feature {
  background: var(--paper-elev);
  position: relative;
  grid-column: 1 / -1;
  border-right: 0;
  border-bottom: 1px solid var(--rule);
}
.presse-card-feature:before {
  content: "À la une";
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--red);
  padding: 4px 10px;
  z-index: 1;
}
.presse-card-feature .presse-link {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 48px 40px;
}
.presse-card-feature .presse-tag {
  border-bottom: 0;
  padding-bottom: 0;
  align-self: start;
  padding-top: 4px;
}
.presse-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 64ch;
}
.presse-card-feature .presse-title {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}
.presse-card-feature .presse-meta { margin: 0; }
.presse-card-feature .presse-excerpt {
  font-size: 16.5px;
  margin: 0;
}
.presse-card-feature .presse-cta {
  padding-top: 0;
  white-space: nowrap;
}
.presse-link {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 32px 36px;
  height: 100%;
  width: 100%;
  color: var(--ink);
}
.presse-tag {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.presse-kind {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
}
.presse-dur {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute-solid);
}
.presse-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 6px 0 0;
  color: var(--ink);
}
.presse-title em { font-style: italic; }
.presse-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
}
.presse-outlet {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}
.presse-sep { color: var(--ink-mute-solid); }
.presse-excerpt {
  margin: 0;
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.presse-cta {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  transition: transform .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.presse-card:hover .presse-cta { transform: translateX(6px); }

/* ---------- Galerie ---------- */
.section-galerie {
  background: var(--paper-elev);
  border-top: 1px solid var(--rule);
}
.galerie-event {
  margin: 0 0 56px;
}
.galerie-event:last-of-type { margin-bottom: 0; }
.galerie-event-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 36px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--rule);
}
.galerie-event-date {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.galerie-event-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.galerie-event-title em { font-style: italic; }
.galerie-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 4;
  column-gap: 20px;
}
.galerie-item {
  break-inside: avoid;
  margin: 0 0 24px;
  display: block;
}
.galerie-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.galerie-fig img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow-md);
  background: var(--paper);
  border-radius: 2px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.galerie-item:hover .galerie-fig img {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(60,40,10,.16);
}
.galerie-fig {
  gap: 10px;
}
.galerie-fig figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 2px;
}
.galerie-plate {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
}
.galerie-cap {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.38;
}
.galerie-cap em { font-style: normal; }

.galerie-item {
  cursor: zoom-in;
}
.galerie-item:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

/* ---------- Lightbox / Carousel ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 12, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 80px;
  animation: lightbox-fade 0.22s ease-out;
}
.lightbox[hidden] { display: none; }

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-height: 100%;
  max-width: 100%;
  pointer-events: none;
}
.lightbox-img {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  background: #1a1611;
  pointer-events: auto;
}
.lightbox-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #f5ead0;
  text-align: center;
  max-width: 60ch;
  pointer-events: auto;
}
.lightbox-plate {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-soft);
}
.lightbox-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: rgba(245, 234, 208, 0.92);
}
.lightbox-text em { font-style: normal; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: transparent;
  border: 0;
  color: #f5ead0;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 400;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 101;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  top: 22px;
  right: 28px;
  font-size: 42px;
  width: 44px;
  height: 44px;
}
.lightbox-close:hover { color: var(--red-soft); transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  width: 56px;
  height: 56px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover { color: var(--red-soft); transform: translate(-4px, -50%); }
.lightbox-next:hover { color: var(--red-soft); transform: translate(4px, -50%); }

.lightbox-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 234, 208, 0.55);
  z-index: 101;
}

@media (max-width: 720px) {
  .lightbox { padding: 8vh 4vw; }
  .lightbox-img { max-height: 68vh; }
  .lightbox-close { top: 12px; right: 14px; font-size: 34px; }
  .lightbox-prev, .lightbox-next { font-size: 42px; width: 44px; height: 44px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-text { font-size: 14px; }
  .lightbox-plate { font-size: 9.5px; }
}

/* ---------- Libraires ---------- */
.section-libraires {
  background: var(--paper-elev);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.libraires-head { max-width: 640px; margin: 0 auto 64px; }
.libraires-head .h2 { text-align: center; }
.libraires-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  margin: 0;
}
.libraires-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  border-top: 1px solid var(--rule);
  text-align: left;
}
.libraires-list li { border-bottom: 1px solid var(--rule); }
.libraire {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 12px;
  transition: padding .25s ease, background .25s ease;
}
.libraire:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: rgba(180, 30, 42, 0.04);
}
.libraire-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.04em;
}
.libraire-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.libraire-name {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.libraire-loc {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute-solid);
}
.libraire-go {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  transition: transform .25s ease;
}
.libraire:hover .libraire-go { transform: translateX(8px); }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: var(--paper-soft);
  border-top: 4px solid var(--red);
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.3fr 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.foot-col { display: flex; flex-direction: column; gap: 8px; }
.foot-col-right { text-align: right; align-items: flex-end; }
.foot-brand {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: #f5ead0;
}
.foot-tag {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(245,234,208,0.55);
  letter-spacing: 0.04em;
}
.foot-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--red-soft);
  margin-bottom: 6px;
}
.foot-link {
  font-family: var(--serif);
  font-size: 15px;
  color: #f5ead0;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  width: max-content;
  transition: border-color .2s ease, color .2s ease;
}
.foot-link:hover { border-bottom-color: var(--red-soft); color: #fff; }
.foot-copy {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,234,208,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .galerie-grid { columns: 3; column-gap: 18px; }
  .galerie-item { margin-bottom: 20px; }
  .presse-card-feature .presse-link {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 28px;
    align-items: start;
  }
  .presse-card-feature .presse-title { font-size: 28px; }
  .archive-item,
  .archive-item-static {
    grid-template-columns: 56px 1fr 28px;
    grid-template-rows: auto auto;
    gap: 6px 18px;
    padding: 20px 4px;
  }
  .archive-date { grid-row: 1; grid-column: 1; flex-direction: row; align-items: baseline; gap: 6px; }
  .archive-day { font-size: 22px; }
  .archive-month { font-size: 10px; margin-top: 0; letter-spacing: 0.18em; }
  .archive-kind { grid-row: 1; grid-column: 2; align-self: baseline; font-size: 10px; letter-spacing: 0.22em; }
  .archive-body { grid-row: 2; grid-column: 1 / -1; gap: 4px; }
  .archive-title { font-size: 19px; }
  .archive-arrow { grid-row: 1; grid-column: 3; align-self: baseline; font-size: 18px; }
  .archive-item:hover { padding-left: 12px; padding-right: 12px; }
  .roman-grid { grid-template-columns: 1fr; gap: 48px; }
  .cover-figure { position: static; max-width: 360px; margin: 0 auto; }
  .cover-img { max-width: 360px; margin: 0 auto; }
  .cover-caption { margin: 18px auto 0; }
  .author-grid { grid-template-columns: 1fr; gap: 24px; }
  .autrice-grid { grid-template-columns: 1fr; gap: 48px; }
  .autrice-side { position: static; }
  .autrice-head { margin-bottom: 40px; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-col-right { text-align: left; align-items: flex-start; }
}

@media (max-width: 720px) {
  .galerie-grid { columns: 2; column-gap: 14px; }
  .galerie-item { margin-bottom: 16px; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 4px; padding: 10px 22px; }
  .nav-inner { padding: 18px 22px; gap: 18px; }
  .nav-links { gap: 18px; font-size: 11px; letter-spacing: 0.14em; }
  .nav-links a { display: none; }
  .hero { padding: 64px 22px 80px; }
  .hero:before, .hero:after { height: 40px; }
  .hero-frame-inner { padding: 40px 16px 48px; }
  .hero-title { font-size: 60px; }
  .hero-author { font-size: 11px; letter-spacing: 0.3em; }
  .section { padding: 80px 22px; }
  .data { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  .libraire { grid-template-columns: 42px 1fr; gap: 16px; padding: 24px 6px; }
  .libraire-go { grid-column: 2; padding-top: 8px; }
  .libraire-num { font-size: 22px; }
  .author-line { grid-template-columns: 90px 1fr auto; gap: 14px; padding: 18px 4px; }
  .author-line-handle { font-size: 18px; }
  .author-line-arrow { font-size: 18px; }
  .foot-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 22px 36px; }
  .pullquote { font-size: 26px; }
}
