/* ============================================================
   N. S. Gorman — Mafia Romance Landing Page
   Palette: Deep black, burgundy, aged gold, midnight blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0a0808;
  --black-soft:  #121010;
  --burgundy:    #6b1e2a;
  --burgundy-lt: #8c2f3d;
  --burgundy-dk: #4a141f;
  --gold:        #b8934a;
  --gold-lt:     #d4ae70;
  --gold-dk:     #8a6a30;
  --midnight:    #1a1f3a;
  --cream:       #f0e6d3;
  --cream-soft:  #e8d9c0;
  --text-muted:  #9a8a7a;
  --white:       #f5f0eb;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', 'Times New Roman', serif;

  --max-w: 1100px;
  --section-pad: clamp(60px, 10vw, 120px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Custom Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 4px; }
::selection { background: var(--burgundy); color: var(--cream); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: var(--section-pad) 0; }

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
}
.divider-icon { color: var(--gold); font-size: 0.9rem; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--cream); }

.eyebrow {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 580px;
  font-style: italic;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
}
nav.scrolled {
  background: rgba(10,8,8,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(184,147,74,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-lt); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107,30,42,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,31,58,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(74,20,31,0.3) 0%, transparent 50%),
    linear-gradient(180deg, #0d0a0a 0%, #0a0808 50%, #0d0909 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
}

.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-muted);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy-lt) 0%, var(--burgundy) 50%, var(--burgundy-dk) 100%);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(107,30,42,0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,30,42,0.7);
  background: linear-gradient(135deg, var(--burgundy-lt) 0%, var(--burgundy) 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-lt);
  border: 1px solid var(--gold-dk);
}
.btn-ghost:hover {
  background: rgba(184,147,74,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(184,147,74,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,147,74,0.5);
}

/* ── HERO SCROLL INDICATOR ────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-dk), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── FEATURED QUOTE ───────────────────────────────────────── */
.quote-band {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  border-top: 1px solid rgba(184,147,74,0.12);
  border-bottom: 1px solid rgba(184,147,74,0.12);
}
.quote-band blockquote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.quote-band blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote-band cite {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── AUTHOR SECTION ───────────────────────────────────────── */
.author-section {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}
.author-section::before {
  content: '';
  position: absolute;
  right: -200px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,30,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
@media (max-width: 768px) {
  .author-grid { grid-template-columns: 1fr; }
  .author-visual { order: -1; }
}
.author-text .eyebrow { margin-bottom: 16px; }
.author-text .section-title { margin-bottom: 20px; }
.author-bio {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}
.author-genres {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.genre-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(184,147,74,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-style: italic;
}
.author-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.author-portrait {
  width: clamp(200px, 30vw, 320px);
  aspect-ratio: 3/4;
  position: relative;
}
.author-portrait-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--midnight) 100%);
  position: relative;
  overflow: hidden;
}
.author-portrait-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(184,147,74,0.2) 0%, transparent 60%),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.author-portrait-inner::after {
  content: 'N.S.G.';
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.2em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.portrait-border {
  position: absolute;
  inset: -3px;
  border: 1px solid var(--gold-dk);
  pointer-events: none;
}
.portrait-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
}
.portrait-corner.tl { top: -3px; left: -3px; border-width: 2px 0 0 2px; }
.portrait-corner.tr { top: -3px; right: -3px; border-width: 2px 2px 0 0; }
.portrait-corner.bl { bottom: -3px; left: -3px; border-width: 0 0 2px 2px; }
.portrait-corner.br { bottom: -3px; right: -3px; border-width: 0 2px 2px 0; }

/* ── COMING SOON / BOOKS ──────────────────────────────────── */
.books-section {
  background: var(--black);
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.book-card {
  background: var(--black-soft);
  border: 1px solid rgba(184,147,74,0.1);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.book-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy-dk), var(--gold-dk), var(--burgundy-dk));
  opacity: 0;
  transition: opacity 0.3s;
}
.book-card:hover {
  border-color: rgba(184,147,74,0.3);
  transform: translateY(-4px);
}
.book-card:hover::before { opacity: 1; }
.book-card-cover {
  width: 100%;
  aspect-ratio: 2/3;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--burgundy-dk), var(--midnight));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184,147,74,0.1) 0%, transparent 60%);
}
.book-card-cover-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-lt);
  text-align: center;
  padding: 16px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.book-status {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(184,147,74,0.1);
  border: 1px solid rgba(184,147,74,0.25);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}
.book-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.3;
}
.book-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}
.book-genre-badge {
  margin-top: 16px;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(107,30,42,0.4);
  color: var(--burgundy-lt);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-style: italic;
}

/* ── EMAIL CTA ────────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(107,30,42,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  font-style: italic;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input[type="email"] {
  flex: 1;
  min-width: 260px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,147,74,0.25);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.cta-form input[type="email"]::placeholder { color: var(--text-muted); }
.cta-form input[type="email"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.cta-form button {
  padding: 16px 32px;
  white-space: nowrap;
}
.cta-form-inline {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
}
.cta-privacy {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.cta-success {
  display: none;
  padding: 20px;
  border: 1px solid rgba(184,147,74,0.3);
  background: rgba(184,147,74,0.05);
  max-width: 480px;
  margin: 0 auto;
}
.cta-success h3 {
  font-family: var(--font-display);
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.cta-success p { color: var(--text-muted); font-style: italic; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(184,147,74,0.1);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0.1em;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .cta-form-inline { flex-direction: column; }
  .cta-form input[type="email"] { border-right: 1px solid rgba(184,147,74,0.25); border-bottom: none; }
  .nav-links { display: none; }
}

/* ── TRILOGY SHOWCASE ─────────────────────────────────────── */
.trilogy-section {
  background: var(--black);
}

.trilogy-hero {
  margin-bottom: 80px;
}

.trilogy-hero-header {
  text-align: center;
  margin-bottom: 48px;
}

.trilogy-hero-sub {
  margin: 16px auto 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
}

.trilogy-hero-books {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.trilogy-hero-book {
  background: var(--black-soft);
  border: 1px solid rgba(184,147,74,0.15);
  overflow: hidden;
  transition: all 0.4s ease;
}

.trilogy-hero-book:hover {
  border-color: rgba(184,147,74,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.trilogy-hero-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--midnight) 50%, var(--burgundy) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid rgba(184,147,74,0.15);
}

.trilogy-hero-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184,147,74,0.15) 0%, transparent 60%);
}

.cover-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(184,147,74,0.25);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.cover-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-lt);
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.trilogy-hero-book-info {
  padding: 24px;
}

.trilogy-book-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin: 10px 0 8px;
  line-height: 1.3;
}

.trilogy-book-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.trilogy-book-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 8px;
}

/* Status badges */
.book-status--available {
  background: rgba(80,160,80,0.15);
  border-color: rgba(80,160,80,0.35);
  color: #7abf7a;
}
.book-status--preorder {
  background: rgba(184,147,74,0.15);
  border-color: rgba(184,147,74,0.35);
  color: var(--gold-lt);
}

/* ── SECONDARY TRILOGIES ───────────────────────────────────── */
.trilogies-secondary {
  border-top: 1px solid rgba(184,147,74,0.1);
  padding-top: 60px;
  margin-top: 20px;
}

.trilogies-secondary-header {
  text-align: center;
  margin-bottom: 40px;
}

.trilogies-secondary-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 8px;
}

.trilogies-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.trilogy-card {
  background: var(--black-soft);
  border: 1px solid rgba(184,147,74,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}

.trilogy-card:hover {
  border-color: rgba(184,147,74,0.3);
  transform: translateY(-4px);
}

.trilogy-card-inner {
  padding: 36px 32px;
}

.trilogy-card-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,147,74,0.08);
  border: 1px solid rgba(184,147,74,0.2);
  padding: 4px 10px;
  margin-bottom: 14px;
  font-family: var(--font-serif);
}

.trilogy-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}

.trilogy-card-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.trilogy-book-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trilogy-book-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184,147,74,0.06);
}

.trilogy-book-row:last-child {
  border-bottom: none;
}

.trilogy-book-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  width: 18px;
  flex-shrink: 0;
  padding-top: 2px;
}

.trilogy-book-details {
  flex: 1;
}

.trilogy-book-row-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 3px;
}

.trilogy-book-row-tagline {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.4;
}

.trilogy-book-row-status {
  flex-shrink: 0;
}

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  border: 1px solid rgba(184,147,74,0.2);
  color: var(--gold);
  background: rgba(184,147,74,0.05);
}

.status-pill--available {
  background: rgba(80,160,80,0.1);
  border-color: rgba(80,160,80,0.3);
  color: #7abf7a;
}

.status-pill--preorder {
  background: rgba(184,147,74,0.1);
  border-color: rgba(184,147,74,0.3);
  color: var(--gold-lt);
}

/* ── BONUS SCENE TEASER ──────────────────────────────────── */
.bonus-teaser {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #0a0808 0%, #130b0e 50%, #0a0808 100%);
  border-top: 1px solid rgba(184,147,74,0.1);
  border-bottom: 1px solid rgba(184,147,74,0.1);
  position: relative;
  overflow: hidden;
}
.bonus-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(107,30,42,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-teaser-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
}
.bonus-teaser-cover {
  flex-shrink: 0;
  width: clamp(160px, 22vw, 240px);
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #4a141f 0%, #6b1e2a 30%, #1a1f3a 70%, #0a0808 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,147,74,0.2);
  overflow: hidden;
}
.bonus-cover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184,147,74,0.2) 0%, transparent 60%);
}
.bonus-cover-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-cover-tag {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,147,74,0.1);
  border: 1px solid rgba(184,147,74,0.25);
  padding: 4px 12px;
  display: inline-block;
}
.bonus-cover-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.bonus-cover-sub {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.bonus-teaser-content {
  flex: 1;
}
.bonus-teaser-content .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.bonus-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 16px;
  line-height: 1.15;
  font-style: italic;
}
.bonus-teaser-tease {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.bonus-teaser-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--burgundy-lt) 0%, var(--burgundy) 50%, var(--burgundy-dk) 100%);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(107,30,42,0.5);
}
.bonus-teaser-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107,30,42,0.7);
}

/* ── RESPONSIVE FOR TRILOGIES ─────────────────────────────── */
@media (max-width: 768px) {
  .trilogy-hero-books {
    grid-template-columns: 1fr;
  }
  .trilogies-secondary-grid {
    grid-template-columns: 1fr;
  }
  .bonus-teaser-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .bonus-teaser-tease {
    margin-left: auto;
    margin-right: auto;
  }
}