/* ============================================================
   JL YARROW — CINEMATIC REDESIGN
   Deep navy + cyan palette, cinematic full-screen sections,
   ghost/layered typography, parallax backgrounds
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #080b14;
  --navy-mid:    #0d1220;
  --navy-light:  #131929;
  --cyan:        #4db8d4;
  --cyan-bright: #6dd4ec;
  --cyan-dim:    rgba(77,184,212,0.18);
  --gold:        #d4a843;
  --gold-dim:    rgba(212,168,67,0.15);
  --white:       #ffffff;
  --white-70:    rgba(255,255,255,0.70);
  --white-90:    rgba(255,255,255,0.92);
  --white-40:    rgba(255,255,255,0.40);
  --white-15:    rgba(255,255,255,0.15);
  --white-08:    rgba(255,255,255,0.08);

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Work Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

/* ---------- WORDPRESS RESET — force full-width layout ---------- */
/* Neutralize any host/plugin injected max-width constraints */
.wp-site-blocks,
.entry-content,
.site-content,
.content-area,
.hentry,
.page-content,
.post-content,
.wp-block-group,
.wp-block-group__inner-container,
#page,
#content,
#main,
.site-main,
.site,
.page-wrapper,
.content-wrapper {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* GoDaddy / Managed WP may add these */
.entry-header,
.entry-footer,
.wp-block-post-title,
.page-title {
  display: none !important;
}

/* Ensure full-width sections always stretch edge to edge */
section {
  width: 100% !important;
  max-width: 100% !important;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.06;
  overflow-x: hidden;
}

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

/* ---------- TYPOGRAPHY ---------- */
.display-ghost-wrap {
  position: relative;
  pointer-events: none;
  line-height: 1;
  text-align: center;
}
.display-ghost-wrap .ghost-layer {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
/* Ghost stacking: layers overlap to create depth/echo effect */
.ghost-layer-3 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}
.ghost-layer-2 {
  color: rgba(255,255,255,0.18);
  margin-top: -0.92em;
  position: relative;
  z-index: 2;
}
.ghost-layer-1 {
  color: rgba(255,255,255,0.92);
  margin-top: -0.92em;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 80px rgba(77,184,212,0.15);
}

/* ---------- NAV ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 90px;
  background: linear-gradient(to bottom, rgba(8,11,20,0.95) 0%, rgba(8,11,20,0) 100%);
  transition: background 0.4s;
}
.site-nav.scrolled {
  background: rgba(8,11,20,0.97);
  border-bottom: 1px solid var(--white-08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 2.3rem;
  letter-spacing: 0.18em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cyan); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(77,184,212,0.25);
  border-radius: 4px;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 210px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  margin-top: 0;
}
/* Invisible bridge fills the gap between nav item and dropdown so hover doesn't break */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
/* Hover handled by JS (mouseenter/mouseleave with delay). CSS :hover removed to avoid gap race condition. */
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active { color: var(--cyan); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(8,11,20,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-70);
}
.mobile-menu a:hover { color: var(--cyan); }

/* ---------- HERO ---------- */
/* BgReveal sticky technique — background stays locked to viewport
   while foreground content scrolls over it (matches paulblackbooks.com) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Oversized container so sticky child has room to stay fixed */
  overflow: hidden;
}

/* Outer media container: taller than viewport so sticky works */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  /* Extend 200lvh beyond — sticky image will lock to top:0 inside this */
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* The sticky image: locks to viewport top, appears frozen while section scrolls */
.hero-bg {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,11,20,0.3) 0%,
    rgba(8,11,20,0.15) 40%,
    rgba(8,11,20,0.6) 80%,
    var(--navy) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 100vw;
  width: 100%;
  overflow: visible;
}
.hero-award {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-ghost-title {
  margin-bottom: 2rem;
}
.hero-ghost-title .ghost-layer {
  font-size: clamp(3.5rem, 9vw, 9rem);
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--white-90);
  max-width: 780px;
  margin: 0 auto 2.5rem;
  line-height: 1.06;
}
.hero-book-float {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-book-cover {
  width: 160px;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8), 0 0 40px rgba(77,184,212,0.2);
  transform: perspective(600px) rotateY(-8deg);
  transition: transform 0.4s var(--ease-out);
}
.hero-book-cover:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.04);
}
.hero-quote {
  font-family: var(--font-body);
  font-size: 2rem;
  font-style: italic;
  color: var(--white-90);
  max-width: 760px;
  margin: 0 auto 2rem;
  line-height: 1.06;
}
.hero-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 0.5rem;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--white-40);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(77,184,212,0.08);
}
.btn-primary {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-primary:hover {
  background: var(--cyan);
  color: var(--navy);
}

/* ---------- INFO STRIP (3-column) ---------- */
.info-strip {
  background: var(--navy-light);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  padding: 4rem 2rem;
}
.info-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.info-strip-col {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--white-08);
  text-align: center;
}
.info-strip-col:last-child { border-right: none; }
.info-strip-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.info-strip-img {
  width: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.info-strip-img img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}
.info-strip-body {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--white-70);
  line-height: 1.06;
  margin-bottom: 1.25rem;
}
.info-strip-link {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  transition: color 0.2s;
}
.info-strip-link:hover { color: var(--cyan); }

/* ---------- FULL-SCREEN BOOK SECTIONS ---------- */
/* Each section uses the sticky BgReveal pattern:
   .book-section             — normal flow container
   .book-section-bg-wrap     — oversized (100% + 200lvh) with -100lvh margin-top
   .book-section-bg          — position:sticky; top:0 → locks to viewport
   .book-section-inner       — z-index:2, scrolls normally over the frozen bg */

.book-section {
  position: relative;
  min-height: 100vh;
  /* isolation creates stacking context so z-index works */
  isolation: isolate;
}

/* Oversized wrapper — sits BEHIND content via z-index.
   The negative margin-top pulls it up so the sticky image
   is already in view when the section scrolls into frame. */
.book-section-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* The sticky bg: locks to viewport top while section scrolls */
.book-section-bg {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.book-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,11,20,0.62);
}
.book-section-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.book-section-cover {
  flex-shrink: 0;
}
.book-section-cover img {
  width: 300px;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8), 0 0 60px rgba(77,184,212,0.12);
  transform: perspective(700px) rotateY(-6deg);
  transition: transform 0.5s var(--ease-out);
}
.book-section-cover img:hover {
  transform: perspective(700px) rotateY(0deg) scale(1.02);
}
.book-section-text {}
.book-section-num {
  font-family: var(--font-ui);
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}
.book-section-ghost {
  margin-bottom: 1.5rem;
  overflow: visible;
}
.book-section-ghost .ghost-layer {
  font-size: clamp(2.5rem, 6vw, 6rem);
}
.book-section-blurb {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 3.6vw, 3rem);
  font-style: italic;
  color: var(--white-90);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.book-section-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.book-section-award-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.35);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.book-section-award-item::before {
  content: '★';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}
.book-section-quote {
  font-family: var(--font-body);
  font-size: 1.725rem;
  font-style: italic;
  color: var(--white-90);
  border-left: 2px solid var(--cyan);
  padding-left: 1rem;
  margin-bottom: 2rem;
  max-width: 460px;
}
.book-section-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.975rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 0.4rem;
}
.book-section-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- INTRO TEXT PANEL ---------- */
.intro-panel {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--white-08);
}
.intro-panel-logo {
  margin: 0 auto 2.5rem;
}
.intro-panel-text {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.06;
  color: var(--white-70);
  max-width: 800px;
  margin: 0 auto 2rem;
}
.intro-panel-text strong {
  color: var(--white);
  font-style: italic;
}
.intro-panel-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  transition: color 0.2s;
}
.intro-panel-link:hover { color: var(--cyan); }

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan-dim), transparent);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--white-08);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-col {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-40);
  line-height: 1.06;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--white-15);
  background: transparent;
  color: var(--white-40);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-ui);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--white-40);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--white-08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
}
.footer-pub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white-40);
}

/* ---------- INNER PAGE HERO ---------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.page-hero-bg {
  position: sticky;
  top: 0;
  width: 100%;
  height: 50vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,11,20,0.4) 0%, var(--navy) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-ghost .ghost-layer {
  font-size: clamp(3rem, 8vw, 7rem);
}

/* ---------- GENERIC SECTION ---------- */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}
.section-label {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ---------- ABOUT PAGE ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.about-photo-col img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.about-photo-caption {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 0.75rem;
  text-align: center;
}
.about-text-col p {
  font-family: var(--font-body);
  font-size: 1.65rem;
  color: var(--white-70);
  line-height: 1.06;
  margin-bottom: 1.25rem;
}
.about-text-col p:first-of-type::first-letter {
  font-size: 3em;
  float: left;
  line-height: 0.8;
  margin: 0.1em 0.1em 0 0;
  color: var(--cyan);
  font-family: var(--font-display);
}

/* ---------- NOVELS PAGE ---------- */
.novels-intro {
  text-align: center;
  padding: 3rem 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.novels-intro p {
  font-family: var(--font-body);
  font-size: 1.65rem;
  color: var(--white-70);
  line-height: 1.06;
}
.novels-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.novel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.novel-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.novel-card-cover {
  width: 240px;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 30px rgba(77,184,212,0.08);
  transform: perspective(500px) rotateY(-5deg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.novel-card-cover:hover {
  transform: perspective(500px) rotateY(0deg) scale(1.03);
  box-shadow: 0 24px 64px rgba(0,0,0,0.8), 0 0 40px rgba(77,184,212,0.2);
}
.novel-card-body {}
.novel-card-num {
  font-family: var(--font-ui);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
  white-space: nowrap;
}
.novel-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.novel-card-desc {
  font-family: var(--font-body);
  font-size: 1.425rem;
  color: var(--white-70);
  line-height: 1.06;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.novel-card-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- REVIEWS PAGE ---------- */
.reviews-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.review-card {
  border-left: 2px solid var(--cyan);
  padding: 2rem 2rem 2rem 2.5rem;
  background: var(--white-08);
}
.review-quote {
  font-family: var(--font-body);
  font-size: 1.725rem;
  font-style: italic;
  color: var(--white-70);
  line-height: 1.06;
  margin-bottom: 1rem;
}
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.review-source {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}
.awards-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.award-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 4px;
  padding: 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.award-card:hover {
  border-color: rgba(212,168,67,0.5);
  box-shadow: 0 0 30px rgba(212,168,67,0.1);
}
.award-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.award-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}
.award-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-90);
  margin-bottom: 0.6rem;
  line-height: 1.06;
}
.award-detail {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.06;
}

/* ---------- BLOG PAGE ---------- */
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.blog-card {
  background: var(--navy-light);
  border: 1px solid var(--white-08);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s var(--ease-out);
}
.blog-card:hover {
  border-color: var(--cyan-dim);
  transform: translateY(-4px);
}
.blog-card-img-link {
  display: block;
  text-decoration: none;
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-date {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.06;
}
.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.06;
  font-style: italic;
}

/* ---------- SPEAKER PAGE ---------- */
.speaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.speaker-topics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.speaker-topic {
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--cyan);
  background: var(--white-08);
}
.speaker-topic-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.speaker-topic-desc {
  font-family: var(--font-body);
  font-size: 1.425rem;
  color: var(--white-70);
  font-style: italic;
  line-height: 1.06;
}
.speaker-topic-bullets {
  list-style: none;
  margin: 0.75rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.speaker-topic-bullets li {
  font-family: var(--font-body);
  font-size: 1.425rem;
  color: var(--white-70);
  line-height: 1.06;
  padding-left: 1.1em;
  position: relative;
}
.speaker-topic-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* ---------- CONTACT PAGE ---------- */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.contact-intro {
  font-family: var(--font-body);
  font-size: 1.65rem;
  color: var(--white-70);
  line-height: 1.06;
  margin-bottom: 3rem;
  font-style: italic;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white-08);
  border: 1px solid var(--white-15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--cyan);
}
.form-textarea { height: 140px; resize: vertical; }
.form-select { cursor: pointer; }
.form-select option { background: var(--navy-mid); }

/* ---------- ENTRANCE ANIMATIONS (paulblackbooks floatIn/fadeIn) ---------- */

/* floatIn: slides from left + fades in (book covers, images) */
@keyframes floatInLeft {
  0%   { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* floatIn from right (alternating sections) */
@keyframes floatInRight {
  0%   { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* fadeIn: text elements */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Base reveal — hidden until JS fires it */
/* Reveal animations — only hidden when JS is active (js-reveal class on body) */
.js-reveal .reveal {
  opacity: 0;
}
.js-reveal .reveal-left {
  opacity: 0;
}
.js-reveal .reveal-right {
  opacity: 0;
}

/* Default: fade up */
.reveal.visible {
  animation: fadeInUp 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

/* Book covers: float in from left */
.reveal-left.visible {
  animation: floatInLeft 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

/* Alternating: float in from right */
.reveal-right.visible {
  animation: floatInRight 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

/* Stagger delays for sequential items */
.reveal-delay-1 { animation-delay: 0.1s !important; }
.reveal-delay-2 { animation-delay: 0.25s !important; }
.reveal-delay-3 { animation-delay: 0.4s !important; }
.reveal-delay-4 { animation-delay: 0.55s !important; }

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .book-section-inner {
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    padding: 6rem 2.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .speaker-grid {
    padding: 4rem 2rem;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  /* Mobile hero — portrait crop centered on both planets */
  .hero-bg {
    background-image: url('../images/cinematic-hero-mobile.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-mark { width: 36px; height: 36px; }
  .nav-logo-text { font-size: 1.4rem; letter-spacing: 0.12em; }
  .site-nav { padding: 0 1rem; height: 64px; }

  /* Hero — prevent overflow */
  .hero-content { padding: 0 1.25rem; overflow: hidden; }
  .hero-tagline { font-size: clamp(1.5rem, 5.5vw, 2.2rem); margin-bottom: 1.5rem; }
  .hero-quote { font-size: clamp(1.2rem, 4.5vw, 1.8rem); }
  .hero-book-cover { width: 110px; height: 165px; object-fit: cover; }
  .hero-book-float { gap: 1rem; }
  .hero-ghost-title .ghost-layer { font-size: clamp(2.2rem, 9vw, 4.5rem); }

  /* Info strip */
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-strip-col { border-right: none; border-bottom: 1px solid var(--white-08); }
  .info-strip-col:last-child { border-bottom: none; }
  .info-strip-body { font-size: 1rem; }

  /* Book sections */
  .book-section-inner {
    grid-template-columns: 1fr !important;
    padding: 3rem 1.25rem !important;
    gap: 2rem;
    text-align: center;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100vw;
  }
  .book-section-cover { display: flex; justify-content: center; }
  .book-section-cover img { width: 160px !important; height: 240px !important; object-fit: cover; transform: none !important; }
  .book-section-blurb,
  .book-section-quote { max-width: 100%; margin-left: auto; margin-right: auto; font-size: clamp(1rem, 3.5vw, 1.15rem); }
  .book-section-btns { justify-content: center; flex-wrap: wrap; }
  .book-section-ghost .ghost-layer { font-size: clamp(2rem, 10vw, 4rem); }
  /* Allow blue subtitles to wrap on mobile */
  .book-section-num { white-space: normal !important; font-size: 0.8rem; }
  .book-section-title { font-size: clamp(1.8rem, 7vw, 3rem); }

  /* Novels grid */
  .novels-grid { grid-template-columns: 1fr; max-width: 320px; padding-bottom: 3rem; }
  .novel-card-cover-link { width: 200px; }
  .novel-card-cover-link .novel-card-cover,
  .novel-card-cover { width: 200px; height: 300px; }
  .novel-card-num { white-space: normal; font-size: 0.8rem; }

  /* Reviews */
  .awards-grid { grid-template-columns: 1fr 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; }

  /* About / Speaker */
  .about-grid,
  .speaker-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  /* Page hero */
  .page-hero-content { padding: 2rem 1.25rem; overflow: hidden; }
  .page-hero-ghost .ghost-layer { font-size: clamp(2rem, 10vw, 4rem); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: center; }
  .awards-grid { grid-template-columns: 1fr; }
  .hero-ghost-title .ghost-layer { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .site-nav { padding: 0 1rem; }
  .nav-logo-mark { width: 30px; height: 30px; }
  .nav-logo-text { font-size: 1.2rem; }
  .hero-book-cover { width: 90px; height: 135px; }
  .hero-book-float { gap: 0.75rem; }
  .hero-tagline { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .hero-quote { font-size: clamp(1.1rem, 4vw, 1.5rem); }
  .book-section-num { white-space: normal; }
}

/* ── Individual Book Pages ─────────────────────────────────────── */
.book-page-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.book-page-cover img {
  width: 100%;
  max-width: 320px;
  border-radius: 4px;
  box-shadow: 0 12px 60px rgba(212,168,67,0.25), 0 4px 20px rgba(0,0,0,0.6);
  display: block;
}
.book-page-meta { display: flex; flex-direction: column; gap: 0.75rem; }
.book-page-num {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}
.book-page-release-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  width: fit-content;
}
.book-page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--white-90);
  margin: 0;
}
.book-page-author {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin: 0;
}
.book-page-publisher {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.book-page-tagline {
  font-family: var(--font-body);
  font-size: 1.725rem;
  font-style: italic;
  color: var(--white-90);
  border-left: 2px solid var(--cyan);
  padding-left: 1rem;
  margin: 0.5rem 0;
}
.book-page-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* Story section */
.book-page-story {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.book-page-story h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.book-page-story p {
  font-family: var(--font-body);
  font-size: 1.725rem;
  line-height: 1.06;
  color: var(--white-90);
  margin-bottom: 1.2rem;
}

/* Awards row on book page */
.book-page-awards {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  text-align: center;
}
.book-page-awards h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.book-page-awards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Praise on book page */
.book-page-praise {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.book-page-quote {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(77,184,212,0.15);
  border-radius: 4px;
  padding: 2rem;
}
.book-page-quote blockquote {
  font-family: var(--font-body);
  font-size: 1.575rem;
  font-style: italic;
  line-height: 1.06;
  color: var(--white-90);
  margin: 0 0 1rem 0;
}
.book-page-quote cite {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* Series nav bar */
.series-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(77,184,212,0.2);
  border-bottom: 1px solid rgba(77,184,212,0.2);
  max-width: 1100px;
  margin: 2rem auto 0;
}
.series-nav-bar a, .series-nav-bar span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
}
.series-nav-bar .series-nav-center {
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
}
.series-nav-bar .series-nav-disabled {
  color: rgba(255,255,255,0.2);
  cursor: default;
}
.series-nav-bar a:hover { color: var(--white-90); }

/* Coming soon teaser */
.book-page-teaser {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  text-align: center;
}
.book-page-teaser h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}
.book-page-teaser p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.06;
  color: var(--white-90);
  margin-bottom: 1.25rem;
}

/* Author callout */
.book-page-author-callout {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(77,184,212,0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.book-page-author-callout p {
  font-family: var(--font-body);
  font-size: 1.575rem;
  line-height: 1.06;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .book-page-hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .book-page-cover img { max-width: 200px; margin: 0 auto; }
  .book-page-praise { grid-template-columns: 1fr; }
  .series-nav-bar { flex-direction: column; gap: 0.75rem; text-align: center; }
  /* Individual book page hero num labels */
  .fdp-book-num,
  .book-hero-book-num,
  .book-hero-num { white-space: normal !important; font-size: 0.8rem !important; }
}

/* Cover image link wrapper */
.novel-card-cover-link {
  display: block;
  width: 240px;
  flex-shrink: 0;
  cursor: pointer;
}
.novel-card-cover-link .novel-card-cover {
  width: 240px;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   BOOK PAGE LAYOUTS — ported from inline HTML styles
   ============================================================ */

/* ---- Book Hero ---- */
.book-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 4rem;
  display: grid !important;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}
.book-hero-cover img {
  width: 100%;
  max-width: 320px;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.85), 0 0 60px rgba(212,168,67,0.18);
  transform: perspective(700px) rotateY(-6deg);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.book-hero-cover img:hover {
  transform: perspective(700px) rotateY(0deg) scale(1.02);
}
.book-hero-book-num {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #4db8d4;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}
.book-hero-badge {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4a843;
  border: 1px solid rgba(212,168,67,0.4);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}
.book-hero-title-wrap {
  margin-bottom: 0.75rem;
}
.book-hero-title-wrap .ghost-layer {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
}
.book-hero-author {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.35rem;
}
.book-hero-publisher {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.book-hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.325rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 2rem;
  border-left: 2px solid #4db8d4;
  padding-left: 1rem;
}
.book-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- The Story ---- */
.book-story-section {
  background: var(--navy-light);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
}
.book-story-inner {
  max-width: 800px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
  padding: 5rem 2rem !important;
  display: block !important;
}
.book-story-inner .section-label {
  margin-bottom: 1.5rem;
}
.book-story-body p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.725rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.06;
  margin-bottom: 1.4rem;
}
.book-story-body p:last-child { margin-bottom: 0; }

/* ---- Awards ---- */
.book-awards-section { padding: 5rem 2rem; }
.book-awards-inner { max-width: 1100px; margin: 0 auto; }
.book-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.book-award-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(77,184,212,0.12);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.book-award-card:hover {
  border-color: rgba(212,168,67,0.3);
  background: rgba(212,168,67,0.04);
}
.book-award-star { font-size: 1.4rem; color: #d4a843; margin-bottom: 0.75rem; }
.book-award-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.book-award-detail {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4a843;
}

/* ---- Praise ---- */
.book-praise-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  padding: 5rem 2rem;
}
.book-praise-inner { max-width: 900px; margin: 0 auto; }
.praise-quotes { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2.5rem; }
.praise-quote-card {
  border-left: 2px solid #4db8d4;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.04);
}
.praise-quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.06;
  margin-bottom: 1rem;
}
.praise-quote-cite {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4db8d4;
}

/* ---- Series Callout ---- */
.series-callout-section { padding: 5rem 2rem; }
.series-callout-inner { max-width: 860px; margin: 0 auto; }
.series-callout-box {
  background: rgba(77,184,212,0.06);
  border: 1px solid rgba(77,184,212,0.22);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.series-callout-text { flex: 1; min-width: 260px; }
.series-callout-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4db8d4;
  margin-bottom: 0.6rem;
}
.series-callout-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.series-callout-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.575rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}
.series-callout-cta { flex-shrink: 0; }

/* ---- Series Nav Bar ---- */
.series-nav-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.series-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.series-nav-prev, .series-nav-next {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
}
.series-nav-prev:hover, .series-nav-next:hover { color: #4db8d4; }
.series-nav-next { justify-content: flex-end; }
.series-nav-center {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  white-space: nowrap;
}

/* ---- Book Page Responsive ---- */
@media (max-width: 900px) {
  .book-hero {
    grid-template-columns: 1fr !important;
    padding: 4rem 2rem;
    gap: 2.5rem;
    text-align: center;
  }
  .book-hero-cover { display: flex; justify-content: center; }
  .book-hero-cover img { max-width: 220px; transform: none; }
  .book-hero-tagline { text-align: left; }
  .book-hero-btns { justify-content: center; }
  .book-awards-grid { grid-template-columns: repeat(2, 1fr); }
  .series-callout-box { flex-direction: column; text-align: center; }
}

/* ============================================================
   FDP PAGE LAYOUTS — ported from inline HTML styles
   ============================================================ */

.fdp-hero-section {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 5rem 4rem 4rem !important;
  display: grid !important;
  grid-template-columns: 340px 1fr !important;
  gap: 5rem !important;
  align-items: start !important;
}
.fdp-cover-col {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.fdp-title-col {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.fdp-cover-img {
  width: 100% !important;
  max-width: 300px !important;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.85), 0 0 60px rgba(212,168,67,0.18);
  transform: perspective(700px) rotateY(-6deg);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.fdp-cover-img:hover { transform: perspective(700px) rotateY(0deg) scale(1.02); }
.fdp-book-num {
  font-family: 'Work Sans', sans-serif; font-size: 0.975rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: #4db8d4;
  margin-bottom: 0.75rem; white-space: nowrap;
}
.fdp-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 5vw, 5.5rem);
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
  color: rgba(255,255,255,0.95); margin-bottom: 0.5rem;
}
.fdp-author {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem;
  font-style: italic; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem;
}
.fdp-publisher {
  font-family: 'Work Sans', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.fdp-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.5;
  margin-bottom: 2.5rem; border-left: 2px solid #d4a843; padding-left: 1.25rem;
  max-width: 520px;
}
.fdp-buy-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.fdp-awards-section { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }
.fdp-awards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.fdp-award-badge {
  display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,168,67,0.18);
  transition: border-color 0.25s, background 0.25s;
}
.fdp-award-badge:hover { border-color: rgba(212,168,67,0.4); background: rgba(212,168,67,0.05); }
.fdp-award-star { color: #d4a843; font-size: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.fdp-award-org {
  font-family: 'Work Sans', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.25rem;
}
.fdp-award-place { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.95rem; color: rgba(255,255,255,0.6); }

/* FDP Responsive */
@media (max-width: 900px) {
  .fdp-hero-section { grid-template-columns: 1fr !important; padding: 4rem 2rem !important; gap: 2.5rem !important; }
  .fdp-cover-col { display: flex !important; justify-content: center !important; }
  .fdp-cover-img { max-width: 220px !important; transform: none !important; }
  .fdp-title-col { text-align: center !important; }
  .fdp-tagline { margin-left: auto !important; margin-right: auto !important; }
  .fdp-buy-row { justify-content: center !important; }
}

/* ============================================================
   GLOBAL REVEAL FIX — force all animated elements visible in WP
   ============================================================ */
/* Fallback only — show content if JS never loads */
.reveal, .reveal-left, .reveal-right {
  opacity: 1;
  transform: none;
}
/* When JS IS active, let the animations run */
.js-reveal .reveal,
.js-reveal .reveal-left,
.js-reveal .reveal-right {
  opacity: 0;
  visibility: visible;
}

/* ---- About Series Section (FDP + Impact pages) ---- */
.about-series-section {
  padding: 5rem 2rem;
  background: var(--navy-mid);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
}
.about-series-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-series-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-series-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.about-series-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.about-series-award-chip {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4a843;
  border: 1px solid rgba(212,168,67,0.35);
  padding: 0.4rem 1rem;
  background: rgba(212,168,67,0.07);
}
