/* Home page */

/* HERO ================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding: 140px var(--gutter) 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: 60% center;
  filter: blur(2px) brightness(0.42) saturate(1.1);
  transform: scale(1.08);
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.12) translate(-2%, -1%); }
}
.hero-bg-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.55) 40%, rgba(13,13,13,0.95) 100%),
    linear-gradient(90deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.4) 60%, rgba(13,13,13,0.2) 100%);
}
.hero-bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 1200px 900px at 25% 50%, transparent 0%, rgba(13,13,13,0.6) 70%, rgba(13,13,13,1) 100%);
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle 600px at 80% 30%, rgba(20, 96, 79, 0.18), transparent 60%);
  mix-blend-mode: screen;
}

.hero-candle {
  position: absolute; top: 18%; right: 10%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(201, 163, 93, 0.28) 0%, rgba(201, 163, 93, 0.08) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  animation: candle 4.5s ease-in-out infinite;
  filter: blur(6px);
}
@keyframes candle {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.85; }
  50%      { transform: scale(1.06) translate(-4px, -8px); opacity: 1; }
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column; gap: 32px;
  max-width: 1100px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--ink-line-strong);
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(6px);
  align-self: flex-start;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.15); }
}

.hero-title { color: var(--cream); }
.hero-title .line { display: block; }
.hero-title em {
  font-style: italic;
  color: var(--cream);
  background: linear-gradient(90deg, var(--gold-bright), var(--gold) 60%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead { max-width: 56ch; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-meta {
  display: flex; align-items: center; gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-line);
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-num {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1; color: var(--cream);
}
.meta-label {
  font-family: var(--font-eyebrow);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream-soft);
}
.meta-sep {
  width: 1px; height: 32px; background: var(--ink-line-strong);
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-eyebrow); font-size: 10px;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--cream-dim);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-scroll i {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* HERO VARIANTS ========================================================= */
/* Hide all alt by default */
.hero-typeled-cover, .hero-collage { display: none; }

/* TYPE-LED: cinematic cover banner alongside type */
.hero[data-hero="typeled"] .hero-bg-img {
  opacity: 0.55;
  filter: blur(2px) brightness(0.55) saturate(1.2);
  background-position: 70% center;
}
.hero[data-hero="typeled"] .hero-bg-veil {
  background:
    linear-gradient(90deg, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.85) 35%, rgba(13,13,13,0.4) 70%, rgba(13,13,13,0.6) 100%),
    linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,0.5) 80%, rgba(13,13,13,0.95) 100%);
}
.hero[data-hero="typeled"] .hero-bg-vignette {
  background: radial-gradient(ellipse 1100px 900px at 25% 50%, transparent 10%, rgba(13,13,13,0.6) 70%, rgba(13,13,13,1) 100%);
}
.hero[data-hero="typeled"] .hero-bg-glow {
  background:
    radial-gradient(circle 700px at 78% 35%, rgba(243, 234, 216, 0.10), transparent 60%),
    radial-gradient(circle 500px at 85% 75%, rgba(140, 31, 44, 0.18), transparent 60%);
}
.hero[data-hero="typeled"] .hero-typeled-cover {
  display: block;
  position: absolute;
  right: 8%; top: 50%; transform: translateY(-50%);
  width: 280px; z-index: 2;
}
.hero[data-hero="typeled"] .hero-typeled-cover img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(20, 96, 79, 0.3);
}
.hero[data-hero="typeled"] .hero-typeled-cover .cover-badge {
  display: block; margin-top: 16px; text-align: center;
}
.hero[data-hero="typeled"] .hero-inner { max-width: 880px; }
.hero[data-hero="typeled"] .hero-title { font-size: clamp(64px, 11vw, 180px); }

@media (max-width: 980px) {
  .hero[data-hero="typeled"] .hero-typeled-cover { display: none; }
}

/* COLLAGE: row of covers behind type */
.hero[data-hero="collage"] .hero-bg-img { display: none; }
.hero[data-hero="collage"] .hero-collage {
  display: flex;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  gap: 24px;
  z-index: 1;
  padding: 20vh var(--gutter);
}
.hero[data-hero="collage"] .hero-collage .c {
  width: 18%; max-width: 240px;
  aspect-ratio: 2/3; object-fit: cover;
  filter: brightness(0.5) saturate(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.hero[data-hero="collage"] .hero-collage .c1 { transform: translateY(40px) rotate(-3deg); }
.hero[data-hero="collage"] .hero-collage .c2 { transform: translateY(-20px) rotate(2deg); }
.hero[data-hero="collage"] .hero-collage .c3 { transform: translateY(60px) rotate(-1deg); }
.hero[data-hero="collage"] .hero-collage .c4 { transform: translateY(0px) rotate(3deg); }
.hero[data-hero="collage"] .hero-collage .c5 { transform: translateY(-40px) rotate(-2deg); filter: brightness(0.7) saturate(1.2); }
.hero[data-hero="collage"] .hero-bg-veil {
  background: linear-gradient(180deg, rgba(13,13,13,0.65), rgba(13,13,13,0.92));
}
.hero[data-hero="collage"] .hero-bg-vignette {
  background: radial-gradient(ellipse 800px 600px at 50% 50%, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.95) 80%);
}
.hero[data-hero="collage"] .hero-inner { text-align: center; align-items: center; max-width: 900px; margin: 0 auto; }
.hero[data-hero="collage"] .hero-eyebrow { align-self: center; }
.hero[data-hero="collage"] .hero-cta { justify-content: center; }
.hero[data-hero="collage"] .hero-meta { justify-content: center; }
.hero[data-hero="collage"] .hero-lead { margin: 0 auto; }

/* Reveal animations ===================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: 0.15s; }
[data-reveal]:nth-child(3) { transition-delay: 0.3s; }
[data-reveal]:nth-child(4) { transition-delay: 0.45s; }
[data-reveal]:nth-child(5) { transition-delay: 0.55s; }

/* TAGLINE BAND ========================================================== */
.tagline-band {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 56px 0;
  background: var(--ink-soft);
}
.tagline-band .container { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.tagline-band .ornament {
  font-family: var(--font-eyebrow);
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-bright);
  width: 100%; max-width: 600px;
}
.tagline-words {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.1;
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.tagline-words .last {
  background: linear-gradient(90deg, var(--gold-bright), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WORLD ================================================================= */
.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.world-text { display: flex; flex-direction: column; gap: 24px; }
.world-text h2 em { font-style: italic; color: var(--gold-bright); }
.world-text .btn { align-self: flex-start; margin-top: 16px; }

.world-stack {
  position: relative; aspect-ratio: 1; min-height: 480px;
  perspective: 1200px;
}
.stack-card {
  position: absolute;
  width: 50%; aspect-ratio: 2/3;
  background-size: cover; background-position: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stack-1 { left: 0%;  top: 6%;  transform: rotate(-8deg); z-index: 1; }
.stack-2 { left: 12%; top: 0%;  transform: rotate(-4deg); z-index: 2; }
.stack-3 { left: 25%; top: -4%; transform: rotate(0deg);  z-index: 3; }
.stack-4 { left: 38%; top: 0%;  transform: rotate(4deg);  z-index: 4; }
.stack-5 {
  left: 50%; top: 6%; transform: rotate(8deg); z-index: 5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(20, 96, 79, 0.4);
}
.world-stack:hover .stack-1 { transform: rotate(-12deg) translate(-12px, -8px); }
.world-stack:hover .stack-2 { transform: rotate(-6deg)  translate(-6px, -4px); }
.world-stack:hover .stack-3 { transform: rotate(0deg)   translateY(-12px); }
.world-stack:hover .stack-4 { transform: rotate(6deg)   translate(6px, -4px); }
.world-stack:hover .stack-5 { transform: rotate(12deg)  translate(12px, -8px); }

@media (max-width: 880px) {
  .world-grid { grid-template-columns: 1fr; gap: 40px; }
  .world-stack { min-height: 360px; }
}

/* BOOK GRID ============================================================ */
.cover-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.cover-feature { grid-column: span 1; }
.grid-foot { margin-top: 56px; display: flex; justify-content: center; }

@media (max-width: 1100px) {
  .cover-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .cover-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* QUOTE CAROUSEL ======================================================= */
.quote-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: clamp(80px, 9vw, 140px) 0;
}
.quote-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 56px;
  justify-content: center;
}
.quote-eyebrow .ornament-line {
  flex: 1; max-width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.quote-eyebrow .ornament-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.quote-carousel {
  position: relative;
  display: flex; align-items: center; gap: 32px;
}
.quote-arrow {
  width: 56px; height: 56px;
  border: 1px solid var(--ink-line-strong);
  color: var(--cream-soft);
  font-size: 20px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex: none;
}
.quote-arrow:hover {
  border-color: var(--accent); background: var(--accent); color: var(--cream);
}

.quote-stage {
  position: relative; flex: 1;
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.quote-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s, transform 0.6s;
  pointer-events: none;
}
.quote-slide.on { opacity: 1; transform: none; pointer-events: auto; }
.quote-slide blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.3;
  color: var(--cream); max-width: 28ch;
}
.quote-slide figcaption {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-eyebrow);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream-soft);
}
.quote-slide .heart { font-size: 16px; }

.quote-dots {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.quote-dot {
  width: 24px; height: 1px; padding: 0;
  background: var(--ink-line-strong);
  transition: background 0.3s, height 0.3s;
}
.quote-dot.on { background: var(--gold-bright); height: 2px; }

/* AUTHOR ================================================================= */
.author-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.portrait-frame {
  aspect-ratio: 4/5;
  background: var(--ink-card);
  border: 1px solid var(--ink-line-strong);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.portrait-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 40px; text-align: center;
}
.portrait-placeholder small {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--bronze); max-width: 30ch; line-height: 1.5;
}
.placeholder-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 18px,
    rgba(154, 123, 62, 0.06) 18px, rgba(154, 123, 62, 0.06) 19px
  );
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle 300px at 70% 20%, rgba(201, 163, 93, 0.18), transparent);
}
.portrait-tag {
  margin-top: 20px;
  text-align: center;
}

.author-text { display: flex; flex-direction: column; gap: 24px; }
.author-text h2 em { font-style: italic; color: var(--gold-bright); display: inline-block; margin-right: 12px; }
.author-text .btn { align-self: flex-start; margin-top: 12px; }

@media (max-width: 880px) {
  .author-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* NEWSLETTER =========================================================== */
.newsletter-section {
  background:
    radial-gradient(ellipse 800px 400px at 50% 50%, rgba(20, 96, 79, 0.12), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--ink-line);
}
.newsletter-card {
  text-align: center;
  padding: 64px 48px;
  background: var(--ink-card);
  border: 1px solid var(--ink-line-strong);
  position: relative;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.newsletter-card::before, .newsletter-card::after {
  content: ""; position: absolute; width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.newsletter-card::before { top: 16px; left: 16px;  border-right: none; border-bottom: none; }
.newsletter-card::after  { bottom: 16px; right: 16px; border-left: none;  border-top: none; }
.newsletter-card h2 { color: var(--cream); }
.newsletter-card .lead { margin: 0 auto; }
.newsletter-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  width: 100%; max-width: 520px;
}
.newsletter-form input {
  flex: 1; min-width: 240px;
  padding: 16px 20px;
  background: var(--ink); border: 1px solid var(--ink-line-strong);
  color: var(--cream);
  font: inherit; font-size: 15px;
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  outline: none; border-color: var(--accent);
}
.form-note {
  font-family: var(--font-eyebrow);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-glow);
  margin-top: 12px; min-height: 16px;
  opacity: 0; transition: opacity 0.4s;
}
.form-note.on { opacity: 1; }
.form-fineprint {
  font-family: var(--font-eyebrow);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze);
}

/* DEVIANT TEASER ======================================================== */
.deviant-teaser {
  background:
    linear-gradient(180deg, rgba(13,13,13,1) 0%, rgba(10, 12, 20, 1) 100%);
  border-top: 1px solid var(--ink-line);
}
.deviant-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  border: 1px solid #1f2742;
  background:
    radial-gradient(circle 600px at 90% 50%, rgba(140, 31, 44, 0.1), transparent),
    radial-gradient(circle 500px at 0% 0%, rgba(31, 58, 95, 0.18), transparent);
  position: relative;
}
.deviant-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0px, transparent 39px, rgba(154, 123, 62, 0.04) 39px, rgba(154, 123, 62, 0.04) 40px);
  pointer-events: none;
}
.deviant-text { display: flex; flex-direction: column; gap: 20px; position: relative; }
.deviant-text h3 { color: var(--cream); }
.deviant-text .btn { align-self: flex-start; margin-top: 8px; }
.deviant-covers {
  display: flex; gap: 16px; position: relative;
}
.deviant-covers img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  filter: saturate(0.9);
  transition: transform 0.4s, filter 0.4s;
}
.deviant-covers img:hover {
  transform: translateY(-6px);
  filter: saturate(1.2);
}

@media (max-width: 880px) {
  .deviant-card { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
}


/* PORTRAIT IMG (real photo) =========================================== */
.portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: saturate(1.05) contrast(1.02);
}
.portrait-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 40%, rgba(13,13,13,0.45) 100%),
    linear-gradient(180deg, transparent 60%, rgba(13,13,13,0.4) 100%);
  pointer-events: none;
}

/* SERIES SHELF (home page, replaces per-book grid) ===================== */
.container-wide { max-width: 1800px; }

/* Series shelf — centered tagline header */
.series-shelf .series-head-center {
  display: block;
  text-align: center;
  margin-bottom: 80px;
}
.series-shelf .series-head-center .eyebrow {
  display: block;
  margin-bottom: 28px;
}
.series-shelf .series-tagline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.1;
  color: var(--cream);
  max-width: none;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.series-shelf .series-tagline em {
  font-style: italic;
  color: var(--gold, #c9a35d);
}

.series-shelf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .series-shelf-grid { grid-template-columns: 1fr; gap: 40px; }
}

.series-shelf-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease, border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.series-shelf-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle 600px at 80% 0%, var(--shelf-tint, rgba(20,96,79,0.10)), transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0.7;
}
.series-shelf-card:hover {
  transform: translateY(-4px);
  border-color: var(--shelf-edge, var(--gold));
}
.series-shelf-card:hover::before { opacity: 1; }

.shelf-shattered { --shelf-tint: rgba(20,96,79,0.16); --shelf-edge: #14604F; }
.shelf-deviant   { --shelf-tint: rgba(140,31,44,0.16); --shelf-edge: #c9a35d; }

.shelf-tier {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: 32px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
/* Big ambient glow behind the whole trifold */
.shelf-tier::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(243, 234, 216, 0.22) 0%, rgba(243, 234, 216, 0.08) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.shelf-tier .cv {
  position: absolute;
  top: 50%; left: 50%;
  height: 78%;
  width: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  box-shadow:
    0 24px 50px rgba(0,0,0,0.8),
    0 0 35px rgba(243, 234, 216, 0.18);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), filter 0.5s ease, box-shadow 0.5s ease;
  border: 1px solid rgba(243, 234, 216, 0.25);
}
.shelf-tier .cv-left {
  transform: translate(-160%, -50%) rotate(-15deg);
  z-index: 1;
  filter: brightness(0.95);
}
.shelf-tier .cv-right {
  transform: translate(60%, -50%) rotate(15deg);
  z-index: 1;
  filter: brightness(0.95);
}
.series-shelf-card:hover .shelf-tier .cv-left {
  transform: translate(-170%, -52%) rotate(-18deg);
  filter: brightness(1);
}
.series-shelf-card:hover .shelf-tier .cv-right {
  transform: translate(70%, -52%) rotate(18deg);
  filter: brightness(1);
}
.shelf-tier .cv-front {
  height: 92%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow:
    0 36px 80px rgba(0,0,0,0.9),
    0 0 80px rgba(243, 234, 216, 0.45),
    0 0 30px rgba(243, 234, 216, 0.6);
  border: 1px solid rgba(243, 234, 216, 0.7);
}
.series-shelf-card:hover .shelf-tier .cv-front {
  transform: translate(-50%, -54%) scale(1.04);
}
.shelf-tier::after {
  content: "";
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(243, 234, 216, 0.5) 0%, transparent 70%);
  opacity: 0.6;
  filter: blur(16px);
  z-index: 0;
}

.shelf-note {
  font-family: var(--font-eyebrow);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 4px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 10px 0;
}

.shelf-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.shelf-body h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95; color: var(--cream);
}
.shelf-body .lead {
  color: var(--cream-soft);
  font-size: 17px;
  max-width: 50ch;
}

.shelf-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin: 6px 0 4px;
}
.shelf-tags li {
  font-family: var(--font-eyebrow); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--ink-line-strong);
  color: var(--cream-soft);
}

.shelf-cta {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-eyebrow); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--shelf-edge, var(--gold-bright));
}
.series-shelf-card:hover .shelf-cta .arrow { transform: translateX(6px); }
.shelf-cta .arrow { transition: transform 0.3s; }

.grid-foot {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 56px;
}

@media (max-width: 720px) {
  .series-shelf-card { padding: 28px; }
  .shelf-tier { height: 260px; margin-bottom: 24px; }
}
