/* ==========================================================================
   Lambert-Lucas — Études linguistiques et textuelles
   Palette reprise du site d'origine : #CA501A · #AC3200 · #E86E38 · #354248
   ========================================================================== */
:root {
  --paper: #f5f0e6;
  --paper-deep: #ebe4d5;
  --card: #fbf8f1;
  --ink: #222222;
  --ink-soft: #4b4a47;
  --mute: #7f807f;
  --slate: #354248;
  --slate-2: #2a353a;
  --orange: #ca501a;
  --rust: #ac3200;
  --orange-soft: #e86e38;
  --rule: rgba(53, 66, 72, .22);
  --rule-strong: rgba(53, 66, 72, .5);

  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --text: "Source Serif 4", "Iowan Old Style", Georgia, serif;

  --gutter: clamp(16px, 4vw, 56px);
  --maxw: 1360px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.6;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* grain de papier */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .5;
  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='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .35  0 0 0 0 .3  0 0 0 0 .22  0 0 0 .09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--orange); color: #fff; }
em, i { font-style: italic; }
sup { line-height: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--slate); color: #fff; padding: 10px 14px; text-decoration: none; }
.skip:focus { top: 12px; }

.sc { font-variant-caps: all-small-caps; letter-spacing: .08em; font-feature-settings: "c2sc", "smcp"; }

/* ------------------------------------------------------------------ header */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h);
  transition: transform .45s var(--ease), background-color .3s, box-shadow .3s;
}
.top.is-scrolled { background: rgba(245, 240, 230, .88); backdrop-filter: blur(10px) saturate(1.1); -webkit-backdrop-filter: blur(10px) saturate(1.1); box-shadow: 0 1px 0 var(--rule); }
.top .wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: block; flex: none; }
.brand img { height: 26px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a, .nav > button {
  position: relative; text-decoration: none; font-size: 15px; line-height: 24px; padding: 8px 10px; color: var(--ink);
  white-space: nowrap; display: inline-flex; align-items: center;
}
.nav a::after, .nav > button::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav > button:hover::after, .nav > button[aria-expanded="true"]::after, .nav a[aria-current]::after, .nav > button.here::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current], .nav > button.here { color: var(--rust); }
.nav > button .chev { display: inline-block; margin-left: 4px; transition: transform .3s var(--ease); font-size: .8em; }
.nav > button[aria-expanded="true"] .chev { transform: rotate(180deg); }
.icon-btn { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; transition: background-color .2s; flex: none; }
.icon-btn:hover { background: rgba(53, 66, 72, .08); }
.icon-btn svg { width: 20px; height: 20px; }
.burger { display: none; }

/* méga-menu collections */
.mega {
  position: fixed; left: 0; right: 0; top: var(--header-h); z-index: 89;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(34, 34, 34, .25);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .55s var(--ease-out), visibility 0s .55s;
  visibility: hidden;
}
.mega.open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .55s var(--ease-out); }
.mega .wrap { padding-block: 28px 36px; }
.mega-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--rule); padding-bottom: 12px; margin-bottom: 18px; }
.mega-head h2 { font-family: var(--display); font-weight: 600; font-size: 28px; margin: 0; color: var(--slate); }
.mega-head a { font-size: 14px; color: var(--rust); }
.mega ol { columns: 3; column-gap: 40px; margin: 0; padding: 0; list-style: none; counter-reset: c; }
.mega li { break-inside: avoid; counter-increment: c; }
.mega li a {
  display: grid; grid-template-columns: 2.2em 1fr; gap: 4px; padding: 6px 0; text-decoration: none; font-size: 15.5px; line-height: 1.35;
  border-bottom: 1px dotted transparent; transition: color .2s;
}
.mega li a::before { content: counter(c, decimal-leading-zero); font-family: var(--display); font-size: 13px; color: var(--mute); padding-top: 2px; }
.mega li a:hover { color: var(--orange); }
.mega li.here a { color: var(--orange); font-weight: 600; }
.mega li.here a::before { content: "¶"; color: var(--orange); font-size: 15px; }

/* menu mobile */
.drawer {
  position: fixed; inset: 0; z-index: 95; background: var(--paper);
  display: flex; flex-direction: column;
  clip-path: circle(0% at calc(100% - 36px) 34px);
  transition: clip-path .7s var(--ease-out), visibility 0s .7s; visibility: hidden;
}
.drawer.open { clip-path: circle(150% at calc(100% - 36px) 34px); visibility: visible; transition: clip-path .7s var(--ease-out); }
.drawer-top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; padding-inline: var(--gutter); border-bottom: 1px solid var(--rule); flex: none; }
.drawer-top img { height: 22px; width: auto; }
.drawer-body { overflow-y: auto; padding: 18px var(--gutter) 40px; flex: 1; }
.drawer-body > a, .drawer-body summary {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--display); font-size: clamp(28px, 8vw, 40px); font-weight: 600; color: var(--slate);
  text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--rule); list-style: none; cursor: pointer;
}
.drawer-body summary::-webkit-details-marker { display: none; }
.drawer-body summary span { font-family: var(--text); font-size: 15px; color: var(--orange); font-weight: 400; }
.drawer-body details[open] summary span { transform: rotate(45deg); }
.drawer-body details ol { list-style: none; margin: 8px 0 12px; padding: 0; }
.drawer-body details li a { display: block; padding: 7px 0; font-size: 16px; text-decoration: none; color: var(--ink-soft); }
.drawer-body details li.here a { color: var(--orange); font-weight: 600; }
.drawer-foot { margin-top: 28px; font-size: 14px; color: var(--mute); }

/* ------------------------------------------------------------------ pages & running heads */
.page { position: relative; }
.runhead {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
  font-size: 13px; color: var(--ink-soft);
  padding-block: 14px; border-bottom: 1px solid var(--rule-strong);
}
.runhead > :last-child { text-align: right; }
.runhead .mark { width: 22px; height: auto; filter: brightness(0); opacity: .78; }
.runhead .rh-c { font-style: italic; font-size: 14px; color: var(--slate); }

.folio {
  position: fixed; right: var(--gutter); bottom: 18px; z-index: 80;
  font-family: var(--display); font-size: 14px; color: var(--slate);
  display: flex; align-items: center; gap: 10px;
  background: rgba(245, 240, 230, .8); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px; border: 1px solid var(--rule); border-radius: 999px;
  opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .4s var(--ease);
}
.folio.show { opacity: 1; transform: none; }
.folio.show.hide-m { opacity: 0; transform: translateY(10px); pointer-events: none; }
.folio .f-n { font-variant-numeric: lining-nums; min-width: 3.4ch; text-align: center; }
.folio .f-t { font-family: var(--text); font-style: italic; font-size: 13px; color: var(--ink-soft); }
.folio .f-n span { display: inline-block; }

/* ------------------------------------------------------------------ hero */
.hero { padding-top: var(--header-h); min-height: 100svh; display: flex; flex-direction: column; }
.hero .wrap { flex: 1; display: flex; flex-direction: column; }
.hero-grid { flex: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(24px, 4vw, 64px); align-items: center; padding-block: clamp(20px, 3.6vh, 48px) clamp(18px, 2.6vh, 34px); }
.crumbs { font-size: 13.5px; color: var(--mute); margin: 0 0 clamp(12px, 2.4vh, 26px); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.crumbs span[aria-hidden] { margin-inline: .45em; color: var(--orange); }

.compose {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.7rem, 7.9vw, 8.6rem);
  line-height: .9;
  letter-spacing: -.018em;
  color: var(--slate);
  margin: 0;
  font-variation-settings: "opsz" 96;
}
.compose .line { display: block; white-space: nowrap; }
.compose .l2 { padding-bottom: .13em; }
.compose .l3 { font-style: italic; font-weight: 500; color: var(--ink); padding-left: .06em; }
.compose .l3 .call { margin-left: .42em; }
.compose .w { position: relative; display: inline-block; }
.compose .ch { display: inline-block; will-change: transform, opacity; }
.js .compose .ch { opacity: 0; }
.js .compose.go .ch { animation: set .95s var(--ease-out) forwards; animation-delay: calc(var(--i) * 34ms + 120ms); }
@keyframes set {
  0% { opacity: 0; transform: perspective(600px) translateY(-.42em) rotateY(180deg); filter: blur(4px); }
  35% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: none; filter: none; }
}

/* appels de note */
.call {
  position: relative; display: inline-block;
  font-family: var(--display); font-style: normal; font-weight: 600;
  font-size: .3em; line-height: 1; vertical-align: super; margin-left: .12em;
  color: var(--orange); text-decoration: none;
  width: 1.5em; height: 1.5em; text-align: center; padding-top: .22em;
  transform: translateY(-.25em);
}
.call:hover, .call.hl { color: var(--rust); }
.js .call .t { opacity: 0; transition: opacity .4s; }
.js .drawn .call .t, .js .call.drawn .t { opacity: 1; }

/* marques de correcteur (tracées en JS, en pixels réels) */
.mk { position: absolute; pointer-events: none; overflow: visible; }
.mk path { fill: none; stroke: var(--orange); stroke-linecap: round; stroke-linejoin: round; }
.js .mk path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.1s var(--ease); }
.js .drawn > .mk path { stroke-dashoffset: 0; }
.js .mk-br.r path { transition-delay: .25s; }

.lead { max-width: 50ch; font-size: clamp(17px, 1.3vw, 19.5px); line-height: 1.55; margin: clamp(20px, 3.4vh, 36px) 0 0; color: var(--ink-soft); }
.lead strong { color: var(--ink); font-weight: 600; }
.ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: clamp(20px, 3.5vh, 34px); }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--orange); color: #fff; text-decoration: none;
  padding: 14px 22px 14px 24px; font-size: 16px; letter-spacing: .01em;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .3s;
}
.btn::before { content: ""; position: absolute; inset: 0; background: var(--rust); z-index: -1; transform: translateY(101%); transition: transform .45s var(--ease); }
.btn:hover::before { transform: none; }
.btn .arr { display: inline-block; transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateY(3px); }
.link-u { position: relative; text-decoration: none; color: var(--rust); font-size: 16px; padding-bottom: 2px; }
.link-u::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform-origin: left; transition: transform .45s var(--ease); }
.link-u:hover::after { transform: scaleX(.3); }

/* livre 3D */
.b3wrap { perspective: 1800px; }
.b3 {
  --d: 26px; --rx: 6deg; --ry: -26deg;
  position: relative; display: block; width: 100%; aspect-ratio: 646 / 1000;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .9s var(--ease-out);
}
.b3 .f, .b3 .bk, .b3 .sd, .b3 .sp { position: absolute; backface-visibility: hidden; }
.b3 .f { inset: 0; transform: translateZ(calc(var(--d) / 2)); background: var(--card); overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06); }
.b3 .f img { width: 100%; height: 100%; object-fit: cover; }
.b3 .f::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.2) 0, rgba(255,255,255,.28) 1.4%, rgba(0,0,0,.06) 3.2%, rgba(0,0,0,0) 7%), linear-gradient(115deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 60%); background-size: 100% 100%, 250% 100%; background-position: 0 0, var(--shine, 120%) 0; pointer-events: none; }
.b3 .bk { inset: 0; transform: rotateY(180deg) translateZ(calc(var(--d) / 2)); background: var(--slate); }
.b3 .sd { top: 1%; bottom: 1%; width: var(--d); right: calc(var(--d) / -2); transform: rotateY(90deg); background: repeating-linear-gradient(90deg, #f6f1e6 0 1px, #dcd4c3 1px 2px); box-shadow: inset 0 0 6px rgba(0,0,0,.18); }
.b3 .sp { top: 0; bottom: 0; width: var(--d); left: calc(var(--d) / -2); transform: rotateY(-90deg); background: linear-gradient(90deg, #e9e2d2, #f7f2e8 50%, #e2dac8); }
.b3-shadow { position: absolute; left: 8%; right: -4%; bottom: -5%; height: 9%; background: radial-gradient(closest-side, rgba(34, 34, 34, .38), transparent); filter: blur(8px); transform: translateZ(-40px); }

.hero-book { width: clamp(200px, 19.5vw, 300px); position: relative; margin-right: clamp(0px, 2vw, 30px); }
.hero-book .b3btn { display: block; width: 100%; position: relative; }
.hero-book .b3 { --ry: -24deg; }
.js .hero-book .b3wrap { opacity: 0; transform: translateY(40px) rotate(4deg); }
.hero-book.in .b3wrap { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1.4s var(--ease-out); transition-delay: .9s; }
.js .hero-book .tag, .js .hero-book figcaption { opacity: 0; transform: translateY(10px); }
.hero-book.in .tag { opacity: 1; transform: rotate(-4deg); transition: opacity .8s, transform .8s var(--ease-out); transition-delay: 1.7s; }
.hero-book.in figcaption { opacity: 1; transform: none; transition: opacity .8s, transform .8s var(--ease-out); transition-delay: 1.9s; }
.hero-book .tag {
  position: absolute; top: -14px; left: -18px; z-index: 5;
  font-family: var(--display); font-style: italic; font-size: 17px; color: var(--orange);
  display: flex; align-items: center; gap: 8px; transform: rotate(-4deg);
}
.hero-book .tag sup { font-style: normal; font-size: 12px; }
.hero-book figcaption { margin-top: 26px; font-size: 14px; line-height: 1.45; color: var(--ink-soft); text-align: left; max-width: 30ch; }
.hero-book figcaption b { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); display: block; }

.footnotes { border-top: 0; padding: 0 0 clamp(18px, 3vh, 30px); position: relative; }
.footnotes::before { content: ""; display: block; width: min(240px, 40%); height: 1px; background: var(--ink); margin-bottom: 12px; transform-origin: left; }
.js .footnotes::before { transform: scaleX(0); transition: transform 1s var(--ease) 1.6s; }
.js .footnotes.in::before { transform: none; }
.footnotes ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 32px; font-size: 13.5px; line-height: 1.45; color: var(--ink-soft); }
.footnotes li { display: grid; grid-template-columns: 1.2em 1fr; transition: color .3s; }
.footnotes li sup { font-family: var(--display); color: var(--orange); font-size: 12px; line-height: 1.6; }
.footnotes li.hl { color: var(--ink); }
.footnotes li.hl em { background: linear-gradient(transparent 62%, rgba(202, 80, 26, .22) 0); }
.js .footnotes li { opacity: 0; transform: translateY(8px); transition: opacity .6s, transform .6s var(--ease), color .3s; }
.js .footnotes.in li { opacity: 1; transform: none; }
.js .footnotes.in li:nth-child(1) { transition-delay: 1.8s, 1.8s, 0s; }
.js .footnotes.in li:nth-child(2) { transition-delay: 1.95s, 1.95s, 0s; }
.js .footnotes.in li:nth-child(3) { transition-delay: 2.1s, 2.1s, 0s; }

/* ------------------------------------------------------------------ bandeau */
.ticker { border-block: 1px solid var(--rule-strong); overflow: hidden; background: var(--paper-deep); padding-block: clamp(10px, 1.6vw, 18px); user-select: none; }
.ticker .track { display: flex; align-items: baseline; width: max-content; animation: tick 70s linear infinite; }
.ticker span {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 4.2vw, 60px); line-height: 1.1; color: var(--slate); white-space: nowrap; padding-right: .5em;
}
.ticker span.p { font-style: normal; font-weight: 400; color: var(--orange); font-size: clamp(20px, 2.9vw, 42px); padding-right: .7em; align-self: center; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ titres de section */
.sec-head { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px 60px; align-items: end; padding-block: clamp(40px, 7vw, 96px) clamp(22px, 3vw, 36px); }
.h2 { white-space: nowrap; font-family: var(--display); font-weight: 700; font-size: clamp(2.5rem, 6.2vw, 6rem); line-height: .95; letter-spacing: -.015em; color: var(--slate); margin: 0; font-variation-settings: "opsz" 96; }
.h2 .w { position: relative; display: inline-block; }
.h2 .count { position: relative; font-size: .34em; font-weight: 600; color: var(--orange); vertical-align: super; margin-left: .15em; display: inline-block; width: 1.9em; height: 1.9em; text-align: center; line-height: 1.9em; }
.h2 em { font-weight: 500; color: var(--ink); }
.sec-head p { margin: 0; max-width: 46ch; color: var(--ink-soft); justify-self: end; font-size: 16.5px; }

/* ------------------------------------------------------------------ barre d'outils */
.toolbar {
  position: sticky; top: var(--header-h); z-index: 30;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  padding-block: 12px; background: rgba(245, 240, 230, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-block: 1px solid var(--rule-strong);
}
.seg { display: flex; align-items: center; gap: 2px; }
.seg-l { font-size: 14px; color: var(--mute); font-style: italic; margin-right: 6px; }
.seg button { font-size: 14.5px; padding: 6px 12px; border: 1px solid transparent; transition: background-color .25s, color .25s, border-color .25s; }
.seg button:hover { border-color: var(--rule-strong); }
.seg button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.seg button[data-filter="open"][aria-pressed="true"] { background: var(--orange); }
.seg button .oa { display: inline-block; font-family: var(--display); font-size: 12px; margin-left: 4px; opacity: .8; }
.search { margin-left: auto; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--ink); padding: 4px 2px; min-width: min(300px, 100%); }
.search svg { width: 17px; height: 17px; flex: none; color: var(--mute); }
.search input { border: 0; background: transparent; font: inherit; font-size: 15.5px; width: 100%; padding: 4px 0; color: var(--ink); outline: none; }
.search input::placeholder { color: var(--mute); font-style: italic; }
.search:focus-within { border-color: var(--orange); }
.search:focus-within svg { color: var(--orange); }
.results { font-size: 14px; color: var(--mute); font-style: italic; margin: 18px 0 0; min-height: 1.6em; }

/* ------------------------------------------------------------------ grille de couvertures */
.grid { --gx: clamp(20px, 3vw, 44px); --cols: 4; list-style: none; margin: 0; padding: 26px 0 clamp(60px, 8vw, 110px); display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: clamp(36px, 4.5vw, 64px) var(--gx); }
.card { position: relative; }
.card-btn { display: block; width: 100%; text-align: left; text-decoration: none; color: inherit; }
.cover { display: block; position: relative; perspective: 1200px; }
.cover .b3 { --ry: 0deg; --rx: 0deg; --d: 18px; transition: transform .7s var(--ease-out); }
.cover .b3 .f { box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 18px 30px -18px rgba(34, 34, 34, .45), inset 0 0 0 1px rgba(0,0,0,.06); }
.card-btn:hover .b3, .card-btn:focus-visible .b3 { --ry: -22deg; --rx: 3deg; transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(-8px); }
.card-btn.tilting .b3 { transition: transform .15s linear; }
.card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-top: 22px; font-size: 13px; color: var(--mute); border-top: 1px solid var(--rule); padding-top: 8px; }
.card .num { font-family: var(--display); color: var(--orange); font-size: 14px; }
.card .new { color: var(--orange); font-style: italic; }
.card .oa-badge { position: absolute; z-index: 3; top: 12px; left: -8px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--orange); padding: 3px 8px; box-shadow: 0 6px 12px -6px rgba(0,0,0,.5); pointer-events: none; }
.card .txt { display: block; }
.card .fk, .card .sub, .card .ex, .card .more { display: none; }
/* carte à la une (1re de la liste) : ligne pleine largeur */
.card.feat { grid-column: 1 / -1; padding-bottom: clamp(34px, 4.5vw, 60px); border-bottom: 1px solid var(--rule-strong); }
.card.feat .card-btn { display: grid; grid-template-columns: calc((100% - (var(--cols) - 1) * var(--gx)) / var(--cols)) minmax(0, 1fr); column-gap: var(--gx); align-items: center; }
.card.feat .txt { padding-bottom: 6px; max-width: 760px; }
.card.feat .meta { display: none; }
.card.feat .fk { display: block; font-family: var(--display); font-style: italic; font-size: clamp(20px, 2.2vw, 30px); color: var(--orange); margin-top: 0; line-height: 1.1; }
.card.feat .t { font-size: clamp(30px, 4vw, 60px); line-height: 1.02; letter-spacing: -.01em; font-weight: 700; color: var(--slate); margin-top: 12px; font-variation-settings: "opsz" 72; }
.card.feat .sub { display: block; font-family: var(--display); font-style: italic; font-size: clamp(18px, 1.8vw, 24px); color: var(--ink); margin-top: 10px; line-height: 1.2; }
.card.feat .a { font-size: 16px; margin-top: 12px; }
.card.feat .ex { display: block; font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin-top: 18px; max-width: 60ch; }
.card.feat .more { display: inline-flex; gap: 10px; margin-top: 20px; color: var(--rust); font-size: 16px; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.card.feat .more span { transition: transform .4s var(--ease); }
.card.feat .card-btn:hover .more span { transform: translateX(5px); }
.card .t { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.18; margin-top: 8px; color: var(--ink); font-variation-settings: "opsz" 28; text-wrap: balance; }
.card .t em { font-weight: 600; }
.card .a { display: block; font-size: 14.5px; color: var(--ink-soft); margin-top: 6px; font-style: italic; }
.card-btn:hover .t { color: var(--rust); }
.card-btn .t { transition: color .3s; }

.js .card.pre { opacity: 0; transform: translateY(40px); }
.card.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform 1s var(--ease-out); }

/* ------------------------------------------------------------------ index */
.index { list-style: none; margin: 0; padding: 18px 0 clamp(60px, 8vw, 110px); counter-reset: none; }
.index[hidden] { display: none; }
.row > a {
  width: 100%; text-align: left; text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 3.2em minmax(0, 1fr) minmax(0, .55fr) 5.5em 1.4em; gap: 20px; align-items: baseline;
  padding: 18px 6px; border-bottom: 1px solid var(--rule);
  transition: background-color .35s, padding .35s var(--ease);
}
.row:first-child > a { border-top: 1px solid var(--rule-strong); }
.row .num { font-family: var(--display); color: var(--orange); font-size: 15px; }
.row .rt { font-family: var(--display); font-size: clamp(19px, 2vw, 28px); line-height: 1.15; font-weight: 600; color: var(--ink); font-variation-settings: "opsz" 40; }
.row .rt small { display: block; font-family: var(--text); font-weight: 400; font-style: italic; font-size: 15px; color: var(--ink-soft); margin-top: 4px; }
.row .ra { font-size: 15px; color: var(--ink-soft); font-style: italic; }
.row .ry { font-size: 14px; color: var(--mute); text-align: right; font-variant-numeric: lining-nums; }
.row .ar { color: var(--orange); transform: translateX(-8px); opacity: 0; transition: transform .35s var(--ease), opacity .35s; }
.row .thumb { display: none; }
.row > a:hover { background: color-mix(in srgb, var(--tint, var(--orange)) 10%, transparent); padding-left: 18px; }
.row > a:hover .ar { opacity: 1; transform: none; }
.peek {
  position: fixed; left: 0; top: 0; z-index: 70; width: 190px; pointer-events: none;
  opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.85) rotate(-4deg); transition: opacity .3s, scale .3s;
  box-shadow: 0 30px 50px -20px rgba(34, 34, 34, .55);
}
.peek.on { opacity: 1; }
.peek img { width: 100%; aspect-ratio: 646/1000; object-fit: cover; }

.empty { text-align: center; padding: 60px 0 100px; font-family: var(--display); font-style: italic; font-size: clamp(22px, 3vw, 32px); color: var(--slate); }
.empty button { font-family: var(--text); font-style: normal; font-size: 15px; color: var(--rust); text-decoration: underline; margin-top: 10px; }

/* ------------------------------------------------------------------ la collection */
.about { background: var(--slate); color: #efeae0; }
.about .runhead { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }
.about .runhead .mark { filter: none; opacity: .9; }
.about .runhead .rh-c { color: #fff; }
.pull {
  margin: 0; padding-block: clamp(50px, 9vw, 130px) clamp(30px, 5vw, 60px);
  font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: clamp(2rem, 5.4vw, 5.2rem); line-height: 1.04; letter-spacing: -.01em; color: #fff;
  max-width: 16ch; text-wrap: balance;
}
.pull .q { color: var(--orange-soft); font-style: normal; }
.pull .w { position: relative; display: inline-block; }
.pull .mk path { stroke: var(--orange-soft); }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px clamp(30px, 5vw, 80px); padding-bottom: clamp(50px, 7vw, 90px); border-bottom: 1px solid rgba(255,255,255,.22); }
.about-grid p { margin: 0 0 1em; font-size: 17.5px; color: rgba(255,255,255,.86); max-width: 52ch; }
.about-grid abbr { text-decoration: none; font-variant-caps: all-small-caps; letter-spacing: .06em; }
.about-grid h3 { font-size: 13px; font-weight: 400; font-style: italic; color: rgba(255,255,255,.6); margin: 0 0 14px; }
.dirs { list-style: none; margin: 0; padding: 0; }
.dirs li { font-family: var(--display); font-size: clamp(20px, 2vw, 26px); line-height: 1.2; color: #fff; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.18); }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.facts li { display: flex; align-items: baseline; gap: 12px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 10px; font-size: 14.5px; color: rgba(255,255,255,.7); }
.facts b { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 3.6vw, 52px); line-height: 1; color: var(--orange-soft); font-variant-numeric: lining-nums; min-width: 2.4ch; }
.propose-link { color: #fff; }
.about .btn { background: var(--orange); }
.about .btn::before { background: #fff; }
.about .btn:hover { color: var(--rust); }

/* frise */
.frise { padding-block: clamp(40px, 6vw, 80px) clamp(60px, 8vw, 110px); }
.frise-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 26px; }
.frise-head h3 { font-family: var(--display); font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); margin: 0; color: #fff; }
.frise-head p { margin: 0; font-size: 14px; color: rgba(255,255,255,.6); font-style: italic; }
.frise-scroll { overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.3) transparent; padding-bottom: 8px; }
.frise-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(78px, 1fr); min-width: 800px; position: relative; }
.frise-track::after { content: ""; position: absolute; left: 0; right: 0; bottom: 34px; height: 1px; background: rgba(255,255,255,.4); transform-origin: left; transform: scaleX(var(--p, 0)); transition: transform 1.6s var(--ease); }
.yr { display: flex; flex-direction: column; justify-content: flex-end; align-items: center; min-height: 290px; position: relative; }
.yr .stack { display: flex; flex-direction: column-reverse; gap: 8px; align-items: center; margin-bottom: 18px; }
.yr .stack button { width: 50px; display: block; transition: transform .4s var(--ease); box-shadow: 0 10px 18px -10px rgba(0,0,0,.6); }
.yr .stack button:hover { transform: translateY(-4px) scale(1.08) rotate(-2deg); }
.yr .stack img { width: 100%; aspect-ratio: 646/1000; object-fit: cover; }
.yr .tick { width: 1px; height: 10px; background: rgba(255,255,255,.55); }
.yr .lbl { font-family: var(--display); font-size: 16px; color: rgba(255,255,255,.85); height: 24px; line-height: 24px; font-variant-numeric: lining-nums; }
.yr.none .lbl { color: rgba(255,255,255,.35); }
.yr.nv .lbl { font-style: italic; color: var(--orange-soft); font-size: 15px; }
.js .yr .stack button { opacity: 0; transform: translateY(20px); }
.frise.in .yr .stack button { opacity: 1; transform: none; transition: opacity .6s, transform .8s var(--ease-out); transition-delay: calc(var(--k) * 90ms + .3s); }
.frise.in .yr .stack button:hover { transform: translateY(-4px) scale(1.08) rotate(-2deg); transition-delay: 0s; }

.propose { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: clamp(28px, 4vw, 44px) 0 clamp(60px, 8vw, 100px); border-top: 1px solid rgba(255,255,255,.22); }
.propose p { margin: 0; font-family: var(--display); font-size: clamp(22px, 2.6vw, 34px); line-height: 1.2; color: #fff; }
.propose p small { display: block; font-family: var(--text); font-size: 14px; color: rgba(255,255,255,.6); margin-top: 8px; word-break: break-all; }

/* ------------------------------------------------------------------ note finale */
.endnote { padding-block: clamp(36px, 5vw, 60px); }
.endnote .fn-rule { width: min(240px, 40%); height: 1px; background: var(--ink); margin-bottom: 14px; }
.endnote p { margin: 0; max-width: 78ch; font-size: 15px; line-height: 1.6; color: var(--ink-soft); display: grid; grid-template-columns: 1.1em 1fr; }
.endnote p sup { color: var(--orange); font-family: var(--display); font-size: 15px; line-height: 1.8; }
.endnote strong { color: var(--ink); font-weight: 600; }
.endnote a { color: var(--rust); font-variant-caps: all-small-caps; letter-spacing: .06em; font-weight: 600; }

/* ------------------------------------------------------------------ pied de page */
.foot { background: var(--slate-2); color: rgba(255,255,255,.78); overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: auto 1fr 1fr 1fr; gap: 40px clamp(30px, 5vw, 80px); padding-block: clamp(50px, 7vw, 90px) 40px; }
.foot .mark-big { width: 92px; height: auto; opacity: .95; }
.foot h3 { font-size: 13px; font-weight: 400; font-style: italic; color: rgba(255,255,255,.5); margin: 0 0 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li a { display: inline-block; padding: 4px 0; text-decoration: none; font-size: 15.5px; color: rgba(255,255,255,.86); transition: color .2s, transform .3s var(--ease); }
.foot li a:hover { color: var(--orange-soft); transform: translateX(4px); }
.foot .addr { font-size: 15px; line-height: 1.6; }
.foot .addr a { color: var(--orange-soft); }
.foot-word {
  font-family: var(--display); font-weight: 800; font-size: clamp(56px, 13vw, 250px); line-height: .78; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.22); white-space: nowrap; text-align: center;
  margin: 10px 0 -0.08em; user-select: none; font-variation-settings: "opsz" 96;
}
.foot-word .fw-in { display: inline-block; }
.foot-word .fw-in span { display: inline-block; transition: color .5s, -webkit-text-stroke-color .5s; }
.foot-word .fw-in span:hover { color: var(--orange); -webkit-text-stroke-color: var(--orange); transition: color 0s; }
.foot-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 30px; padding-block: 18px 22px; border-top: 1px solid rgba(255,255,255,.15); font-size: 13.5px; color: rgba(255,255,255,.55); position: relative; }
.foot-bar a { color: rgba(255,255,255,.8); text-decoration: none; }
.foot-bar a:hover { color: var(--orange-soft); }

/* ------------------------------------------------------------------ fiche livre */
.sheet { position: fixed; inset: 0; z-index: 120; display: none; }
.sheet.show { display: block; }
.sheet-veil { position: absolute; inset: 0; background: rgba(34, 34, 34, .45); opacity: 0; transition: opacity .5s; }
.sheet.open .sheet-veil { opacity: 1; }
.sheet-panel {
  position: absolute; inset: 0 0 0 auto; width: min(1180px, 100%);
  background: var(--paper); display: flex; flex-direction: column;
  clip-path: inset(0 0 0 100%);
  transition: clip-path .75s var(--ease-out);
  box-shadow: -40px 0 80px -40px rgba(0,0,0,.4);
}
.sheet.open .sheet-panel { clip-path: inset(0 0 0 0); }
.sheet-bar { flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 64px; padding-inline: clamp(16px, 3vw, 36px); border-bottom: 1px solid var(--rule-strong); }
.sheet-bar .back { font-size: 15px; display: flex; align-items: center; gap: 8px; }
.sheet-bar .back:hover { color: var(--orange); }
.sheet-count { font-family: var(--display); font-size: 15px; color: var(--mute); font-variant-numeric: lining-nums; }
.sheet-count b { color: var(--orange); font-weight: 600; }
.sheet-nav { display: flex; gap: 4px; }
.sheet-nav button { width: 42px; height: 42px; border: 1px solid var(--rule-strong); display: grid; place-items: center; border-radius: 50%; transition: background-color .25s, color .25s, border-color .25s; }
.sheet-nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.sheet-nav svg { width: 18px; height: 18px; }
.sheet-scroll { flex: 1; overflow-y: auto; overscroll-behavior: contain; }
.sheet-body { display: grid; grid-template-columns: minmax(240px, 380px) minmax(0, 1fr); gap: clamp(30px, 5vw, 80px); padding: clamp(28px, 4vw, 56px) clamp(16px, 4vw, 60px) 80px; }
.sheet-left { position: relative; }
.sheet-left .sticky { position: sticky; top: 28px; }
.sheet .b3wrap { width: min(100%, 300px); margin-inline: auto; }
.sheet .b3 { --ry: 0deg; --rx: 0deg; --d: 24px; }
.sheet .b3.turn { --ry: -20deg; --rx: 4deg; }
.sheet .b3 .f img { transition: opacity .2s; }

.bristol {
  margin-top: 44px; background: var(--card); position: relative;
  padding: 16px 20px 34px; font-size: 14.5px;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 16px 28px -20px rgba(34,34,34,.4);
  background-image: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(53, 66, 72, .13) 31px 32px);
  background-position: 0 44px;
  transform: rotate(-1.2deg);
}
.bristol::before { content: ""; position: absolute; left: 0; right: 0; top: 44px; height: 1.5px; background: var(--orange); opacity: .8; }
.bristol::after { content: ""; position: absolute; left: 50%; bottom: 10px; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 1px 2px rgba(0,0,0,.25); }
.bristol h3 { margin: 0 0 13px; font-family: var(--display); font-style: italic; font-weight: 500; font-size: 17px; color: var(--slate); display: flex; justify-content: space-between; }
.bristol h3 span { font-style: normal; font-size: 13px; color: var(--mute); font-family: var(--text); }
.bristol dl { margin: 0; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; }
.bristol dt { color: var(--mute); font-style: italic; line-height: 32px; white-space: nowrap; }
.bristol dd { margin: 0; line-height: 32px; font-variant-numeric: lining-nums tabular-nums; color: var(--ink); text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bristol dd.price { font-weight: 700; font-size: 17px; color: var(--rust); }

.s-kicker { font-size: 13.5px; color: var(--mute); margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; }
.s-kicker .new { color: #fff; background: var(--orange); padding: 1px 8px; font-style: italic; }
.s-kicker .oa { color: #fff; background: var(--slate); padding: 1px 8px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.s-title { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.2vw, 3.7rem); line-height: 1.02; letter-spacing: -.01em; margin: 0; color: var(--slate); text-wrap: balance; font-variation-settings: "opsz" 72; }
.s-title em { font-weight: 600; }
.s-sub { font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.25; color: var(--ink); margin: 14px 0 0; }
.s-people { margin: 24px 0 0; padding: 14px 0; border-block: 1px solid var(--rule); font-size: 16.5px; }
.s-people .role { color: var(--mute); font-style: italic; margin-right: 6px; }
.s-people a { color: var(--ink); text-decoration-color: var(--orange); text-underline-offset: 3px; }
.s-people a:hover { color: var(--orange); }
.s-desc { margin-top: 28px; font-size: 18px; line-height: 1.68; max-width: 64ch; hyphens: auto; }
.s-desc p { margin: 0 0 1.05em; }
.s-desc p:first-child::first-letter { font-family: var(--display); font-weight: 700; float: left; font-size: 4.1em; line-height: .86; padding: .05em .09em 0 0; color: var(--orange); }
.s-desc .bio { display: block; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); border-left: 2px solid var(--orange); padding-left: 16px; }
.s-credit { font-size: 13.5px; font-style: italic; color: var(--mute); margin: 8px 0 0; max-width: 64ch; }
.s-docs { margin-top: 30px; display: grid; gap: 10px; max-width: 520px; }
.s-docs h3 { font-size: 13px; font-weight: 400; font-style: italic; color: var(--mute); margin: 0; }
.doc {
  display: grid; grid-template-columns: 38px 1fr auto; gap: 14px; align-items: center;
  text-decoration: none; padding: 12px 14px; border: 1px solid var(--rule-strong); background: var(--card);
  transition: border-color .25s, transform .35s var(--ease), box-shadow .35s;
}
.doc:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 12px 20px -14px rgba(34,34,34,.5); }
.doc .ic { width: 38px; height: 46px; border: 1px solid var(--rule-strong); display: grid; place-items: end center; padding-bottom: 5px; font-size: 9.5px; letter-spacing: .08em; color: var(--rust); background: linear-gradient(225deg, var(--paper-deep) 9px, #fff 9px); font-weight: 600; }
.doc.open .ic { color: #fff; background: linear-gradient(225deg, var(--rust) 9px, var(--orange) 9px); border-color: var(--orange); }
.doc .lb { font-size: 15.5px; line-height: 1.3; }
.doc .lb small { display: block; color: var(--mute); font-size: 13px; font-style: italic; }
.doc .go { color: var(--orange); }
.s-orig { display: inline-block; margin-top: 34px; font-size: 14.5px; }

.fly { position: fixed; z-index: 130; pointer-events: none; object-fit: cover; box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); transform-origin: 0 0; }

/* ------------------------------------------------------------------ apparitions */
.js [data-reveal] { opacity: 0; transform: translateY(26px); }
.js [data-reveal].in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1.1s var(--ease-out); }

/* ------------------------------------------------------------------ responsive */
@media (max-width: 1100px) {
  .grid { --cols: 3; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-grid > :first-child { grid-column: 1 / -1; }
  .foot-grid { grid-template-columns: auto 1fr 1fr; }
  .foot-grid > :last-child { grid-column: 2 / -1; }
}
@media (max-width: 1180px) {
  .nav { display: none; }
  .burger { display: grid; margin-left: auto; }
  .mega { display: none; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-book { width: min(210px, 46vw); margin: 10px 0 20px auto; margin-right: 10%; }
  .hero-book figcaption { display: none; }
  .footnotes ol { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head p { justify-self: start; }
  .sheet-body { grid-template-columns: 1fr; }
  .sheet-left .sticky { position: static; display: grid; grid-template-columns: minmax(0, 200px) minmax(0, 1fr); gap: 24px; align-items: start; }
  .sheet .b3wrap { width: 100%; margin: 0; }
  .bristol { margin-top: 0; transform: rotate(0); }
  .row > a { grid-template-columns: 2.4em minmax(0, 1fr) 4.4em; }
  .row .ra, .row .ar { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 16.5px; }
  :root { --header-h: 60px; }
  .brand img { height: 21px; }
  .runhead { grid-template-columns: 1fr auto; font-size: 12px; }
  .runhead > :first-child { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 26px; }
  .hero-book { width: 44vw; margin: 16px 6% 26px auto; }
  .hero-book .tag { font-size: 15px; left: -34px; }
  .grid { --cols: 2; --gx: 18px; row-gap: 34px; }
  .card.feat .card-btn { align-items: center; }
  .card.feat .fk { font-size: 18px; }
  .card.feat .t { font-size: 24px; }
  .card.feat .sub { font-size: 16px; }
  .card.feat .a { font-size: 14px; }
  .card.feat .ex { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; font-size: 14.5px; margin-top: 10px; }
  .card.feat .more { font-size: 14.5px; margin-top: 12px; }
  .frise-head { flex-direction: column; gap: 4px; }
  .card .meta { margin-top: 16px; font-size: 12px; }
  .card .a { font-size: 13.5px; }
  .toolbar { gap: 8px 12px; padding-block: 10px; }
  .toolbar .seg:nth-of-type(3) .seg-l, .toolbar .seg:first-child .seg-l { display: none; }
  .seg button { padding: 6px 9px; font-size: 14px; }
  .search { order: -1; flex: 1 1 100%; margin-left: 0; }
  .row > a { grid-template-columns: 56px minmax(0, 1fr); gap: 14px; align-items: center; padding: 14px 0; }
  .row .num, .row .ry { display: none; }
  .row .thumb { display: block; width: 56px; box-shadow: 0 8px 14px -8px rgba(0,0,0,.4); }
  .row .thumb img { width: 100%; aspect-ratio: 646/1000; object-fit: cover; }
  .row .rt { font-size: 19px; }
  .row .rt small { font-size: 14px; }
  .row .rt .yy { display: block; font-family: var(--text); font-size: 13px; color: var(--mute); font-weight: 400; margin-top: 4px; }
  .peek { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .propose { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > :first-child { grid-column: 1 / -1; }
  .foot-grid > :last-child { grid-column: 1 / -1; }
  .sheet-panel { width: 100%; clip-path: inset(100% 0 0 0); }
  .sheet-bar { height: 56px; }
  .sheet-count { display: none; }
  .sheet-left, .sheet-left .sticky { display: contents; }
  .sheet-body { row-gap: 28px; padding-top: 26px; }
  .sheet .b3wrap { order: 1; width: min(58%, 250px); margin-inline: auto; }
  .sheet-right { order: 2; }
  .bristol { order: 3; transform: rotate(-.8deg); margin: 6px 4px 0; }
  .s-desc { font-size: 17px; }
  .folio .f-t { display: none; }
  .folio { bottom: 12px; padding: 5px 10px; }
}
@media (max-width: 720px) {
  body::before { mix-blend-mode: normal; opacity: .35; }
}
@media (hover: none) {
  .card-btn:hover .b3 { --ry: 0deg; --rx: 0deg; transform: none; }
}
.row .rt .yy { display: none; }
@media (max-width: 720px) { .row .rt .yy { display: block; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .js .compose .ch { opacity: 1; }
  .ticker .track { animation: none; }
}

/* ======================================================================
   SITE COMPLET — composants partagés
   ====================================================================== */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .35s; }
::view-transition-group(*) { animation-duration: .55s; animation-timing-function: cubic-bezier(.2,.8,.2,1); }

main { display: block; }
.mega li a small { font-family: var(--display); font-size: 12px; color: var(--mute); margin-left: 6px; }
.drawer-body details li a small { color: var(--mute); font-size: 13px; margin-left: 6px; }

/* titres composés : tailles selon la longueur */
.compose.fs-l { font-size: clamp(2.3rem, 6.3vw, 6.6rem); }
.compose.fs-m { font-size: clamp(2rem, 4.9vw, 5rem); line-height: .96; }
.compose.fs-s { font-size: clamp(1.8rem, 3.8vw, 3.9rem); line-height: 1; }
.compose .line.it { font-style: italic; font-weight: 500; color: var(--ink); }
.compose .l2 { padding-bottom: .13em; }

/* héros compact des pages intérieures */
.hero.inner { min-height: auto; }
.hero.inner .hero-grid { padding-block: clamp(20px, 4vh, 48px) clamp(24px, 4vh, 44px); }
.hero .kicker { font-family: var(--display); font-style: italic; font-size: clamp(18px, 1.8vw, 24px); color: var(--orange); margin: 0 0 8px; }
.hero-book .b3btn { cursor: pointer; }
a.b3btn { color: inherit; text-decoration: none; }

/* éventail de couvertures (accueil) */
.fan { position: relative; width: clamp(280px, 33vw, 480px); aspect-ratio: 1 / 1.08; margin-right: clamp(0px, 2vw, 30px); }
.fan a { position: absolute; left: 50%; bottom: 4%; width: 52%; transform-origin: 50% 120%; transition: transform .9s var(--ease-out), filter .4s; display: block; }
.fan a img { width: 100%; aspect-ratio: 646/1000; object-fit: cover; box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 20px 34px -18px rgba(34,34,34,.55), inset 0 0 0 1px rgba(0,0,0,.06); background: var(--card); }
.fan a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.18) 0, rgba(255,255,255,.25) 1.5%, rgba(0,0,0,.05) 3.5%, transparent 8%); pointer-events: none; }
.js .fan a { transform: translateX(-50%) translateY(30px) rotate(0deg); opacity: 0; }
.fan.in a { opacity: 1; transform: translateX(-50%) rotate(calc(var(--r) * 1deg)) translateY(calc(var(--y) * 1px)); transition-delay: calc(var(--k) * 70ms + .6s); }
.fan.in a:hover { transform: translateX(-50%) rotate(calc(var(--r) * 1deg)) translateY(calc(var(--y) * 1px - 26px)); transition-delay: 0s; z-index: 20; }
.fan.spread a { transform: translateX(-50%) rotate(calc(var(--r) * 1.55deg)) translateY(calc(var(--y) * 1px)); }
.fan .fan-tag { position: absolute; top: -6px; left: -10px; font-family: var(--display); font-style: italic; color: var(--orange); font-size: 18px; transform: rotate(-4deg); }
.fan .fan-tag sup { font-style: normal; font-size: 12px; margin-right: 4px; }

/* rayonnage horizontal */
.shelf-sec { padding-block: clamp(46px, 7vw, 100px) clamp(30px, 4vw, 60px); }
.shelf-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: clamp(20px, 3vw, 34px); }
.shelf-head .h2 { font-size: clamp(2.3rem, 5vw, 4.8rem); }
.shelf-head a { color: var(--rust); font-size: 15.5px; white-space: nowrap; }
.shelf { list-style: none; margin: 0; padding: 10px 2px 26px; display: grid; grid-auto-flow: column; grid-auto-columns: clamp(150px, 17vw, 230px); gap: clamp(18px, 2.4vw, 34px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--rule-strong) transparent; overscroll-behavior-x: contain; }
.shelf > li { scroll-snap-align: start; }
.shelf .card .t { font-size: clamp(16px, 1.3vw, 19px); }
.band { background: var(--paper-deep); border-block: 1px solid var(--rule-strong); }
.band .shelf .card .meta { border-color: rgba(53,66,72,.3); }

/* liste des collections (accueil + page collections) */
.col-list { list-style: none; margin: 0; padding: 0 0 clamp(60px, 8vw, 110px); border-top: 1px solid var(--rule-strong); }
.col-list > li > a { display: grid; grid-template-columns: 3.4em minmax(0, 1fr) auto 1.4em; gap: 18px; align-items: baseline; padding: 18px 6px; border-bottom: 1px solid var(--rule); text-decoration: none; transition: background-color .3s, padding .35s var(--ease); position: relative; }
.col-list .num { font-family: var(--display); color: var(--orange); font-size: 15px; }
.col-list .nm { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.3vw, 32px); line-height: 1.12; color: var(--ink); font-variation-settings: "opsz" 40; }
.col-list .ct { font-size: 14px; color: var(--mute); font-style: italic; white-space: nowrap; }
.col-list .ar { color: var(--orange); opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .35s var(--ease); }
.col-list > li > a:hover { background: rgba(202, 80, 26, .06); padding-left: 18px; }
.col-list > li > a:hover .ar { opacity: 1; transform: none; }
.col-list > li > a:hover .nm { color: var(--rust); }
.col-list .trio { position: absolute; right: 7%; top: 50%; height: 150%; display: flex; pointer-events: none; opacity: 0; transform: translateY(-50%) translateX(20px); transition: opacity .35s, transform .5s var(--ease-out); z-index: 3; }
.col-list .trio img { height: 100%; width: auto; aspect-ratio: 646/1000; object-fit: cover; box-shadow: 0 14px 24px -12px rgba(0,0,0,.5); margin-left: -22px; background: var(--card); }
.col-list .trio img:nth-child(1) { transform: rotate(-7deg); }
.col-list .trio img:nth-child(3) { transform: rotate(6deg); }
.col-list > li > a:hover .trio { opacity: 1; transform: translateY(-50%); }

/* page Collections : blocs détaillés */
.col-blocks { list-style: none; margin: 0; padding: 0 0 clamp(60px, 8vw, 110px); }
.col-block { display: grid; grid-template-columns: 5em minmax(0, 1.25fr) minmax(0, 1fr); gap: 18px clamp(24px, 4vw, 60px); padding-block: clamp(30px, 4vw, 54px); border-top: 1px solid var(--rule-strong); }
.col-block .num { font-family: var(--display); font-size: clamp(34px, 4vw, 56px); line-height: 1; color: var(--orange); font-weight: 500; }
.col-block h2 { margin: 0; font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 42px); line-height: 1.05; color: var(--slate); font-variation-settings: "opsz" 60; }
.col-block h2 a { text-decoration: none; }
.col-block h2 a:hover { color: var(--rust); }
.col-block .cnt { margin: 10px 0 0; font-size: 14.5px; color: var(--mute); font-style: italic; }
.col-block .desc { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-top: 14px; }
.col-block .desc p { margin: 0 0 .8em; }
.col-block .desc.clamp { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.col-block .go { display: inline-block; margin-top: 8px; color: var(--rust); }
.col-block .strip { display: flex; align-items: flex-end; gap: 10px; padding-top: 6px; }
.col-block .strip a { flex: 0 0 auto; width: calc((100% - 30px) / 4); transition: transform .4s var(--ease); }
.col-block .strip a:hover { transform: translateY(-6px) rotate(-1.5deg); }
.col-block .strip img { width: 100%; aspect-ratio: 646/1000; object-fit: cover; box-shadow: 0 14px 22px -14px rgba(0,0,0,.5); background: var(--card); }

/* fil d'Ariane & prose */
.crumbs .cur { color: var(--ink-soft); }
.prose { font-size: 18.5px; line-height: 1.7; max-width: 66ch; hyphens: auto; }
.prose p { margin: 0 0 1.05em; }
.prose > p:first-of-type::first-letter { font-family: var(--display); font-weight: 700; float: left; font-size: 4.1em; line-height: .86; padding: .05em .09em 0 0; color: var(--orange); }
.prose h2, .prose h3 { font-family: var(--display); font-weight: 700; color: var(--slate); line-height: 1.1; margin: 1.6em 0 .5em; font-size: clamp(24px, 2.4vw, 32px); }
.prose h3 strong, .prose h2 strong { font-weight: inherit; }
.prose a { color: var(--rust); text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.1em; }
.prose li { margin-bottom: .45em; }
.prose ol li::marker { font-family: var(--display); color: var(--orange); font-weight: 600; }
.prose ul li::marker { color: var(--orange); }
.prose img { max-width: 100%; height: auto; margin: 1em 0; box-shadow: 0 16px 30px -18px rgba(0,0,0,.4); }
.prose blockquote { margin: 1.2em 0; padding-left: 18px; border-left: 2px solid var(--orange); font-style: italic; color: var(--ink-soft); }
.page-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 340px); gap: clamp(30px, 6vw, 100px); padding-block: clamp(20px, 4vw, 50px) clamp(60px, 8vw, 110px); align-items: start; }
.aside-card { position: sticky; top: calc(var(--header-h) + 24px); background: var(--card); padding: 22px 22px 26px; box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 18px 30px -22px rgba(34,34,34,.45); border-top: 2px solid var(--orange); font-size: 15px; }
.aside-card h2 { margin: 0 0 12px; font-family: var(--display); font-style: italic; font-weight: 500; font-size: 20px; color: var(--slate); }
.aside-card p { margin: 0 0 .8em; }
.aside-card a { color: var(--rust); }
.aside-card .big { font-family: var(--display); font-size: 44px; line-height: 1; color: var(--orange); font-weight: 600; display: block; }

/* contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(16px, 2vw, 26px); padding-block: 10px clamp(40px, 6vw, 70px); }
.c-card { background: var(--card); padding: 22px 22px 24px; box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 18px 30px -24px rgba(34,34,34,.45); border-top: 2px solid var(--orange); display: flex; flex-direction: column; gap: 10px; }
.c-card h2 { margin: 0; font-size: 14px; font-weight: 400; font-style: italic; color: var(--mute); line-height: 1.4; }
.c-card a.mail { font-family: var(--display); font-size: clamp(19px, 1.7vw, 23px); color: var(--slate); text-decoration: none; word-break: break-all; }
.c-card a.mail:hover { color: var(--rust); }
.c-card p { margin: 0; font-size: 15.5px; line-height: 1.55; }
.c-card.addr { background: var(--slate); color: #fff; border-color: var(--orange-soft); }
.c-card.addr h2 { color: rgba(255,255,255,.6); }
.c-card.addr p { font-family: var(--display); font-size: 21px; line-height: 1.3; }
.c-card.addr a { color: var(--orange-soft); }
.mailer { display: grid; gap: 14px; max-width: 640px; padding: 0 0 clamp(60px, 8vw, 100px); }
.mailer label { display: grid; gap: 6px; font-size: 14px; color: var(--mute); font-style: italic; }
.mailer input, .mailer select, .mailer textarea { font: inherit; font-size: 16px; color: var(--ink); background: var(--card); border: 1px solid var(--rule-strong); padding: 12px 14px; border-radius: 0; }
.mailer textarea { min-height: 150px; resize: vertical; }
.mailer input:focus, .mailer select:focus, .mailer textarea:focus { outline: 2px solid var(--orange); outline-offset: 0; border-color: var(--orange); }
.mailer .btn { justify-self: start; border: 0; cursor: pointer; font-family: var(--text); }
.mailer small { color: var(--mute); font-size: 13.5px; }

/* page livre */
.book-page .sheet-body { padding-inline: 0; padding-top: clamp(16px, 3vw, 36px); }
.book-page .b3wrap { width: min(100%, 320px); margin-inline: auto; }
.book-page .b3 { --ry: 0deg; --rx: 0deg; --d: 24px; }
.book-page .b3.turn { --ry: -20deg; --rx: 4deg; }
.book-page .sheet-left .sticky { top: calc(var(--header-h) + 22px); }
.book-page .b3 .f img { view-transition-name: var(--vt); }
.s-cols { display: flex; flex-wrap: wrap; gap: 6px 12px; }
.s-cols a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--rule-strong); }
.s-cols a:hover { color: var(--rust); border-color: var(--rust); }
.contribs { margin-top: 26px; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); border-left: 2px solid var(--orange); padding-left: 16px; max-width: 64ch; }
.contribs b { display: block; font-weight: 400; font-style: italic; color: var(--mute); font-size: 13.5px; margin-bottom: 4px; }
.contribs a { color: var(--ink); text-decoration-color: var(--rule-strong); text-underline-offset: 3px; }
.contribs a:hover { color: var(--rust); }
.rel-news { margin-top: 28px; max-width: 520px; }
.rel-news h3 { font-size: 13px; font-weight: 400; font-style: italic; color: var(--mute); margin: 0 0 8px; }
.rel-news a { display: block; padding: 10px 0; border-top: 1px solid var(--rule); text-decoration: none; }
.rel-news a small { display: block; color: var(--orange); font-size: 13px; }
.rel-news a:hover { color: var(--rust); }
.pn { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-block: 26px; border-top: 1px solid var(--rule-strong); }
.pn a { text-decoration: none; display: grid; gap: 4px; }
.pn a small { font-size: 13px; color: var(--mute); font-style: italic; }
.pn a span { font-family: var(--display); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.2; color: var(--ink); }
.pn a:hover span { color: var(--rust); }
.pn .nx { text-align: right; }
.no-cover { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(160deg, var(--card), var(--paper-deep)); font-family: var(--display); font-style: italic; color: var(--slate); text-align: center; padding: 14%; font-size: clamp(14px, 1.6vw, 20px); line-height: 1.2; }
.no-cover::before { content: "L ⚓ L"; position: absolute; bottom: 8%; left: 0; right: 0; text-align: center; font-style: normal; font-size: .8em; opacity: .45; }
.f .no-cover { position: relative; }

/* auteurs A–Z */
.az-bar { position: sticky; top: var(--header-h); z-index: 30; background: rgba(245,240,230,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-block: 1px solid var(--rule-strong); padding-block: 10px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; }
.az-bar nav { display: flex; flex-wrap: wrap; gap: 2px; }
.az-bar nav a { font-family: var(--display); font-size: 17px; width: 30px; height: 32px; display: grid; place-items: center; text-decoration: none; color: var(--slate); transition: background-color .2s, color .2s; }
.az-bar nav a:hover, .az-bar nav a.on { background: var(--ink); color: #fff; }
.az-bar nav a.off { color: rgba(53,66,72,.3); pointer-events: none; }
.az-group { display: grid; grid-template-columns: 8rem minmax(0, 1fr); gap: 20px; padding-block: 28px; border-bottom: 1px solid var(--rule); scroll-margin-top: calc(var(--header-h) + 70px); }
.az-group h2 { margin: 0; font-family: var(--display); font-weight: 700; font-size: clamp(56px, 7vw, 96px); line-height: .85; color: var(--orange); }
.az-group ul { list-style: none; margin: 0; padding: 0; columns: 3 220px; column-gap: 32px; }
.az-group li { break-inside: avoid; }
.az-group li a { display: flex; justify-content: space-between; gap: 10px; padding: 4px 0; text-decoration: none; font-size: 15.5px; line-height: 1.35; border-bottom: 1px dotted transparent; }
.az-group li a:hover { color: var(--rust); border-color: var(--rust); }
.az-group li a .sn { font-variant-caps: all-small-caps; letter-spacing: .05em; font-weight: 600; }
.az-group li a small { color: var(--mute); font-size: 12.5px; font-family: var(--display); flex: none; }
.az-list { padding-bottom: clamp(60px, 8vw, 110px); }
.author-bio { padding-block: clamp(10px, 3vw, 30px) 10px; }

/* actualités */
.news-list { list-style: none; margin: 0; padding: 0 0 clamp(60px, 8vw, 110px); }
.news-item > a { display: grid; grid-template-columns: 7.5rem minmax(0, 1fr) auto; gap: clamp(16px, 3vw, 40px); align-items: start; padding-block: clamp(22px, 3vw, 34px); border-top: 1px solid var(--rule-strong); text-decoration: none; }
.news-item .dt { font-family: var(--display); line-height: 1; color: var(--orange); }
.news-item .dt b { display: block; font-size: clamp(44px, 5vw, 66px); font-weight: 600; }
.news-item .dt span { font-style: italic; font-size: 15px; color: var(--mute); }
.news-item h2 { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.1vw, 28px); line-height: 1.18; color: var(--ink); text-wrap: balance; font-variation-settings: "opsz" 36; }
.news-item p { margin: 10px 0 0; color: var(--ink-soft); font-size: 16px; max-width: 70ch; }
.news-item .th { width: 74px; }
.news-item .th img { width: 100%; aspect-ratio: 646/1000; object-fit: cover; box-shadow: 0 12px 20px -12px rgba(0,0,0,.5); background: var(--card); }
.news-item > a:hover h2 { color: var(--rust); }
.news-mini { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 44px); list-style: none; margin: 0; padding: 0 0 clamp(60px, 8vw, 100px); }
.news-mini a { display: grid; gap: 10px; text-decoration: none; border-top: 2px solid var(--ink); padding-top: 14px; }
.news-mini .d { font-size: 13px; color: var(--orange); font-style: italic; }
.news-mini h3 { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(19px, 1.7vw, 23px); line-height: 1.2; color: var(--ink); }
.news-mini p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.news-mini a:hover h3 { color: var(--rust); }
.rel-books { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 14px; }
.rel-books a { display: grid; grid-template-columns: 60px 1fr; gap: 14px; align-items: center; text-decoration: none; }
.rel-books img { width: 60px; aspect-ratio: 646/1000; object-fit: cover; box-shadow: 0 10px 16px -10px rgba(0,0,0,.5); background: var(--card); }
.rel-books b { font-family: var(--display); font-weight: 600; font-size: 16.5px; line-height: 1.2; display: block; }
.rel-books small { color: var(--mute); font-style: italic; font-size: 13.5px; }
.rel-books a:hover b { color: var(--rust); }

/* sélecteur de collection (catalogue) */
.sel { display: flex; align-items: center; gap: 8px; }
.sel select { font: inherit; font-size: 14.5px; background: transparent; border: 1px solid var(--rule-strong); padding: 6px 30px 6px 10px; color: var(--ink); max-width: 260px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%; background-size: 5px 5px; background-repeat: no-repeat; border-radius: 0; }
.more-wrap { text-align: center; padding: 0 0 clamp(60px, 8vw, 100px); }
.more-wrap button { font: inherit; font-size: 16px; border: 1px solid var(--ink); padding: 12px 24px; transition: background-color .25s, color .25s; }
.more-wrap button:hover { background: var(--ink); color: #fff; }

/* recherche globale */
.sov { position: fixed; inset: 0; z-index: 140; background: rgba(245, 240, 230, .97); backdrop-filter: blur(6px); display: none; flex-direction: column; }
.sov.open { display: flex; animation: sovIn .45s var(--ease-out); }
@keyframes sovIn { from { opacity: 0; transform: translateY(-12px); } }
.sov-top { display: flex; align-items: center; gap: 14px; padding: 18px var(--gutter); border-bottom: 1px solid var(--rule-strong); }
.sov-top input { flex: 1; font-family: var(--display); font-size: clamp(26px, 4vw, 52px); border: 0; background: transparent; color: var(--slate); outline: none; padding: 6px 0; min-width: 0; }
.sov-top input::placeholder { color: rgba(53,66,72,.35); font-style: italic; }
.sov-body { flex: 1; overflow-y: auto; padding: 18px var(--gutter) 60px; }
.sov-body .wrap { padding: 0; }
.sov-body h3 { font-size: 13px; font-weight: 400; font-style: italic; color: var(--mute); margin: 18px 0 6px; }
.sov-res { list-style: none; margin: 0; padding: 0; }
.sov-res a { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 10px 6px; border-bottom: 1px solid var(--rule); text-decoration: none; }
.sov-res a:hover, .sov-res a.act { background: rgba(202,80,26,.07); }
.sov-res img { width: 44px; aspect-ratio: 646/1000; object-fit: cover; background: var(--card); box-shadow: 0 6px 12px -8px rgba(0,0,0,.5); }
.sov-res .ph { width: 44px; height: 44px; display: grid; place-items: center; font-family: var(--display); color: var(--orange); font-size: 22px; border: 1px solid var(--rule-strong); }
.sov-res b { font-family: var(--display); font-weight: 600; font-size: 18px; line-height: 1.2; display: block; }
.sov-res small { color: var(--ink-soft); font-style: italic; font-size: 14px; }
.sov-res em { font-style: normal; background: linear-gradient(transparent 60%, rgba(202,80,26,.28) 0); }
.sov-res .y { color: var(--mute); font-size: 13px; font-family: var(--display); }
.sov-hint { color: var(--mute); font-style: italic; margin-top: 24px; }

@media (max-width: 1100px) {
  .col-block { grid-template-columns: 4em minmax(0, 1fr); }
  .col-block .strip { grid-column: 2; }
  .news-mini { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .fan { width: min(360px, 80vw); margin: 10px auto 0; }
  .page-body { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .col-list .trio { display: none; }
}
@media (max-width: 720px) {
  .col-list > li > a { grid-template-columns: 2.4em minmax(0, 1fr); }
  .col-list .ct { grid-column: 2; }
  .col-list .ar { display: none; }
  .col-block { grid-template-columns: 1fr; }
  .col-block .strip { grid-column: 1; }
  .news-item > a { grid-template-columns: 4.6rem minmax(0, 1fr); }
  .news-item .th { display: none; }
  .news-mini { grid-template-columns: 1fr; }
  .az-group { grid-template-columns: 1fr; gap: 8px; }
  .az-group h2 { font-size: 56px; }
  .az-bar nav a { width: 26px; height: 28px; font-size: 15px; }
  .shelf { grid-auto-columns: 42vw; }
  .pn { grid-template-columns: 1fr; }
  .pn .nx { text-align: left; }
  .prose { font-size: 17px; }
  .book-page .sheet-left, .book-page .sheet-left .sticky { display: contents; }
  .book-page .sheet-body { row-gap: 28px; }
  .book-page .b3wrap { order: 1; width: min(58%, 250px); margin-inline: auto; }
  .book-page .sheet-right { order: 2; }
  .book-page .bristol { order: 3; transform: rotate(-.8deg); margin: 6px 4px 0; }
  .book-page .s-docs-side { order: 4; }
}
.about-grid a { color: var(--orange-soft); }
.about-grid .prose-dark p { font-size: 17px; }
.about .dirs a:hover { color: var(--orange-soft) !important; }
.yr .stack .plus { font-family: var(--display); color: rgba(255,255,255,.7); font-size: 14px; }
.yr .stack a { width: 50px; display: block; transition: transform .4s var(--ease); box-shadow: 0 10px 18px -10px rgba(0,0,0,.6); }
.yr .stack a:hover { transform: translateY(-4px) scale(1.08) rotate(-2deg); }
.yr .stack a img, .yr .stack a .no-cover { width: 100%; aspect-ratio: 646/1000; object-fit: cover; font-size: 6px; }
.js .yr .stack a { opacity: 0; transform: translateY(20px); }
.frise.in .yr .stack a { opacity: 1; transform: none; transition: opacity .6s, transform .8s var(--ease-out); transition-delay: calc(min(var(--k), 40) * 40ms + .2s); }
.frise.in .yr .stack a:hover { transform: translateY(-4px) scale(1.08) rotate(-2deg); transition-delay: 0s; }
.home .hero .compose { font-size: clamp(3.4rem, 11.5vw, 12.5rem); }
/* petits chiffres en Bodoni : optique « texte » pour garder les déliés lisibles */
.call, .h2 .count, .card .num, .row .num, .col-list .num, .folio, .yr .lbl, .fan-tag, .hero-book .tag, .sheet-count, .news-mini .d, .news-item .dt, .az-bar nav a, .col-block .num, .facts b, .aside-card .big, .bristol h3 { font-variation-settings: "opsz" 9 !important; }
.h2 .count { font-weight: 700; }

.shelf-head { flex-wrap: wrap; }
@media (max-width: 720px) {
  .toolbar { position: static; }
  .shelf-head a { white-space: normal; }
  .footnotes ol { grid-template-columns: 1fr !important; }
}
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
