
    @font-face{
      font-family: "Elms Sans";
      src: url("{% static 'static_vertigo/fonts/ElmsSans-VariableFont_wght.ttf' %}") format("truetype");
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

    @font-face{
      font-family: "Elms Sans";
      src: url("{% static 'static_vertigo/fonts/ElmsSans-Italic-VariableFont_wght.ttf' %}") format("truetype");
      font-weight: 100 900;
      font-style: italic;
      font-display: swap;
    }

    :root{
      --ink: #0c0c0c;
      --ink-soft: #1a1a1a;
      --paper: #f6f4ef;
      --paper-deep: #e7e5df;
      --ash: #c8c6bf;
      --edge: rgba(0,0,0,.14);
      --mist: rgba(0,0,0,.08);
      --poem-font: "Elms Sans", "Unbounded", sans-serif;
      --poem-size: clamp(1.05rem, 2.1vw, 1.2rem);
      --poem-line: 1.7;
    }

    *{ box-sizing: border-box; }

    body{
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      background:
        radial-gradient(900px 500px at 15% 5%, rgba(0,0,0,.06), transparent 60%),
        radial-gradient(700px 520px at 85% 15%, rgba(0,0,0,.05), transparent 55%),
        linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 55%, var(--paper) 100%);
      position: relative;
      overflow-x: hidden;
    }

    body::after{
      content: "";
      position: fixed;
      inset: 0;
      background:
        repeating-linear-gradient(130deg, rgba(0,0,0,.025) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(40deg, rgba(0,0,0,.015) 0 1px, transparent 1px 5px);
      pointer-events: none;
      mix-blend-mode: multiply;
      opacity: .35;
      z-index: 0;
    }

    a{
      color: inherit;
      text-decoration: none;
    }

    .shadow-pass{
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 5;
    }

    .shadow-pass::before{
      content: "";
      position: absolute;
      inset: -10% 0 0 0;
      background:
        radial-gradient(700px 420px at 35% 20%, rgba(0,0,0,.22), transparent 70%),
        radial-gradient(520px 320px at 60% 25%, rgba(0,0,0,.12), transparent 70%);
      opacity: 0;
      animation: wash 5.6s linear forwards;
    }

    .eagle{
      position: absolute;
      top: -14vh;
      left: -90vw;
      width: 170vw;
      height: auto;
      max-width: none;
      filter: blur(7px);
      opacity: 0;
      mix-blend-mode: multiply;
      transform-origin: 128% 58%;
      transform-box: fill-box;
      will-change: transform, opacity;
      backface-visibility: hidden;
      transform: translate3d(0,0,0);
      animation: eagle-flight 5.6s linear forwards;
    }

    .page{
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .9s ease, transform 1.2s ease;
    }

    body.revealed .page{
      opacity: 1;
      transform: translateY(0);
    }

    body.revealed .shadow-pass{
      opacity: 0;
      visibility: hidden;
      transition: opacity .6s ease;
    }

    .wrap{
      width: min(1100px, 92vw);
      margin: 0 auto;
      padding: 96px 0 120px;
    }

    .hero{
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
      gap: 40px;
      align-items: center;
      position: relative;
    }

    .hero-mark{
      position: absolute;
      left: -34px;
      top: 12px;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-family: "Unbounded", sans-serif;
      letter-spacing: .35em;
      font-size: .68rem;
      text-transform: uppercase;
      color: rgba(0,0,0,.45);
    }

    .kicker{
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: .72rem;
      color: rgba(0,0,0,.55);
      margin: 0 0 18px;
    }

    .title{
      font-family: "Unbounded", sans-serif;
      font-size: clamp(2.8rem, 6vw, 5.6rem);
      letter-spacing: .08em;
      margin: 0 0 14px;
    }

    .subtitle{
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 560px;
      color: rgba(0,0,0,.7);
    }

    .actions{
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn{
      padding: 12px 20px;
      border: 1px solid var(--ink);
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .72rem;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .btn.primary{
      background: var(--ink);
      color: var(--paper);
      box-shadow: 0 14px 34px rgba(0,0,0,.18);
    }

    .btn.ghost{
      background: transparent;
      color: var(--ink);
    }

    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(0,0,0,.15);
    }

    .hero-plate{
      border: 1px solid var(--edge);
      padding: 26px;
      background: rgba(255,255,255,.5);
      box-shadow: 0 20px 60px rgba(0,0,0,.08);
    }

    .hero-plate h3{
      margin: 0 0 12px;
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .85rem;
    }

    .hero-plate .pitch{
      margin: 0 0 16px;
      font-size: 1.05rem;
      line-height: 1.6;
      color: rgba(0,0,0,.7);
    }

    .hero-plate ul{
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
      font-size: 1rem;
    }

    .hero-plate li{
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--edge);
      padding-bottom: 8px;
    }

    .hero-plate span{
      color: rgba(0,0,0,.55);
      font-size: .9rem;
      font-family: "Unbounded", sans-serif;
      letter-spacing: .08em;
    }

    .hero-plate .actions{
      margin-top: 18px;
    }

    .hero-plate .note{
      margin: 12px 0 0;
      font-size: .9rem;
      color: rgba(0,0,0,.6);
    }

    section{
      margin-top: 90px;
    }

    .manifesto{
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 28px;
      border-top: 1px solid var(--edge);
      padding-top: 40px;
    }

    .manifesto h2{
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 1rem;
      margin: 0 0 14px;
    }

    .manifesto p{
      font-size: 1.2rem;
      line-height: 1.7;
      max-width: 760px;
    }

    .manifesto-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card{
      padding: 22px;
      border: 1px solid var(--edge);
      background: rgba(255,255,255,.6);
      min-height: 180px;
      box-shadow: 0 20px 50px rgba(0,0,0,.07);
    }

    .card h3{
      margin: 0 0 12px;
      font-family: "Unbounded", sans-serif;
      font-size: .92rem;
      text-transform: uppercase;
      letter-spacing: .16em;
    }

    .card p{
      margin: 0;
      line-height: 1.6;
      color: rgba(0,0,0,.72);
    }

    .collection-head{
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      border-top: 1px solid var(--edge);
      padding-top: 40px;
    }

    .collection-head h2{
      margin: 0;
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 1rem;
    }

    .collection-head p{
      margin: 0;
      max-width: 520px;
      line-height: 1.6;
      color: rgba(0,0,0,.7);
    }

    .frames{
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .frame{
      border: 1px solid var(--edge);
      padding: 24px;
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 26px 60px rgba(0,0,0,.08);
      min-height: 200px;
      position: relative;
    }

    .frame::after{
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px dashed rgba(0,0,0,.18);
      pointer-events: none;
    }

    .frame span{
      font-family: "Unbounded", sans-serif;
      letter-spacing: .2em;
      font-size: .7rem;
      color: rgba(0,0,0,.55);
    }

    .frame h3{
      margin: 12px 0 10px;
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .9rem;
    }

    .frame p{
      margin: 0;
      line-height: 1.6;
      color: rgba(0,0,0,.7);
    }

    .monolith{
      margin-top: 110px;
      background: var(--ink);
      color: var(--paper);
      padding: 80px 0;
    }

    .monolith-inner{
      width: min(980px, 88vw);
      margin: 0 auto;
    }

    .monolith h2{
      margin: 0 0 18px;
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 1.1rem;
    }

    .monolith p{
      margin: 0;
      font-size: 1.2rem;
      line-height: 1.8;
      color: rgba(255,255,255,.82);
    }

    .credits{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
      margin-top: 90px;
      border-top: 1px solid var(--edge);
      padding-top: 40px;
      font-size: 1.05rem;
    }

    .credits strong{
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .82rem;
      display: block;
      margin-bottom: 12px;
    }

    .credits p{
      margin: 0;
      line-height: 1.7;
      color: rgba(0,0,0,.72);
    }

    .verse-panel{
      display: grid;
      gap: 96px;
      align-content: start;
    }

    .verse-header h2{
      margin: 0 0 8px;
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .95rem;
    }

    .verse-header p{
      margin: 0;
      max-width: 520px;
      color: rgba(0,0,0,.68);
    }

    .verse-card{
      position: relative;
      border: 0;
      background: transparent;
      padding: 12px 0 12px 30px;
      text-align: center;
      cursor: pointer;
      box-shadow: none;
      overflow-x: auto;
      overflow-y: hidden;
      display: grid;
      gap: 14px;
    }

    .verse-card:focus-visible{
      outline: 2px solid var(--ink);
      outline-offset: 3px;
    }

    .verse-guide{
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.2), transparent);
    }

    .verse-guide::after{
      content: "";
      position: absolute;
      top: 10px;
      left: -4px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--ink);
      box-shadow: 0 0 0 5px rgba(0,0,0,.06);
    }

    .verse-label{
      font-family: "Unbounded", sans-serif;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .7rem;
      color: rgba(0,0,0,.55);
    }

    .verse-lines{
      font-family: var(--poem-font);
      font-size: var(--poem-size);
      line-height: var(--poem-line);
      color: rgba(0,0,0,.82);
      display: grid;
      gap: 6px;
      width: max-content;
    }

    .verse-line{
      display: block;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(10px);
      animation: verse-wave 1.6s ease forwards;
      animation-delay: calc(var(--i, 0) * 0.12s);
    }

    .verse-card{
      scrollbar-width: thin;
      scrollbar-color: rgba(0,0,0,.25) transparent;
    }

    .verse-card::-webkit-scrollbar{
      height: 6px;
    }

    .verse-card::-webkit-scrollbar-thumb{
      background: rgba(0,0,0,.25);
      border-radius: 999px;
    }

    .verse-card.is-revealing .verse-line{
      animation-name: verse-wave;
    }

    .verse-sweep{
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.7) 50%, transparent 100%);
      opacity: 0;
      pointer-events: none;
      transform: translateX(-45%);
    }

    .verse-card.is-revealing .verse-sweep{
      animation: verse-sweep 1.8s ease;
    }

    .verse-hint{
      font-family: "Unbounded", sans-serif;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: .65rem;
      color: rgba(0,0,0,.5);
    }

    footer{
      margin-top: 80px;
      border-top: 1px solid var(--edge);
      padding-top: 24px;
      font-family: "Unbounded", sans-serif;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-size: .68rem;
      color: rgba(0,0,0,.5);
    }

    .reveal{
      opacity: 0;
      transform: translateY(18px);
    }

    body.revealed .reveal{
      animation: rise .9s ease forwards;
      animation-delay: var(--d, 0s);
    }

    /* --- FIX sizing + empêche “passer derrière” --- */
.book-showcase{
  position: relative;
  z-index: 2;                 /* au-dessus des overlays */
  display: grid;
  grid-template-columns: minmax(0, 450px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.book-figure{
  margin: 0;
  position: relative;
  z-index: 2;
  width: min(380px, 92vw);    /* taille modérée */
  aspect-ratio: 3 / 4;        /* ratio couverture (ajuste si besoin) */
  height: auto;               /* IMPORTANT: pas de height fixe ici */
  overflow: hidden;           /* clippe proprement */
}

.book-cover{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;        /* contient l’image dans le cadre */
}

.book-figure-trigger{
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.book-figure-trigger:focus-visible{
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.preorder{
  border: 1px solid var(--edge);
  padding: 24px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
}

.preorder h3{
  margin: 0 0 10px;
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .85rem;
}

.price-tag{
  font-family: "Unbounded", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .7rem;
  color: rgba(0,0,0,.55);
}

.preorder-form{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.preorder-form input,
.preorder-form select{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--edge);
  background: #fff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1rem;
}

.preorder-form input:focus,
.preorder-form select:focus{
  outline: 2px solid rgba(0,0,0,.2);
  outline-offset: 1px;
}

.preorder-message{
  margin: 14px 0 0;
  font-size: .95rem;
}

.preorder-message.error{
  color: #7a1e1e;
}

.modal-vertigo .modal-content{
  background: var(--paper);
  border: 1px solid var(--edge);
  border-radius: 0;
}

.modal-vertigo .modal-header{
  border-bottom: 1px solid var(--edge);
}

.modal-vertigo .modal-title{
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
}

.modal-vertigo .modal-body{
  color: rgba(0,0,0,.78);
  font-size: 1rem;
}

.audio-preview{
  display: grid;
  gap: 14px;
}

.audio-preview audio{
  width: 100%;
}

.carousel-vertigo .carousel-inner{
  border: 1px solid var(--edge);
  background: #fff;
  padding: 10px;
}

.carousel-vertigo .carousel-indicators{
  position: static;
  margin: 14px 0 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.carousel-vertigo .carousel-indicators [data-bs-target]{
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--edge);
  background: #fff;
  overflow: hidden;
  opacity: .6;
}

.carousel-vertigo .carousel-indicators [data-bs-target] img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-vertigo .carousel-indicators .active{
  opacity: 1;
  box-shadow: inset 0 0 0 2px var(--ink);
}

.product-modal-meta{
  margin-top: 18px;
}

.product-modal-meta h6{
  margin: 0 0 8px;
  font-family: "Unbounded", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
}

/* ====== Effet CD spectral vif (modal audio) ====== */
#audioPreviewModal .modal-content{
  position: relative;
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(245,246,250,.9));
}

#audioPreviewModal .modal-body{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.55);
  background:
    linear-gradient(150deg, rgba(250,250,252,.9) 0%, rgba(238,242,248,.72) 100%);
}

#audioPreviewModal .cd-diffraction-layer{
  position: absolute;
  inset: -42%;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-radial-gradient(circle at 38% 52%,
      rgba(255,255,255,.18) 0 2px,
      rgba(255,255,255,0) 3px 8px),
    radial-gradient(circle at 38% 52%,
      rgba(255,255,255,.55) 0%,
      rgba(255,255,255,.10) 26%,
      rgba(255,255,255,0) 56%),
    conic-gradient(from 205deg at 38% 52%,
      rgba(255, 20,  50, .70) 0deg,
      rgba(255,130,  30, .66) 45deg,
      rgba(255,235,  50, .66) 83deg,
      rgba( 50,255, 120, .62) 128deg,
      rgba( 35,210, 255, .64) 184deg,
      rgba( 60,120, 255, .66) 236deg,
      rgba(175, 70, 255, .68) 292deg,
      rgba(255, 60, 170, .68) 338deg,
      rgba(255, 20,  50, .70) 360deg);
  mix-blend-mode: screen;
  filter: blur(.8px) saturate(1.95) contrast(1.15);
  opacity: .92;
  transform-origin: 38% 52%;
  animation: cdSpin 8.5s linear infinite, cdPulse 3.8s ease-in-out infinite;
}

#audioPreviewModal .cd-diffraction-layer::before{
  content: "";
  position: absolute;
  inset: 14% -34% 14% -22%;
  background:
    linear-gradient(122deg,
      rgba(255, 40,  60, 0) 31%,
      rgba(255, 72,  72, .88) 40%,
      rgba(255,175,  40, .92) 46%,
      rgba(255,245,  70, .95) 51%,
      rgba( 95,255, 165, .90) 56%,
      rgba( 70,205, 255, .92) 62%,
      rgba( 88,130, 255, .90) 68%,
      rgba(186, 92, 255, .84) 74%,
      rgba(255, 90, 195, .75) 79%,
      rgba(255, 90, 195, 0) 86%);
  opacity: .95;
  transform: translateX(-18%) translateY(16%) rotate(-8deg);
  animation: cdSpectrumSweep 6.8s cubic-bezier(.42, 0, .2, 1) infinite;
}

/* Rayon lumineux qui sort du modal puis rebondit une fois */
#audioPreviewModal .modal-content::before,
#audioPreviewModal .modal-content::after{
  content: "";
  position: absolute;
  left: 22%;
  top: 56%;
  pointer-events: none;
  z-index: 1;
  transform-origin: left center;
  mix-blend-mode: screen;
}

#audioPreviewModal .modal-content::before{
  width: min(72vw, 520px);
  height: 12px;
  border-radius: 999px;
  clip-path: polygon(0 50%, 10% 0, 100% 0, 100% 100%, 10% 100%);
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,108, 90,.98) 18%,
      rgba(255,225,105,.96) 31%,
      rgba(120,255,185,.95) 45%,
      rgba( 88,220,255,.95) 58%,
      rgba(115,155,255,.94) 72%,
      rgba(215,120,255,.92) 86%,
      rgba(255,180,255,0) 100%);
  filter: blur(.45px) saturate(2.1) drop-shadow(0 0 18px rgba(120,200,255,.55));
  animation: cdRayBounce 5.8s cubic-bezier(.32, .8, .23, 1) infinite;
}

#audioPreviewModal .modal-content::after{
  width: min(72vw, 520px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.95), rgba(255,255,255,0));
  filter: blur(.2px);
  animation: cdRayBounce 5.8s cubic-bezier(.32, .8, .23, 1) infinite;
}

#audioPreviewModal .modal-body .audio-preview{
  position: relative;
  z-index: 2;
}

@keyframes cdSpin{
  from{ transform: rotate(0deg) scale(1.03); }
  to  { transform: rotate(360deg) scale(1.03); }
}

@keyframes cdPulse{
  0%,100%{ opacity: .68; }
  50%{ opacity: .96; }
}

@keyframes cdSpectrumSweep{
  0%,18%{
    opacity: .12;
    transform: translateX(-30%) translateY(20%) rotate(-10deg);
  }
  38%{
    opacity: .96;
  }
  64%{
    opacity: .92;
    transform: translateX(6%) translateY(-8%) rotate(-10deg);
  }
  100%{
    opacity: .42;
    transform: translateX(16%) translateY(-18%) rotate(-10deg);
  }
}

@keyframes cdRayBounce{
  0%{
    opacity: 0;
    transform: translate3d(-34%, 24%, 0) rotate(-19deg) scaleX(.20);
  }
  18%{
    opacity: .98;
    transform: translate3d(0, 0, 0) rotate(-19deg) scaleX(.95);
  }
  54%{
    opacity: .94;
    transform: translate3d(56%, -46%, 0) rotate(-19deg) scaleX(1);
  }
  68%{
    opacity: .88;
    transform: translate3d(84%, -68%, 0) rotate(-19deg) scaleX(1.02);
  }
  79%{
    opacity: .90;
    transform: translate3d(72%, -58%, 0) rotate(-19deg) scaleX(.96);
  }
  100%{
    opacity: 0;
    transform: translate3d(88%, -70%, 0) rotate(-19deg) scaleX(1.03);
  }
}

@media (max-width: 575.98px){
  #audioPreviewModal .modal-content::before,
  #audioPreviewModal .modal-content::after{
    left: 16%;
    top: 58%;
    width: min(92vw, 420px);
  }
}

@media (prefers-reduced-motion: reduce){
  #audioPreviewModal .cd-diffraction-layer,
  #audioPreviewModal .cd-diffraction-layer::before,
  #audioPreviewModal .modal-content::before,
  #audioPreviewModal .modal-content::after{
    animation: none;
  }
  #audioPreviewModal .cd-diffraction-layer{
    opacity: .42;
  }
}


    @keyframes eagle-flight{
      0%{ transform: translate3d(-45vw, 14vh, 0) scale(1.35) rotate(-28deg); opacity: 0; }
      18%{ opacity: .55; }
      45%{ transform: translate3d(12vw, 2vh, 0) scale(1.18) rotate(-6deg); opacity: .6; }
      72%{ transform: translate3d(52vw, -10vh, 0) scale(1.02) rotate(12deg); opacity: .5; }
      100%{ transform: translate3d(112vw, -20vh, 0) scale(.92) rotate(28deg); opacity: 0; }
    }

    @keyframes wash{
      0%{ opacity: 0; }
      30%{ opacity: .25; }
      70%{ opacity: .18; }
      100%{ opacity: 0; }
    }

    @keyframes rise{
      0%{ opacity: 0; transform: translateY(18px); }
      100%{ opacity: 1; transform: translateY(0); }
    }

    @keyframes verse-wave{
      0%{ opacity: 0; transform: translateY(10px); }
      45%{ opacity: 1; transform: translateY(0); }
      80%{ opacity: .85; transform: translateY(-2px); }
      100%{ opacity: 1; transform: translateY(0); }
    }

    @keyframes verse-sweep{
      0%{ opacity: 0; transform: translateX(-45%); }
      40%{ opacity: .65; }
      100%{ opacity: 0; transform: translateX(45%); }
    }

    @media (max-width: 900px){
      .hero{
        grid-template-columns: 1fr;
      }
      .hero-mark{
        display: none;
      }
      .manifesto-grid,
      .frames,
      .credits{
        grid-template-columns: 1fr;
      }
      .collection-head{
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce){
      .shadow-pass,
      .reveal,
      .page{
        animation: none !important;
        transition: none !important;
      }
      .page{ opacity: 1; transform: none; }
      .reveal{ opacity: 1; transform: none; }
      .shadow-pass{ display: none; }
      .verse-line{
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
      .verse-sweep{
        display: none !important;
      }
    }

    @media (max-width: 900px){
  .book-showcase{
    grid-template-columns: 1fr;
  }
  .book-figure{
    width: min(420px, 92vw);
    margin-inline: auto;
  }
}

    @media (max-width: 465px){
      #manifesto .hero-plate{
        padding: 18px 14px;
      }
      #manifesto .hero-plate h3{
        font-size: .74rem;
        letter-spacing: .1em;
      }
      #manifesto .hero-plate .pitch{
        font-size: 1rem;
        line-height: 1.45;
      }
      #manifesto .hero-plate ul{
        gap: 8px;
      }
      #manifesto .hero-plate li{
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }
      #manifesto .hero-plate span{
        display: block;
        width: 100%;
        font-size: .75rem;
        line-height: 1.35;
        letter-spacing: .04em;
      }
      #manifesto .hero-plate .actions{
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }
      #manifesto .hero-plate .actions .btn{
        width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
        letter-spacing: .08em;
        font-size: .64rem;
        padding: 12px 14px;
      }
      #manifesto .hero-plate .note{
        font-size: .85rem;
        line-height: 1.45;
      }
    }
